diff --git a/.changeset/pre.json b/.changeset/pre.json index ba32100f34..245eae541c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -104,6 +104,7 @@ "big-beds-care", "big-glasses-check", "big-jars-pump", + "brave-bikes-teach", "breezy-impalas-push", "calm-hats-sleep", "chatty-lands-attack", diff --git a/.storybook/CHANGELOG.md b/.storybook/CHANGELOG.md index 5707e176f8..0c9c669830 100644 --- a/.storybook/CHANGELOG.md +++ b/.storybook/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 12.1.0-next.21 + +### Patch Changes + +Updated dependencies []: + +- @spectrum-css/bundle@2.0.0-next.17 + ## 12.1.0-next.20 ### Patch Changes diff --git a/.storybook/package.json b/.storybook/package.json index 4b6515851a..c70981f994 100644 --- a/.storybook/package.json +++ b/.storybook/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/preview", - "version": "12.1.0-next.20", + "version": "12.1.0-next.21", "description": "A Spectrum CSS preview", "license": "Apache-2.0", "author": "Adobe", @@ -40,7 +40,7 @@ }, "dependencies": { "@adobe/spectrum-css-workflow-icons": "5.0.0", - "@spectrum-css/bundle": "2.0.0-next.16", + "@spectrum-css/bundle": "2.0.0-next.17", "@spectrum-css/tokens": "16.1.0-next.10", "@spectrum-css/ui-icons": "2.0.0-next.2" }, diff --git a/components/actionbar/package.json b/components/actionbar/package.json index 1180120426..639f40ab57 100644 --- a/components/actionbar/package.json +++ b/components/actionbar/package.json @@ -48,7 +48,7 @@ } }, "devDependencies": { - "@spectrum-css/actiongroup": "7.0.0-next.2", + "@spectrum-css/actiongroup": "7.0.0-next.3", "@spectrum-css/closebutton": "7.0.0-next.1", "@spectrum-css/fieldlabel": "11.0.0-next.2", "@spectrum-css/popover": "9.0.0-next.5", diff --git a/components/actionbutton/CHANGELOG.md b/components/actionbutton/CHANGELOG.md index c04db5b368..ef41b95627 100644 --- a/components/actionbutton/CHANGELOG.md +++ b/components/actionbutton/CHANGELOG.md @@ -1,5 +1,66 @@ # Change log +## 8.0.0-next.4 + +### Minor Changes + +📝 [#4085](https://github.com/adobe/spectrum-css/pull/4085) [`082862e`](https://github.com/adobe/spectrum-css/commit/082862eb80c6e0ac1c801b1d538e4d2f2bb919b4) Thanks [@castastrophe](https://github.com/castastrophe)! + +### Action menu component (now with custom styles!) + +Introduces `@spectrum-css/actionmenu`, a composition of `ActionButton`, `Popover`, and `Menu` to present action lists from a trigger. Now with custom styles! + +- Adds wrapper classes: `spectrum-ActionMenu`, `spectrum-ActionMenu-trigger`, `spectrum-ActionMenu-popover`, and `spectrum-ActionMenu-menu`. +- Supports long press triggers and four placements (start/end, top/bottom) via the underlying popover API. +- Design reference: [Figma S2 token specs](https://www.figma.com/design/eoZHKJH9a3LJkHYCGt60Vb/S2-token-specs?node-id=20959-21513&node-type=frame&t=jbePQKK1yLdrHG2M-11). + +#### Migration notes + +- If you previously composed an action menu manually (action button + popover + menu), you can adopt the new wrapper classes without changing the underlying markup semantics. Ensure the trigger has `aria-haspopup="menu"` and manages `aria-expanded` according to your application logic. +- For spacing customizations previously done with ad‑hoc margins, switch to the new `--spectrum-actionmenu-button-to-menu-gap` custom property. + +Example markup: + +```html +
+ +
+ +
+ + + +
+``` + +### Menu refinements + +Updates `@spectrum-css/menu` styles to align with latest Spectrum 2 design specifications and improve accessibility. + +- Updated `.is-selectableMultiple .spectrum-Menu-itemCheckbox` to `.is-selectableMultiple:not(:has(.is-selectable)) .spectrum-Menu-itemCheckbox` to prevent clash with the `.is-selectable` placement. +- Non-breaking; no class or DOM changes required. + +### Action button refinements + +- Selection styling now applies when components use ARIA pressed/expanded semantics, not just `.is-selected`. +- Implemented with `:where()` to keep selector specificity low and prevent downstream specificity battles. +- Non-breaking; no class changes required. + +### Action group refinements + +Aligns selection behavior of grouped items with action button updates. + +- Adds `:where([aria-pressed="true"], [aria-expanded="true"])` alongside `.is-selected` on items to cover more accessibility use-cases while keeping specificity low. +- Non-breaking; no class changes required. + ## 8.0.0-next.3 ### Major Changes diff --git a/components/actionbutton/package.json b/components/actionbutton/package.json index b836c3e795..09f5a7dfaf 100644 --- a/components/actionbutton/package.json +++ b/components/actionbutton/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/actionbutton", - "version": "8.0.0-next.3", + "version": "8.0.0-next.4", "description": "The Spectrum CSS action button component", "license": "Apache-2.0", "author": "Adobe", diff --git a/components/actiongroup/CHANGELOG.md b/components/actiongroup/CHANGELOG.md index b31b25762e..fee0ec2c2c 100644 --- a/components/actiongroup/CHANGELOG.md +++ b/components/actiongroup/CHANGELOG.md @@ -1,5 +1,66 @@ # Change log +## 7.0.0-next.3 + +### Patch Changes + +📝 [#4085](https://github.com/adobe/spectrum-css/pull/4085) [`082862e`](https://github.com/adobe/spectrum-css/commit/082862eb80c6e0ac1c801b1d538e4d2f2bb919b4) Thanks [@castastrophe](https://github.com/castastrophe)! + +### Action menu component (now with custom styles!) + +Introduces `@spectrum-css/actionmenu`, a composition of `ActionButton`, `Popover`, and `Menu` to present action lists from a trigger. Now with custom styles! + +- Adds wrapper classes: `spectrum-ActionMenu`, `spectrum-ActionMenu-trigger`, `spectrum-ActionMenu-popover`, and `spectrum-ActionMenu-menu`. +- Supports long press triggers and four placements (start/end, top/bottom) via the underlying popover API. +- Design reference: [Figma S2 token specs](https://www.figma.com/design/eoZHKJH9a3LJkHYCGt60Vb/S2-token-specs?node-id=20959-21513&node-type=frame&t=jbePQKK1yLdrHG2M-11). + +#### Migration notes + +- If you previously composed an action menu manually (action button + popover + menu), you can adopt the new wrapper classes without changing the underlying markup semantics. Ensure the trigger has `aria-haspopup="menu"` and manages `aria-expanded` according to your application logic. +- For spacing customizations previously done with ad‑hoc margins, switch to the new `--spectrum-actionmenu-button-to-menu-gap` custom property. + +Example markup: + +```html +
+ +
+ +
+ + + +
+``` + +### Menu refinements + +Updates `@spectrum-css/menu` styles to align with latest Spectrum 2 design specifications and improve accessibility. + +- Updated `.is-selectableMultiple .spectrum-Menu-itemCheckbox` to `.is-selectableMultiple:not(:has(.is-selectable)) .spectrum-Menu-itemCheckbox` to prevent clash with the `.is-selectable` placement. +- Non-breaking; no class or DOM changes required. + +### Action button refinements + +- Selection styling now applies when components use ARIA pressed/expanded semantics, not just `.is-selected`. +- Implemented with `:where()` to keep selector specificity low and prevent downstream specificity battles. +- Non-breaking; no class changes required. + +### Action group refinements + +Aligns selection behavior of grouped items with action button updates. + +- Adds `:where([aria-pressed="true"], [aria-expanded="true"])` alongside `.is-selected` on items to cover more accessibility use-cases while keeping specificity low. +- Non-breaking; no class changes required. + ## 7.0.0-next.2 ### Major Changes diff --git a/components/actiongroup/package.json b/components/actiongroup/package.json index 1378f794ef..4ac00486f7 100644 --- a/components/actiongroup/package.json +++ b/components/actiongroup/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/actiongroup", - "version": "7.0.0-next.2", + "version": "7.0.0-next.3", "description": "The Spectrum CSS actiongroup component", "license": "Apache-2.0", "author": "Adobe", @@ -36,7 +36,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/tokens": "16.1.0-next.10" }, "keywords": [ diff --git a/components/actionmenu/CHANGELOG.md b/components/actionmenu/CHANGELOG.md index 25bf1f752e..275ba44082 100644 --- a/components/actionmenu/CHANGELOG.md +++ b/components/actionmenu/CHANGELOG.md @@ -1,5 +1,66 @@ # Change log +## 8.0.0-next.2 + +### Major Changes + +📝 [#4085](https://github.com/adobe/spectrum-css/pull/4085) [`082862e`](https://github.com/adobe/spectrum-css/commit/082862eb80c6e0ac1c801b1d538e4d2f2bb919b4) Thanks [@castastrophe](https://github.com/castastrophe)! + +### Action menu component (now with custom styles!) + +Introduces `@spectrum-css/actionmenu`, a composition of `ActionButton`, `Popover`, and `Menu` to present action lists from a trigger. Now with custom styles! + +- Adds wrapper classes: `spectrum-ActionMenu`, `spectrum-ActionMenu-trigger`, `spectrum-ActionMenu-popover`, and `spectrum-ActionMenu-menu`. +- Supports long press triggers and four placements (start/end, top/bottom) via the underlying popover API. +- Design reference: [Figma S2 token specs](https://www.figma.com/design/eoZHKJH9a3LJkHYCGt60Vb/S2-token-specs?node-id=20959-21513&node-type=frame&t=jbePQKK1yLdrHG2M-11). + +#### Migration notes + +- If you previously composed an action menu manually (action button + popover + menu), you can adopt the new wrapper classes without changing the underlying markup semantics. Ensure the trigger has `aria-haspopup="menu"` and manages `aria-expanded` according to your application logic. +- For spacing customizations previously done with ad‑hoc margins, switch to the new `--spectrum-actionmenu-button-to-menu-gap` custom property. + +Example markup: + +```html +
+ +
+ +
+ + + +
+``` + +### Menu refinements + +Updates `@spectrum-css/menu` styles to align with latest Spectrum 2 design specifications and improve accessibility. + +- Updated `.is-selectableMultiple .spectrum-Menu-itemCheckbox` to `.is-selectableMultiple:not(:has(.is-selectable)) .spectrum-Menu-itemCheckbox` to prevent clash with the `.is-selectable` placement. +- Non-breaking; no class or DOM changes required. + +### Action button refinements + +- Selection styling now applies when components use ARIA pressed/expanded semantics, not just `.is-selected`. +- Implemented with `:where()` to keep selector specificity low and prevent downstream specificity battles. +- Non-breaking; no class changes required. + +### Action group refinements + +Aligns selection behavior of grouped items with action button updates. + +- Adds `:where([aria-pressed="true"], [aria-expanded="true"])` alongside `.is-selected` on items to cover more accessibility use-cases while keeping specificity low. +- Non-breaking; no class changes required. + ## 8.0.0-next.1 ### Patch Changes diff --git a/components/actionmenu/package.json b/components/actionmenu/package.json index 2ef2cb87e8..8412a69b1d 100644 --- a/components/actionmenu/package.json +++ b/components/actionmenu/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/actionmenu", - "version": "8.0.0-next.1", + "version": "8.0.0-next.2", "description": "The Spectrum CSS actionmenu component", "license": "Apache-2.0", "author": "Adobe", @@ -48,9 +48,9 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/icon": "10.0.0-next.3", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/popover": "9.0.0-next.5", "@spectrum-css/tokens": "16.1.0-next.10" }, diff --git a/components/breadcrumb/package.json b/components/breadcrumb/package.json index 9d4e6e298e..5fee7b38c6 100644 --- a/components/breadcrumb/package.json +++ b/components/breadcrumb/package.json @@ -40,7 +40,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/icon": "10.0.0-next.3", "@spectrum-css/tokens": "16.1.0-next.10" }, diff --git a/components/calendar/package.json b/components/calendar/package.json index 4ee792ed1d..7c025d0998 100644 --- a/components/calendar/package.json +++ b/components/calendar/package.json @@ -36,7 +36,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/tokens": "16.1.0-next.10" }, "keywords": [ diff --git a/components/card/package.json b/components/card/package.json index 0a50a11789..90c6910a0f 100644 --- a/components/card/package.json +++ b/components/card/package.json @@ -56,7 +56,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/asset": "8.0.0-next.0", "@spectrum-css/checkbox": "11.0.0-next.2", "@spectrum-css/icon": "10.0.0-next.3", diff --git a/components/coachmark/package.json b/components/coachmark/package.json index f863cd35cd..af849a2eda 100644 --- a/components/coachmark/package.json +++ b/components/coachmark/package.json @@ -56,11 +56,11 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", - "@spectrum-css/actionmenu": "8.0.0-next.1", + "@spectrum-css/actionbutton": "8.0.0-next.4", + "@spectrum-css/actionmenu": "8.0.0-next.2", "@spectrum-css/button": "15.0.0-next.2", "@spectrum-css/buttongroup": "10.0.0-next.1", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/popover": "9.0.0-next.5", "@spectrum-css/tokens": "16.1.0-next.10" }, diff --git a/components/combobox/package.json b/components/combobox/package.json index 3dfbdd535f..4a59a58674 100644 --- a/components/combobox/package.json +++ b/components/combobox/package.json @@ -52,7 +52,7 @@ } }, "devDependencies": { - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/pickerbutton": "7.0.0-next.2", "@spectrum-css/popover": "9.0.0-next.5", "@spectrum-css/progresscircle": "6.0.0-next.0", diff --git a/components/contextualhelp/package.json b/components/contextualhelp/package.json index 2b780cd9c8..58f21b859a 100644 --- a/components/contextualhelp/package.json +++ b/components/contextualhelp/package.json @@ -44,7 +44,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/link": "8.0.0-next.2", "@spectrum-css/popover": "9.0.0-next.5", "@spectrum-css/tokens": "16.1.0-next.10" diff --git a/components/dropzone/package.json b/components/dropzone/package.json index 571c2bdb2a..942565b244 100644 --- a/components/dropzone/package.json +++ b/components/dropzone/package.json @@ -44,7 +44,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/illustratedmessage": "10.0.0-next.0", "@spectrum-css/link": "8.0.0-next.2", "@spectrum-css/tokens": "16.1.0-next.10" diff --git a/components/menu/CHANGELOG.md b/components/menu/CHANGELOG.md index e1d3f5b5e2..5dab6e926f 100644 --- a/components/menu/CHANGELOG.md +++ b/components/menu/CHANGELOG.md @@ -1,5 +1,66 @@ # Change log +## 10.0.0-next.6 + +### Patch Changes + +📝 [#4085](https://github.com/adobe/spectrum-css/pull/4085) [`082862e`](https://github.com/adobe/spectrum-css/commit/082862eb80c6e0ac1c801b1d538e4d2f2bb919b4) Thanks [@castastrophe](https://github.com/castastrophe)! + +### Action menu component (now with custom styles!) + +Introduces `@spectrum-css/actionmenu`, a composition of `ActionButton`, `Popover`, and `Menu` to present action lists from a trigger. Now with custom styles! + +- Adds wrapper classes: `spectrum-ActionMenu`, `spectrum-ActionMenu-trigger`, `spectrum-ActionMenu-popover`, and `spectrum-ActionMenu-menu`. +- Supports long press triggers and four placements (start/end, top/bottom) via the underlying popover API. +- Design reference: [Figma S2 token specs](https://www.figma.com/design/eoZHKJH9a3LJkHYCGt60Vb/S2-token-specs?node-id=20959-21513&node-type=frame&t=jbePQKK1yLdrHG2M-11). + +#### Migration notes + +- If you previously composed an action menu manually (action button + popover + menu), you can adopt the new wrapper classes without changing the underlying markup semantics. Ensure the trigger has `aria-haspopup="menu"` and manages `aria-expanded` according to your application logic. +- For spacing customizations previously done with ad‑hoc margins, switch to the new `--spectrum-actionmenu-button-to-menu-gap` custom property. + +Example markup: + +```html +
+ +
+ +
+ + + +
+``` + +### Menu refinements + +Updates `@spectrum-css/menu` styles to align with latest Spectrum 2 design specifications and improve accessibility. + +- Updated `.is-selectableMultiple .spectrum-Menu-itemCheckbox` to `.is-selectableMultiple:not(:has(.is-selectable)) .spectrum-Menu-itemCheckbox` to prevent clash with the `.is-selectable` placement. +- Non-breaking; no class or DOM changes required. + +### Action button refinements + +- Selection styling now applies when components use ARIA pressed/expanded semantics, not just `.is-selected`. +- Implemented with `:where()` to keep selector specificity low and prevent downstream specificity battles. +- Non-breaking; no class changes required. + +### Action group refinements + +Aligns selection behavior of grouped items with action button updates. + +- Adds `:where([aria-pressed="true"], [aria-expanded="true"])` alongside `.is-selected` on items to cover more accessibility use-cases while keeping specificity low. +- Non-breaking; no class changes required. + ## 10.0.0-next.5 ### Minor Changes diff --git a/components/menu/package.json b/components/menu/package.json index cdc7a22fc6..49adeaaa1e 100644 --- a/components/menu/package.json +++ b/components/menu/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/menu", - "version": "10.0.0-next.5", + "version": "10.0.0-next.6", "description": "The Spectrum CSS menu component", "license": "Apache-2.0", "author": "Adobe", diff --git a/components/pagination/package.json b/components/pagination/package.json index 995f9b5965..7d651e582d 100644 --- a/components/pagination/package.json +++ b/components/pagination/package.json @@ -48,7 +48,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/button": "15.0.0-next.2", "@spectrum-css/icon": "10.0.0-next.3", "@spectrum-css/textfield": "9.0.0-next.1", diff --git a/components/picker/package.json b/components/picker/package.json index 50d9f86b37..d3c65950f6 100644 --- a/components/picker/package.json +++ b/components/picker/package.json @@ -54,7 +54,7 @@ "devDependencies": { "@spectrum-css/helptext": "8.0.0-next.2", "@spectrum-css/icon": "10.0.0-next.3", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/popover": "9.0.0-next.5", "@spectrum-css/progresscircle": "6.0.0-next.0", "@spectrum-css/tokens": "16.1.0-next.10" diff --git a/components/pickerbutton/package.json b/components/pickerbutton/package.json index 024f3bc496..2741b6f914 100644 --- a/components/pickerbutton/package.json +++ b/components/pickerbutton/package.json @@ -45,7 +45,7 @@ }, "devDependencies": { "@spectrum-css/icon": "10.0.0-next.3", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/popover": "9.0.0-next.5", "@spectrum-css/tokens": "16.1.0-next.10" }, diff --git a/components/popover/package.json b/components/popover/package.json index 1169d17fd2..c2f887b6c7 100644 --- a/components/popover/package.json +++ b/components/popover/package.json @@ -51,7 +51,7 @@ "@spectrum-css/alertdialog": "5.0.0-next.4", "@spectrum-css/dialog": "13.0.0-next.4", "@spectrum-css/divider": "6.0.0-next.1", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/tokens": "16.1.0-next.10" }, "keywords": [ diff --git a/components/stepper/package.json b/components/stepper/package.json index 62819cdce2..34a3e52b82 100644 --- a/components/stepper/package.json +++ b/components/stepper/package.json @@ -48,7 +48,7 @@ } }, "devDependencies": { - "@spectrum-css/actionbutton": "8.0.0-next.3", + "@spectrum-css/actionbutton": "8.0.0-next.4", "@spectrum-css/icon": "10.0.0-next.3", "@spectrum-css/infieldbutton": "7.0.0-next.3", "@spectrum-css/textfield": "9.0.0-next.1", diff --git a/components/tabs/package.json b/components/tabs/package.json index 88bfdb2601..c9ac2234b6 100644 --- a/components/tabs/package.json +++ b/components/tabs/package.json @@ -45,7 +45,7 @@ }, "devDependencies": { "@spectrum-css/icon": "10.0.0-next.3", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/picker": "10.0.0-next.4", "@spectrum-css/tokens": "16.1.0-next.10" }, diff --git a/tools/bundle/CHANGELOG.md b/tools/bundle/CHANGELOG.md index f2b28a2906..699e77f08f 100644 --- a/tools/bundle/CHANGELOG.md +++ b/tools/bundle/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 2.0.0-next.17 + +### Patch Changes + +Updated dependencies [[`082862e`](https://github.com/adobe/spectrum-css/commit/082862eb80c6e0ac1c801b1d538e4d2f2bb919b4)]: + +- @spectrum-css/actionmenu@8.0.0-next.2 +- @spectrum-css/actionbutton@8.0.0-next.4 +- @spectrum-css/menu@10.0.0-next.6 +- @spectrum-css/actiongroup@7.0.0-next.3 + ## 2.0.0-next.16 ### Patch Changes diff --git a/tools/bundle/package.json b/tools/bundle/package.json index ea4b944d68..71b5d045fd 100644 --- a/tools/bundle/package.json +++ b/tools/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/bundle", - "version": "2.0.0-next.16", + "version": "2.0.0-next.17", "description": "A demo-ready bundle of the components in the Spectrum CSS library.", "license": "Apache-2.0", "author": "Adobe", @@ -32,9 +32,9 @@ "dependencies": { "@spectrum-css/accordion": "8.0.0-next.5", "@spectrum-css/actionbar": "11.0.0-next.3", - "@spectrum-css/actionbutton": "8.0.0-next.3", - "@spectrum-css/actiongroup": "7.0.0-next.2", - "@spectrum-css/actionmenu": "8.0.0-next.1", + "@spectrum-css/actionbutton": "8.0.0-next.4", + "@spectrum-css/actiongroup": "7.0.0-next.3", + "@spectrum-css/actionmenu": "8.0.0-next.2", "@spectrum-css/alertbanner": "4.0.0-next.3", "@spectrum-css/alertdialog": "5.0.0-next.4", "@spectrum-css/asset": "8.0.0-next.0", @@ -76,7 +76,7 @@ "@spectrum-css/inlinealert": "11.0.0-next.3", "@spectrum-css/link": "8.0.0-next.2", "@spectrum-css/logicbutton": "7.0.0-next.1", - "@spectrum-css/menu": "10.0.0-next.5", + "@spectrum-css/menu": "10.0.0-next.6", "@spectrum-css/meter": "2.0.0-next.3", "@spectrum-css/miller": "9.0.0-next.1", "@spectrum-css/modal": "8.0.0-next.1", diff --git a/yarn.lock b/yarn.lock index 3dde21f823..c0299c3638 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4140,7 +4140,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/actionbar@workspace:components/actionbar" dependencies: - "@spectrum-css/actiongroup": "npm:7.0.0-next.2" + "@spectrum-css/actiongroup": "npm:7.0.0-next.3" "@spectrum-css/closebutton": "npm:7.0.0-next.1" "@spectrum-css/fieldlabel": "npm:11.0.0-next.2" "@spectrum-css/popover": "npm:9.0.0-next.5" @@ -4165,7 +4165,7 @@ __metadata: languageName: unknown linkType: soft -"@spectrum-css/actionbutton@npm:8.0.0-next.3, @spectrum-css/actionbutton@workspace:components/actionbutton": +"@spectrum-css/actionbutton@npm:8.0.0-next.4, @spectrum-css/actionbutton@workspace:components/actionbutton": version: 0.0.0-use.local resolution: "@spectrum-css/actionbutton@workspace:components/actionbutton" dependencies: @@ -4182,11 +4182,11 @@ __metadata: languageName: unknown linkType: soft -"@spectrum-css/actiongroup@npm:7.0.0-next.2, @spectrum-css/actiongroup@workspace:components/actiongroup": +"@spectrum-css/actiongroup@npm:7.0.0-next.3, @spectrum-css/actiongroup@workspace:components/actiongroup": version: 0.0.0-use.local resolution: "@spectrum-css/actiongroup@workspace:components/actiongroup" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: "@spectrum-css/actionbutton": ">=8.0.0-next.0" @@ -4199,13 +4199,13 @@ __metadata: languageName: unknown linkType: soft -"@spectrum-css/actionmenu@npm:8.0.0-next.1, @spectrum-css/actionmenu@workspace:components/actionmenu": +"@spectrum-css/actionmenu@npm:8.0.0-next.2, @spectrum-css/actionmenu@workspace:components/actionmenu": version: 0.0.0-use.local resolution: "@spectrum-css/actionmenu@workspace:components/actionmenu" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/icon": "npm:10.0.0-next.3" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/popover": "npm:9.0.0-next.5" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: @@ -4375,7 +4375,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/breadcrumb@workspace:components/breadcrumb" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/icon": "npm:10.0.0-next.3" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: @@ -4392,15 +4392,15 @@ __metadata: languageName: unknown linkType: soft -"@spectrum-css/bundle@npm:2.0.0-next.16, @spectrum-css/bundle@workspace:tools/bundle": +"@spectrum-css/bundle@npm:2.0.0-next.17, @spectrum-css/bundle@workspace:tools/bundle": version: 0.0.0-use.local resolution: "@spectrum-css/bundle@workspace:tools/bundle" dependencies: "@spectrum-css/accordion": "npm:8.0.0-next.5" "@spectrum-css/actionbar": "npm:11.0.0-next.3" - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" - "@spectrum-css/actiongroup": "npm:7.0.0-next.2" - "@spectrum-css/actionmenu": "npm:8.0.0-next.1" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" + "@spectrum-css/actiongroup": "npm:7.0.0-next.3" + "@spectrum-css/actionmenu": "npm:8.0.0-next.2" "@spectrum-css/alertbanner": "npm:4.0.0-next.3" "@spectrum-css/alertdialog": "npm:5.0.0-next.4" "@spectrum-css/asset": "npm:8.0.0-next.0" @@ -4442,7 +4442,7 @@ __metadata: "@spectrum-css/inlinealert": "npm:11.0.0-next.3" "@spectrum-css/link": "npm:8.0.0-next.2" "@spectrum-css/logicbutton": "npm:7.0.0-next.1" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/meter": "npm:2.0.0-next.3" "@spectrum-css/miller": "npm:9.0.0-next.1" "@spectrum-css/modal": "npm:8.0.0-next.1" @@ -4528,7 +4528,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/calendar@workspace:components/calendar" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: "@spectrum-css/actionbutton": ">=8.0.0-next.0" @@ -4545,7 +4545,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/card@workspace:components/card" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/asset": "npm:8.0.0-next.0" "@spectrum-css/checkbox": "npm:11.0.0-next.2" "@spectrum-css/icon": "npm:10.0.0-next.3" @@ -4645,11 +4645,11 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/coachmark@workspace:components/coachmark" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" - "@spectrum-css/actionmenu": "npm:8.0.0-next.1" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" + "@spectrum-css/actionmenu": "npm:8.0.0-next.2" "@spectrum-css/button": "npm:15.0.0-next.2" "@spectrum-css/buttongroup": "npm:10.0.0-next.1" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/popover": "npm:9.0.0-next.5" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: @@ -4779,7 +4779,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/combobox@workspace:components/combobox" dependencies: - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/pickerbutton": "npm:7.0.0-next.2" "@spectrum-css/popover": "npm:9.0.0-next.5" "@spectrum-css/progresscircle": "npm:6.0.0-next.0" @@ -4812,7 +4812,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/contextualhelp@workspace:components/contextualhelp" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/link": "npm:8.0.0-next.2" "@spectrum-css/popover": "npm:9.0.0-next.5" "@spectrum-css/tokens": "npm:16.1.0-next.10" @@ -4947,7 +4947,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/dropzone@workspace:components/dropzone" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/illustratedmessage": "npm:10.0.0-next.0" "@spectrum-css/link": "npm:8.0.0-next.2" "@spectrum-css/tokens": "npm:16.1.0-next.10" @@ -5171,7 +5171,7 @@ __metadata: languageName: unknown linkType: soft -"@spectrum-css/menu@npm:10.0.0-next.5, @spectrum-css/menu@workspace:components/menu": +"@spectrum-css/menu@npm:10.0.0-next.6, @spectrum-css/menu@workspace:components/menu": version: 0.0.0-use.local resolution: "@spectrum-css/menu@workspace:components/menu" dependencies: @@ -5289,7 +5289,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/pagination@workspace:components/pagination" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/button": "npm:15.0.0-next.2" "@spectrum-css/icon": "npm:10.0.0-next.3" "@spectrum-css/textfield": "npm:9.0.0-next.1" @@ -5320,7 +5320,7 @@ __metadata: dependencies: "@spectrum-css/helptext": "npm:8.0.0-next.2" "@spectrum-css/icon": "npm:10.0.0-next.3" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/popover": "npm:9.0.0-next.5" "@spectrum-css/progresscircle": "npm:6.0.0-next.0" "@spectrum-css/tokens": "npm:16.1.0-next.10" @@ -5352,7 +5352,7 @@ __metadata: resolution: "@spectrum-css/pickerbutton@workspace:components/pickerbutton" dependencies: "@spectrum-css/icon": "npm:10.0.0-next.3" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/popover": "npm:9.0.0-next.5" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: @@ -5379,7 +5379,7 @@ __metadata: "@spectrum-css/alertdialog": "npm:5.0.0-next.4" "@spectrum-css/dialog": "npm:13.0.0-next.4" "@spectrum-css/divider": "npm:6.0.0-next.1" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: "@spectrum-css/alertdialog": ">=5.0.0-next.0" @@ -5409,7 +5409,7 @@ __metadata: "@babel/core": "npm:7.28.4" "@chromatic-com/storybook": "npm:3.2.7" "@etchteam/storybook-addon-status": "npm:5.0.0" - "@spectrum-css/bundle": "npm:2.0.0-next.16" + "@spectrum-css/bundle": "npm:2.0.0-next.17" "@spectrum-css/tokens": "npm:16.1.0-next.10" "@spectrum-css/ui-icons": "npm:2.0.0-next.2" "@storybook/addon-a11y": "npm:8.4.7" @@ -5617,7 +5617,7 @@ __metadata: version: 0.0.0-use.local resolution: "@spectrum-css/stepper@workspace:components/stepper" dependencies: - "@spectrum-css/actionbutton": "npm:8.0.0-next.3" + "@spectrum-css/actionbutton": "npm:8.0.0-next.4" "@spectrum-css/icon": "npm:10.0.0-next.3" "@spectrum-css/infieldbutton": "npm:7.0.0-next.3" "@spectrum-css/textfield": "npm:9.0.0-next.1" @@ -5723,7 +5723,7 @@ __metadata: resolution: "@spectrum-css/tabs@workspace:components/tabs" dependencies: "@spectrum-css/icon": "npm:10.0.0-next.3" - "@spectrum-css/menu": "npm:10.0.0-next.5" + "@spectrum-css/menu": "npm:10.0.0-next.6" "@spectrum-css/picker": "npm:10.0.0-next.4" "@spectrum-css/tokens": "npm:16.1.0-next.10" peerDependencies: