Commit Graph

173 Commits

Author SHA1 Message Date
dependabot[bot]
523817d677
chore: bump ws, @web/test-runner and web-test-runner-jasmine
Bumps [ws](https://github.com/websockets/ws) to 8.17.1 and updates ancestor dependencies [ws](https://github.com/websockets/ws), [@web/test-runner](https://github.com/modernweb-dev/web/tree/HEAD/packages/test-runner) and [web-test-runner-jasmine](https://github.com/blueprintui/web-test-runner-jasmine). These dependencies need to be updated together.


Updates `ws` from 8.13.0 to 8.17.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/8.13.0...8.17.1)

Updates `@web/test-runner` from 0.15.3 to 0.18.2
- [Release notes](https://github.com/modernweb-dev/web/releases)
- [Changelog](https://github.com/modernweb-dev/web/blob/master/packages/test-runner/CHANGELOG.md)
- [Commits](https://github.com/modernweb-dev/web/commits/@web/test-runner@0.18.2/packages/test-runner)

Updates `web-test-runner-jasmine` from 0.0.2 to 0.0.6
- [Changelog](https://github.com/blueprintui/web-test-runner-jasmine/blob/main/CHANGELOG.md)
- [Commits](https://github.com/blueprintui/web-test-runner-jasmine/commits)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: indirect
- dependency-name: "@web/test-runner"
  dependency-type: direct:development
- dependency-name: web-test-runner-jasmine
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-18 21:35:34 +00:00
Elliott Marquez
2c0fafd3d8 docs: update analyzer and update docs 2024-06-04 21:57:37 -07:00
release-please[bot]
39f5bd51d9
chore: release 1.5.0 2024-05-23 17:03:00 +00:00
release-please[bot]
52df5e0da5
chore: release 1.4.1 2024-04-15 19:50:58 +00:00
release-please[bot]
a6f78680ff
chore: release 1.4.0 2024-03-21 19:41:02 +00:00
Elizabeth Mitchell
cde649c83b fix: publish .css files for @import-ing
Note: `./internal/*.css` files are still private and may unexpectedly change between versions. This change allows for importing public stylesheets like typography:

```css
@import '~@material/web/typography/md-typescale-styles.css';
```

PiperOrigin-RevId: 617659298
2024-03-20 16:40:04 -07:00
Elizabeth Mitchell
1c2197bd30 chore: update css-to-ts script
PiperOrigin-RevId: 612919272
2024-03-05 11:52:39 -08:00
Elizabeth Mitchell
c35bad0c64 fix: rename internal <styles>.css.js to <styles>.css
We are changing the names of these files to reduce similarity with CSS modules and avoid clashing with tooling built around that. If you're importing `*/internal/styles.css.js`, swap to `*/internal/styles.js`.

PiperOrigin-RevId: 611265000
2024-02-28 16:20:22 -08:00
release-please[bot]
653050db82
chore: release 1.3.0 2024-02-22 17:57:23 +00:00
release-please[bot]
79c00f5fc9
chore: release 1.2.0 2024-01-24 18:45:44 +00:00
Christian Siebmanns
8dc6a76af9 fix (testing): add testing folder to npm package 2024-01-20 00:00:06 +01:00
Elizabeth Mitchell
c9360e2310 chore: remove commitlint.config.js from build files
PiperOrigin-RevId: 592670865
2023-12-20 15:20:00 -08:00
Copybara-Service
6eb9fe670f Merge pull request #5285 from material-components:size
PiperOrigin-RevId: 591037361
2023-12-14 13:34:17 -08:00
release-please[bot]
79ef9f6f5d
chore: release 1.1.1 2023-12-13 22:22:57 +00:00
Liz Mitchell
3749911d16 chore: add build dependecy to update-size 2023-12-13 11:27:32 -08:00
Liz Mitchell
1d9a552dcf docs: add size tracking 2023-12-12 17:25:03 -08:00
release-please[bot]
40e63ec3ee
chore: release 1.1.0 2023-12-12 20:48:06 +00:00
release-please[bot]
89f1f7b3ce
chore: release 1.0.1 2023-10-18 17:55:42 +00:00
release-please[bot]
f5d408e940
chore: release 1.0.0 2023-09-26 21:49:18 +00:00
Elizabeth Mitchell
911455948e chore: revert changelog commit
PiperOrigin-RevId: 568654393
2023-09-26 14:47:17 -07:00
release-please[bot]
106b03614a chore: release 1.0.0
🤖 I have created a release *beep* *boop*
---

## [1.0.0](https://github.com/material-components/material-web/compare/v1.0.0-pre.17...v1.0.0) (2023-09-25)

### ⚠ BREAKING CHANGES

* **list:** the new ListController behavior no longer waits for event.preventDefault asynchronously because it was causing keyboard navigations to scroll the page.
* **list:** `<md-list-item>` now uses slots instead of properties and has removed many prescriptive items (such as avatar, image, and video items). The default slot can be used for any custom content. ```html <md-list-item>   <div slot="overline">OVERLINE</div>   <div slot="headline">First line</div>   <div slot="supporting-text">Second+ lines</div>   <div slot="trailing-supporting-text">Trailing</div>   <md-icon slot="start">star</md-icon>   <md-icon slot="end">star</md-icon> </md-list-item> ``` Add `type="button"` or `type="link"` for interactive list items.
* **menu:** Several enums in menu had their values changed from SCREAM_CASE to kebab-case to follow style guide. They are NAVIGABLE_KEYS -> NavigableKey, SELECTION_KEY -> SelectionKey, CLOSE_REASON -> CloseReason, KEYDOWN_CLOSE_KEY -> KeydownCloseKey
* **menu,select:** refactor `fixed` property to `positioning="fixed"` in Menu and `menuFixed` to `menuPositioning="fixed"`
* **menu:** This change refactors menu-item to no longer subclass or import from list-item. It also refactors it to use md-item directly which means that the API of menu item has moved from properties to slots. `start-*` and `end-*` slots are now just `start` and `end`, many tokens are now gone in favor of slotting. `headline` property is now a `slot="headline"` slot. Typeahead search text can now be set via `typeaheadText` which defaults to the slotted headline `textContent`. `select-option` now has the `displayText` which is used to display text in the `md-select` when the option is selected; defaults to the slotted headline `textContent`.
* **menu:** We have deleted `md-sub-menu-item`. Instead it is recommended to use `md-sub-menu` which can have `md-menu-item[slot=item]` and `md-menu[slot=menu]` slotted into it. This makes `sub-menu-item` accessible for screen readers using linear navigation
* **menu:** Menu no longer uses md-list internally which means the list-related properties such as `list-tabindex` and `type` should now be on the host of md-menu. The new attributes should be `tabindex` and `role` respectively.
* **iconbutton:** Replace `container-size` tokens with `container-width` and `container-height`.
* **list:** the `noninteractive` property has been replaced by the `interactive` property, and by default, a list-item will no longer show a ripple or focus ring. What to change:
    - To preserve prior default behavior, add the `interactive` attribute explicitly.
    - Any setting of a truthy `noninteractive` attribute or property can be removed as it's the new default behavior.
* **menu:** rename corner and focus state values lowercase with dashes
* **chips:** chips now follow the [aria toolbar pattern](https://www.w3.org/WAI/ARIA/apg/patterns/toolbar/examples/toolbar/). Chip sets are toolbars and chips are buttons or links. Filter chips are toggle buttons. What to change:
    - Remove `type` attribute from `<md-chip-set>` (you can mix and match chip types!)
    - Remove `single-select` from `<md-chip-set>`. Use JS to control filter chips if single selection is required. Radio filter chips will come in a future update.
    - Disabled chips CAN be focused with the keyboard if `always-focusable` is set.
    - Filter chips no longer dispatch a `"selected"` event. Listen to `"click"` and use `event.target.selected` instead.
    - ArrowUp and ArrowDown no longer navigate between chips. These are reserved for chip actions, like dropdown menu chips.
* **list,menu,select:** the data-variant=".." selectors in list-item and all variants have been removed in favor of their respective slots. e.g. a slotted icon of the form `md-icon[slot=end][data-variant=icon]` should now be `md-icon[slot=end-icon]`.
* **menu:** menu selected container color changed to secondary-container
* **list:**
* **list:** Aria and roles on List have been moved to the host element. list-tabindex attribute should be migrated to tabindex attribute. type attribute should be migrated to role attribute.
* **list,menu,select:** removed `active` from list-item, menu-item, and select-option. Instead, List uses tabindex to track whether something is focusable.
* **select:** `option.selected` no longer reflects. Set the attribute instead if relying on the attribute for styles/queries.
* **dialog:** if overriding margin on a dialog's content, swap it to padding. If a dialog's slotted first or last child has built-in margin (such as `<h3>` or `<p>`), remove the top/bottom margin as needed (since margin swapped to padding, there's no more margin collapsing).
* **tabs:** Rename the `selected` index property on md-tabs to `activeTabIndex` (`active-tab-index` attribute). Rename `select-on-focus` to `auto-activate`
* **typography:** composite `-type` tokens are no longer supported. Use discrete `-font`, `-size`, `-line-height`, and `-weight` tokens instead.
* **tabs:** replace `label-text-type` tokens with `-font`, `-size`, `-line-height`, and `-weight`
* **tabs:** rename `selected` to `active` for primary and secondary tabs.
* **textfield:** replace slot names `leadingicon` and `trailingicon` with `leading-icon` and `trailing-icon`
* **select:** replace `leadingicon` and `trailingicon` slot names with `leading-icon` and `trailing-icon`
* **navigationtab:** change slot names activeIcon and inactiveIcon to active-icon and inactive-icon

### Features

* **chips:** swap to toolbar a11y pattern ([16bfac1](16bfac1343))
* **iconbutton:** update tokens to v0.192 ([e8b5b29](e8b5b29d1e))
* **item:** add `&lt;md-item&gt;` layout component ([ffe4f79](ffe4f79b5d))
* **items:** add `&lt;md-item&gt;` to `@material/web/labs` ([b35212a](b35212a9ac))
* **list,menu,select:** add slots for specific slotted variants ([ed68995](ed689952dd))
* **menu:** create a Menu interface for easier md-menu wrapping ([5fad4f0](5fad4f088f))
* **menu:** do not close menu if anchor is clicked ([c7c276f](c7c276fdfa))
* **menu:** implement md-sub-menu ([54fbb2e](54fbb2ed5e))
* **menu:** menus will resize and flip corners to stay in viewport ([235a203](235a2033d7))
* **menu:** update tokens to v0.192 ([94b5c81](94b5c8125e))
* **select:** add required and form association ([4ad2336](4ad2336b87)), closes [#4903](https://github.com/material-components/material-web/issues/4903)
* **tabs:** add `tabs` property to retrieve tab elements ([bf48fc3](bf48fc307e))
* **typography:** add typography Sass APIs ([8e480de](8e480deae3))

### Bug Fixes

* aria polyfill overrides user values and user values override internals values ([8aa4faf](8aa4faf14a))
* **catalog:** remove TODO from home page ([af27ff8](af27ff8374))
* **dialog:** change content margin to padding ([8613fe6](8613fe6a58))
* **dialog:** not delegating focus in closure ([375b766](375b7664ef))
* **iconbutton:** allow prevent default click for toggles ([ed539c6](ed539c6853)), closes [#4857](https://github.com/material-components/material-web/issues/4857)
* **iconbutton:** fix HCM disabled opacity and outlined ([1163315](1163315948))
* **linearprogress:** linear progress buffer dots now visible in HCM ([70bfea8](70bfea8738))
* **list,menu:** clicking items in a list followed by keyboard nav functions as expected ([af171df](af171df086))
* **list,menu:** list items left right keyboard navigation ([fad6104](fad6104391))
* **list:** list items are now noninteractive by default ([3b5cbc4](3b5cbc4ede))
* **list:** update tokens to 0.192 ([58539b1](58539b1569))
* **menu:** allow submenus to close when focus is lost ([7a19c7e](7a19c7e97a))
* **menu:** apply padding to dividers per spec ([df52d92](df52d92724))
* **menu:** fix submenus on mobile ([368991c](368991ce30))
* **menu:** menu's default focus behavior follows google accessibility practices ([2927245](2927245114))
* **menu:** update default min width to spec and allow max-width to inherit ([2e25bf8](2e25bf8ce2))
* **navigationtab:** change slot names activeIcon and inactiveIcon to active-icon and inactive-icon ([f019ac3](f019ac37fe))
* **radio:** dispatches input event on select ([e444de3](e444de3c02))
* **select:** change slot names to kebab-case ([059dad5](059dad5d44))
* **select:** don't reflect `selected` attribute ([573caae](573caaee1b))
* **select:** select can reopen when animation interrupted ([78e7c17](78e7c1742f))
* **select:** update select docs and fix initial selection ([5e4434b](5e4434bfed))
* **slider:** border should only appear when handle nubs are overlapping ([6e72a8e](6e72a8e5f4))
* **slider:** label should not changed size when stacked ([b50d5c8](b50d5c87b3))
* **slider:** make tickmarks visible when slider is disabled ([e9d1e7d](e9d1e7d3c4))
* **tabs:** a11y and tabs sometimes not activating ([58f2446](58f2446246))
* **tabs:** remove font shorthand tokens ([88eb175](88eb1759c5))
* **tabs:** remove previously selected tab property ([70ce0d2](70ce0d2779))
* **tabs:** remove public indicator property ([d296316](d296316a2b))
* **tabs:** rename tab `selected` to `active` ([23b291b](23b291b2dd))
* **tabs:** scrollable divider not taking up full width ([a0fca90](a0fca90bdf))
* **tabs:** setting `active` on tab selects them ([1442f9b](1442f9b223))
* **textfield,focus,ripple:** fix textfield SSR ([f576b60](f576b60aec))
* **textfield:** add demo a11y and fix outlined label navigation ([7866a93](7866a939b9))
* **textfield:** broken required validity on Safari ([c26a578](c26a578448)), closes [#4796](https://github.com/material-components/material-web/issues/4796)
* **textfield:** change slot names to kebab-case ([82e9e92](82e9e92a19))
* **textfield:** don't show focus indicator when focused on icon ([61c8f6d](61c8f6db46))
* **textfield:** remove icon that appears in search input in chrome and safari ([86aaacd](86aaacd32c))
* **tokens:** generate tokens v0.192 ([116b448](116b448639))
* **tokens:** update components to v0.192 ([cfd053c](cfd053c397))

### Miscellaneous Chores

* prep release version ([df508ef](df508ef5fd))

### Code Refactoring

* **list,menu,select:** remove active concept and now parent controls tabIndex and focus ([d446315](d4463154cc))
* **list,menu,select:** remove data-variant slotted variant selectors ([1f31df8](1f31df818b))
* **list:** move list aria to host ([9447ec7](9447ec7d72))
* **list:** refactor list to reuse ListController ([6d0c7e8](6d0c7e8538))
* **list:** refactor list using md-item ([7536774](753677489b))
* **menu,select:** rename `fixed` to `positioning` ([63b0142](63b01425e7))
* **menu:** pull logic out of menuitem into a controller & change enum vals ([1217b62](1217b62ef2))
* **menu:** refactor menu-item to use md-item and not rely on md-list-item ([2a1d877](2a1d8776a7))
* **menu:** remove sub-menu-item in favor of sub-menu ([d6cbf74](d6cbf74137))
* **menu:** rename corner and focus state values lowercase with dashes ([6e54048](6e54048f1e))
* **menu:** update menu to use host-aria ([0384507](0384507447))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).

COPYBARA_INTEGRATE_REVIEW=https://github.com/material-components/material-web/pull/4861 from material-components:release-please--branches--main--components--web 326c90e54feed2fbf1487d6154fdb1394963eec5
PiperOrigin-RevId: 568652033
2023-09-26 14:38:37 -07:00
Copybara-Service
1b0461884e Merge pull request #4981 from material-components:catalog-fixes
PiperOrigin-RevId: 567885328
2023-09-23 11:19:40 -07:00
Elliott Marquez
446558081a docs(catalog): misc catalog fixes 2023-09-22 19:28:01 -07:00
Elliott Marquez
a8f20c76e5 docs: bot to trigger update-docs on merge to main 2023-09-19 21:25:17 -07:00
Elliott Marquez
9f3e55d79a docs: auto-generate API docs
Updates API docs in our markdown files with Lit Analyzer by manually running `npm run update-docs`

COPYBARA_INTEGRATE_REVIEW=https://github.com/material-components/material-web/pull/4946 from material-components:api-docs 1322ca962041a4b1f30ef7ad3ef2c7eb9087f42b
PiperOrigin-RevId: 566834596
2023-09-19 21:05:47 -07:00
Elliott Marquez
56e9044fa6 build: bump wireit versions and catalog ts version 2023-09-08 15:25:09 -07:00
Liz Mitchell
b82fa13fb6 chore: save exact ts version 2023-09-08 12:10:45 -07:00
Liz Mitchell
ee36971100 chore: update typescript 2023-09-08 11:56:02 -07:00
release-please[bot]
36df59b333
chore: release 1.0.0-pre.17 2023-09-06 20:16:50 +00:00
Elizabeth Mitchell
1f1dd74078 chore: expand lit dependency range
PiperOrigin-RevId: 559593050
2023-08-23 17:37:54 -07:00
Elizabeth Mitchell
349cec60d4 chore: add keywords to package.json
PiperOrigin-RevId: 559255993
2023-08-22 16:27:41 -07:00
release-please[bot]
881d61ce3a
chore: release 1.0.0-pre.16 2023-08-21 22:05:16 +00:00
release-please[bot]
bc6c504391
chore: release 1.0.0-pre.15 2023-08-10 23:36:08 +00:00
Elliott Marquez
86ccec3e7e build: use firebase for hosting and remove url prefixes 2023-07-27 09:17:27 -07:00
Elizabeth Mitchell
effb6e08e2 chore: remove safevalues dependency
PiperOrigin-RevId: 551311435
2023-07-26 14:15:16 -07:00
release-please[bot]
678b57700b
chore: release 1.0.0-pre.14 2023-07-24 19:03:56 +00:00
Elizabeth Mitchell
218b656366 chore: add bundle imports to build
PiperOrigin-RevId: 549750257
2023-07-20 15:02:35 -07:00
release-please[bot]
2c234cf7c9
chore: release 1.0.0-pre.13 2023-07-10 19:45:04 +00:00
Copybara-Service
cde3f31866 Merge pull request #4509 from vdegenne:wireit-catalog-noloop
PiperOrigin-RevId: 544658684
2023-06-30 08:08:53 -07:00
vdegenne
04c84256b1 ignore catalog directory from sass command 2023-06-30 00:25:56 +02:00
Valentin Degenne
cbaa69358b
remove catalog from sass task files
This value is no longer required.
2023-06-29 03:07:14 +02:00
Valentin Degenne
3eae60cfb1
rollback to root as a workspace 2023-06-29 02:22:17 +02:00
release-please[bot]
defa907f40
chore: release 1.0.0-pre.12 2023-06-28 22:25:14 +00:00
Valentin Degenne
2ff72162d7
cleaner version of grep 2023-06-28 21:03:21 +02:00
Valentin Degenne
8b1507e0b7
fix: wireit sass watch memory leak 2023-06-28 20:18:37 +02:00
Augustine Kim
d436c8fe5e fix(repo): remove "." from workspace config 2023-06-26 16:38:02 -07:00
release-please[bot]
6e5af92a8f
chore: release 1.0.0-pre.11 2023-06-16 20:17:15 +00:00
Elliott Marquez
d02fb45c1e remove catalog from files dir 2023-06-13 17:42:07 -05:00
release-please[bot]
e8d1b32f49
chore: release 1.0.0-pre.10 2023-06-05 20:26:52 +00:00
release-please[bot]
1d62926256
chore: release 1.0.0-pre.9 2023-05-25 01:00:24 +00:00