Skip to content

Commit fd709a2

Browse files
committed
Merge branch 'main' of github.com:adobe/react-spectrum into autocomplete
2 parents 0757832 + ab9fd5c commit fd709a2

File tree

256 files changed

+3577
-3056
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+3577
-3056
lines changed

.storybook-s2/docs/Migrating.jsx

+38-2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,19 @@ export function Migrating() {
5454
<li className={style({font: 'body', marginY: 8})}>Update <Code>Item</Code> to be a <Code>MenuItem</Code></li>
5555
</ul>
5656

57+
<H3>ActionGroup</H3>
58+
<ul className="sb-unstyled">
59+
<li className={style({font: 'body', marginY: 8})}>Use <Code>ActionButtonGroup</Code> if you are migrating from an <Code>ActionGroup</Code> that didn't allow for selection. <Code>ActionButtonGroup</Code> takes <Code>ActionButtons</Code> as children. </li>
60+
<li className={style({font: 'body', marginY: 8})}>Use <Code>ToggleButtonGroup</Code> if you are migrating from an <Code>ActionGroup</Code> that used single or multiple selection. <Code>ToggleButtonGroup</Code> takes <Code>ToggleButtons</Code> as children. </li>
61+
<li className={style({font: 'body', marginY: 8})}>[PENDING] Comment out <Code>overflowMode</Code> (it has not been implemented yet)</li>
62+
<li className={style({font: 'body', marginY: 8})}>[PENDING] Comment out <Code>buttonLabelBehavior</Code> (it has not been implemented yet)</li>
63+
<li className={style({font: 'body', marginY: 8})}>[PENDING] Comment out <Code>summaryIcon</Code> (it has not been implemented yet)</li>
64+
<li className={style({font: 'body', marginY: 8})}>Update root level <Code>onAction</Code> to called via <Code>onPress</Code> on each <Code>ActionButton</Code></li>
65+
<li className={style({font: 'body', marginY: 8})}>Apply <Code>isDisabled</Code> directly on each <Code>ActionButton</Code> or <Code>ToggleButton</Code> instead of root level <Code>disabledKeys</Code></li>
66+
<li className={style({font: 'body', marginY: 8})}>Update <Code>key</Code> to be <Code>id</Code> (and keep <Code>key</Code> if rendered inside <Code>array.map</Code>)</li>
67+
<li className={style({font: 'body', marginY: 8})}>Convert dynamic collections render function to <Code>items.map</Code></li>
68+
</ul>
69+
5770
<H3>AlertDialog</H3>
5871
<P>No updates needed.</P>
5972

@@ -141,14 +154,37 @@ export function Migrating() {
141154
<ul className="sb-unstyled">
142155
<li className={style({font: 'body', marginY: 8})}>Update children to move render props from being the second child of <Code>DialogTrigger</Code> to being a child of <Code>Dialog</Code></li>
143156
<li className={style({font: 'body', marginY: 8})}>Remove <Code>onDismiss</Code> and use <Code>onOpenChange</Code> on the <Code>DialogTrigger</Code>, or <Code>onDismiss</Code> on the <Code>DialogContainer</Code> instead</li>
157+
<li className={style({font: 'body', marginY: 8})}><Code>Dialog</Code> is now meant specifically for rendering modal dialogs only and follows the same preset layout as before</li>
158+
<li className={style({font: 'body', marginY: 8})}>If you are trying to create a dialog with a custom layout use <Code>CustomDialog</Code></li>
159+
<li className={style({font: 'body', marginY: 8})}>If you are trying to create a fullscreen dialog use <Code>FullscreenDialog</Code></li>
160+
<li className={style({font: 'body', marginY: 8})}>If you are trying to create a popover dialog use <Code>Popover</Code></li>
161+
<li className={style({font: 'body', marginY: 8})}>Supports <Code>isKeyboardDismissDisabled</Code> in place of <Code>DialogTrigger</Code></li>
162+
<li className={style({font: 'body', marginY: 8})}>Supports <Code>isDismissible</Code> in place of <Code>DialogTrigger</Code>. Note the fixed spelling from previous <Code>isDismissible</Code> prop.</li>
163+
<li className={style({font: 'body', marginY: 8})}>Supports <Code>role: "dialog" | "alertdialog"</Code></li>
164+
</ul>
165+
166+
<H3>DialogContainer</H3>
167+
<ul className="sb-unstyled">
168+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>type</Code>, this is dependent on the dialog level child that you use (e.g. <Code>Dialog</Code>, <Code>FullscreenDialog</Code>, <Code>Popover</Code>)</li>
169+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>isDismissable</Code>, prop now exists on the dialog level component as <Code>isDismissible</Code></li>
170+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>isKeyboardDismissDisabled</Code>, prop now exists on the dialog level component</li>
144171
</ul>
145172

146173
<H3>DialogTrigger</H3>
147174
<ul className="sb-unstyled">
148175
<li className={style({font: 'body', marginY: 8})}>[PENDING] Comment out <Code>type="tray"</Code> (<Code>Tray</Code> has not been implemented yet)</li>
149-
<li className={style({font: 'body', marginY: 8})}>[PENDING] Comment out <Code>mobileType="tray"</Code> (<Code>Tray</Code> has not been implemented yet)</li>
176+
<li className={style({font: 'body', marginY: 8})}>[PENDING] Comment out <Code>mobileType</Code> (<Code>Tray</Code> and other types have not been implemented yet for <Code>Popover</Code>)</li>
150177
<li className={style({font: 'body', marginY: 8})}>Remove <Code>targetRef</Code> (it is no longer supported in Spectrum 2)</li>
151178
<li className={style({font: 'body', marginY: 8})}>Update <Code>children</Code> to remove render props usage, and note that the <Code>close</Code> function was moved from <Code>DialogTrigger</Code> to <Code>Dialog</Code></li>
179+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>containerPadding</Code>, prop now exists on the <Code>Popover</Code> component</li>
180+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>crossOffset</Code>, prop now exists on the <Code>Popover</Code> component</li>
181+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>hideArrow</Code>, prop now exists on the <Code>Popover</Code> component</li>
182+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>isDismissable</Code>, prop now exists on the dialog level component as <Code>isDismissible</Code></li>
183+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>isKeyboardDismissDisabled</Code>, prop now exists on the dialog level component</li>
184+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>offset</Code>, prop now exists on the <Code>Popover</Code> component</li>
185+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>placement</Code>, prop now exists on the <Code>Popover</Code> component</li>
186+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>shouldFlip</Code>, prop now exists on the <Code>Popover</Code> component</li>
187+
<li className={style({font: 'body', marginY: 8})}>Remove <Code>type</Code>, this is dependent on the dialog level child that you use (e.g. <Code>Dialog</Code>, <Code>FullscreenDialog</Code>, <Code>Popover</Code>)</li>
152188
</ul>
153189

154190
<H3>Divider</H3>
@@ -468,7 +504,7 @@ export function Migrating() {
468504
<td><Code>'large'</Code></td>
469505
<td><Code>'xl'</Code></td>
470506
</tr>
471-
</tbody>
507+
</tbody>
472508
</table>
473509

474510
<H3>Dimension values</H3>

.storybook-s2/docs/Release Notes.mdx

+50
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,56 @@ export default MDXLayout;
44

55
# Release Notes
66

7+
## v0.5.0
8+
9+
In this release we have updated our Dialog and DialogTrigger APIs to improve layout flexibility for custom dialogs and popovers. Dialog has been split into four components:
10+
11+
* [Dialog](?path=/docs/dialog--docs) – a modal dialog with a standard layout with slots for the heading, content, hero image, button group, etc. This corresponds to the previous `type="modal"` API.
12+
* [FullscreenDialog](?path=/docs/fullscreendialog--docs) – a fullscreen or takeover modal, similar to a Dialog but with different slots and layout. This corresponds to the previous `type="fullscreen"` and `type="fullscreenTakeover"` APIs.
13+
* [CustomDialog](?path=/docs/customdialog--docs) – a modal dialog with a completely custom layout. It can have default padding or go edge-to-edge. No built-in slots are provided, the layout is entirely up to you.
14+
* [Popover](?path=/docs/popover--docs) Popovers no longer support the previous dialog-style layout, which was rarely needed in recent apps. In addition, popover now has a reduced amount of padding by default, which was a common request.
15+
16+
In addition, several DialogTrigger props have moved to the above children:
17+
18+
* `type` is removed. Use one of the above components instead.
19+
* `isKeyboardDismissDisabled` moved to Dialog, FullscreenDialog, and CustomDialog
20+
* `isDismissable` was renamed to `isDismissible` (fixed spelling), and moved to Dialog and CustomDialog
21+
* `hideArrow`, `offset`, `crossOffset`, `containerPadding`, `placement`, and `shouldFlip` moved to Popover
22+
23+
We've also continued to iterate on developer experience based on your feedback. Documentation on style macro usage with regards to
24+
[colors](?path=/docs/style-macro--docs#colors) and [typography](?path=/docs/style-macro--docs#typography) have been added to help clarify
25+
these common use cases. Style macro properties like `width` and `height` now allow for arbitrary pixel size values, please see the [docs](?path=/docs/style-macro--docs#sizing)
26+
for more information. Finally, documentation on [optimizing CSS bundling](?path=/docs/style-macro--docs#css-optimization) have also been
27+
added to help you generate a properly optimized output when using the bundler of your choice.
28+
29+
### New components
30+
31+
* [ActionButtonGroup](?path=/docs/actionbuttongroup--docs)
32+
* [CloseButton](?path=/docs/customdialog--docs)
33+
* [CustomDialog](?path=/docs/customdialog--docs)
34+
* [FullscreenDialog](?path=/docs/fullscreendialog--docs)
35+
* [Popover](?path=/docs/popover--docs)
36+
* [ToggleButtonGroup](?path=/docs/togglebuttongroup--docs)
37+
38+
### Updates
39+
40+
* [Accordion](?path=/docs/accordion--docs): Add support for adjacent sibling elements in header
41+
* [ActionButton](?path=/docs/actionbutton--docs): Add support for Avatars in ActionButtons
42+
* [Dialog](?path=/docs/dialog--docs): See above for a summary of the changes to Dialog and Dialog adjacent components.
43+
* [Disclosure](?path=/docs/disclosure--docs): Add support for adjacent sibling elements in header
44+
* [DropZone](?path=/docs/dropzone--docs): Add t-shirt sizing
45+
* [Menu](?path=/docs/menu--docs): Add support for separate user defined selection modes per MenuSection
46+
* [Meter](?path=/docs/meter--docs): Add label positioning support
47+
* Update Spectrum Tokens to v53
48+
* Allow arbitrary pixel sizes for style macro sizing properties (e.g. width, height)
49+
50+
### Codemods
51+
52+
* Support Dialog updates
53+
* Support ActionGroup -> ActionButtonGroup/ToggleButtonGroup
54+
* Support arbitrary pixel sizing for style macro sizing properties
55+
* Update S1 to S2 icon mapping
56+
757
## v0.4.0
858

959
### New components

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"@parcel/transformer-inline-string": "^2.13.0",
9999
"@parcel/transformer-svg-react": "^2.13.0",
100100
"@parcel/transformer-typescript-types": "^2.13.0",
101-
"@react-spectrum/s2-icon-builder": "^0.1.0",
101+
"@react-spectrum/s2-icon-builder": "^0.2.0",
102102
"@spectrum-css/component-builder": "1.0.1",
103103
"@spectrum-css/vars": "^2.3.0",
104104
"@storybook/addon-a11y": "patch:@storybook/addon-a11y@npm%3A7.6.19#~/.yarn/patches/@storybook-addon-a11y-npm-7.6.19-04b470eae0.patch",

packages/@adobe/react-spectrum/package.json

+61-61
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/react-spectrum",
3-
"version": "3.37.1",
3+
"version": "3.38.0",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -37,66 +37,66 @@
3737
"url": "https://github.com/adobe/react-spectrum"
3838
},
3939
"dependencies": {
40-
"@internationalized/string": "^3.2.4",
41-
"@react-aria/i18n": "^3.12.3",
42-
"@react-aria/ssr": "^3.9.6",
43-
"@react-aria/utils": "^3.25.3",
44-
"@react-aria/visually-hidden": "^3.8.17",
45-
"@react-spectrum/accordion": "^3.0.0-alpha.35",
46-
"@react-spectrum/actionbar": "^3.6.1",
47-
"@react-spectrum/actiongroup": "^3.10.9",
48-
"@react-spectrum/avatar": "^3.0.16",
49-
"@react-spectrum/badge": "^3.1.17",
50-
"@react-spectrum/breadcrumbs": "^3.9.11",
51-
"@react-spectrum/button": "^3.16.8",
52-
"@react-spectrum/buttongroup": "^3.6.16",
53-
"@react-spectrum/calendar": "^3.4.13",
54-
"@react-spectrum/checkbox": "^3.9.10",
55-
"@react-spectrum/color": "^3.0.1",
56-
"@react-spectrum/combobox": "^3.13.4",
57-
"@react-spectrum/contextualhelp": "^3.6.15",
58-
"@react-spectrum/datepicker": "^3.10.3",
59-
"@react-spectrum/dialog": "^3.8.15",
60-
"@react-spectrum/divider": "^3.5.17",
61-
"@react-spectrum/dnd": "^3.4.3",
62-
"@react-spectrum/dropzone": "^3.0.5",
63-
"@react-spectrum/filetrigger": "^3.0.5",
64-
"@react-spectrum/form": "^3.7.9",
65-
"@react-spectrum/icon": "^3.7.16",
66-
"@react-spectrum/illustratedmessage": "^3.5.4",
67-
"@react-spectrum/image": "^3.5.5",
68-
"@react-spectrum/inlinealert": "^3.2.9",
69-
"@react-spectrum/labeledvalue": "^3.1.17",
70-
"@react-spectrum/layout": "^3.6.9",
71-
"@react-spectrum/link": "^3.6.11",
72-
"@react-spectrum/list": "^3.8.3",
73-
"@react-spectrum/listbox": "^3.13.3",
74-
"@react-spectrum/menu": "^3.20.5",
75-
"@react-spectrum/meter": "^3.5.4",
76-
"@react-spectrum/numberfield": "^3.9.7",
77-
"@react-spectrum/overlays": "^5.6.5",
78-
"@react-spectrum/picker": "^3.15.3",
79-
"@react-spectrum/progress": "^3.7.10",
80-
"@react-spectrum/provider": "^3.9.12",
81-
"@react-spectrum/radio": "^3.7.10",
82-
"@react-spectrum/searchfield": "^3.8.10",
83-
"@react-spectrum/slider": "^3.6.13",
84-
"@react-spectrum/statuslight": "^3.5.16",
85-
"@react-spectrum/switch": "^3.5.9",
86-
"@react-spectrum/table": "^3.14.1",
87-
"@react-spectrum/tabs": "^3.8.14",
88-
"@react-spectrum/tag": "^3.2.10",
89-
"@react-spectrum/text": "^3.5.9",
90-
"@react-spectrum/textfield": "^3.12.6",
91-
"@react-spectrum/theme-dark": "^3.5.13",
92-
"@react-spectrum/theme-default": "^3.5.13",
93-
"@react-spectrum/theme-light": "^3.4.13",
94-
"@react-spectrum/tooltip": "^3.6.11",
95-
"@react-spectrum/view": "^3.6.13",
96-
"@react-spectrum/well": "^3.4.17",
97-
"@react-stately/collections": "^3.11.0",
98-
"@react-stately/data": "^3.11.7",
99-
"@react-types/shared": "^3.25.0",
40+
"@internationalized/string": "^3.2.5",
41+
"@react-aria/i18n": "^3.12.4",
42+
"@react-aria/ssr": "^3.9.7",
43+
"@react-aria/utils": "^3.26.0",
44+
"@react-aria/visually-hidden": "^3.8.18",
45+
"@react-spectrum/accordion": "^3.0.0",
46+
"@react-spectrum/actionbar": "^3.6.2",
47+
"@react-spectrum/actiongroup": "^3.10.10",
48+
"@react-spectrum/avatar": "^3.0.17",
49+
"@react-spectrum/badge": "^3.1.18",
50+
"@react-spectrum/breadcrumbs": "^3.9.12",
51+
"@react-spectrum/button": "^3.16.9",
52+
"@react-spectrum/buttongroup": "^3.6.17",
53+
"@react-spectrum/calendar": "^3.5.0",
54+
"@react-spectrum/checkbox": "^3.9.11",
55+
"@react-spectrum/color": "^3.0.2",
56+
"@react-spectrum/combobox": "^3.14.0",
57+
"@react-spectrum/contextualhelp": "^3.6.16",
58+
"@react-spectrum/datepicker": "^3.11.0",
59+
"@react-spectrum/dialog": "^3.8.16",
60+
"@react-spectrum/divider": "^3.5.18",
61+
"@react-spectrum/dnd": "^3.5.0",
62+
"@react-spectrum/dropzone": "^3.0.6",
63+
"@react-spectrum/filetrigger": "^3.0.6",
64+
"@react-spectrum/form": "^3.7.10",
65+
"@react-spectrum/icon": "^3.8.0",
66+
"@react-spectrum/illustratedmessage": "^3.5.5",
67+
"@react-spectrum/image": "^3.5.6",
68+
"@react-spectrum/inlinealert": "^3.2.10",
69+
"@react-spectrum/labeledvalue": "^3.1.18",
70+
"@react-spectrum/layout": "^3.6.10",
71+
"@react-spectrum/link": "^3.6.12",
72+
"@react-spectrum/list": "^3.9.0",
73+
"@react-spectrum/listbox": "^3.14.0",
74+
"@react-spectrum/menu": "^3.21.0",
75+
"@react-spectrum/meter": "^3.5.5",
76+
"@react-spectrum/numberfield": "^3.9.8",
77+
"@react-spectrum/overlays": "^5.7.0",
78+
"@react-spectrum/picker": "^3.15.4",
79+
"@react-spectrum/progress": "^3.7.11",
80+
"@react-spectrum/provider": "^3.10.0",
81+
"@react-spectrum/radio": "^3.7.11",
82+
"@react-spectrum/searchfield": "^3.8.11",
83+
"@react-spectrum/slider": "^3.7.0",
84+
"@react-spectrum/statuslight": "^3.5.17",
85+
"@react-spectrum/switch": "^3.5.10",
86+
"@react-spectrum/table": "^3.15.0",
87+
"@react-spectrum/tabs": "^3.8.15",
88+
"@react-spectrum/tag": "^3.2.11",
89+
"@react-spectrum/text": "^3.5.10",
90+
"@react-spectrum/textfield": "^3.12.7",
91+
"@react-spectrum/theme-dark": "^3.5.14",
92+
"@react-spectrum/theme-default": "^3.5.14",
93+
"@react-spectrum/theme-light": "^3.4.14",
94+
"@react-spectrum/tooltip": "^3.7.0",
95+
"@react-spectrum/view": "^3.6.14",
96+
"@react-spectrum/well": "^3.4.18",
97+
"@react-stately/collections": "^3.12.0",
98+
"@react-stately/data": "^3.12.0",
99+
"@react-types/shared": "^3.26.0",
100100
"client-only": "^0.0.1"
101101
},
102102
"publishConfig": {

packages/@internationalized/date/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internationalized/date",
3-
"version": "3.5.6",
3+
"version": "3.6.0",
44
"description": "Internationalized calendar, date, and time manipulation utilities",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",

packages/@internationalized/message/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internationalized/message",
3-
"version": "3.1.5",
3+
"version": "3.1.6",
44
"description": "Internationalized message formatting and locale negotiation",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",

packages/@internationalized/number/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internationalized/number",
3-
"version": "3.5.4",
3+
"version": "3.6.0",
44
"description": "Internationalized number formatting and parsing utilities",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",

packages/@internationalized/string-compiler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internationalized/string-compiler",
3-
"version": "3.2.5",
3+
"version": "3.2.6",
44
"description": "Localized string compiler for @internationalized/string",
55
"license": "Apache-2.0",
66
"main": "src/stringCompiler.js",

packages/@internationalized/string/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@internationalized/string",
3-
"version": "3.2.4",
3+
"version": "3.2.5",
44
"description": "Internationalized string formatting and locale negotiation",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",

packages/@react-aria/accordion/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-aria/accordion",
3-
"version": "3.0.0-alpha.35",
3+
"version": "3.0.0-alpha.36",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -22,12 +22,12 @@
2222
"url": "https://github.com/adobe/react-spectrum"
2323
},
2424
"dependencies": {
25-
"@react-aria/button": "^3.10.1",
26-
"@react-aria/selection": "^3.20.1",
27-
"@react-aria/utils": "^3.25.3",
28-
"@react-stately/tree": "^3.8.5",
29-
"@react-types/accordion": "3.0.0-alpha.24",
30-
"@react-types/shared": "^3.25.0",
25+
"@react-aria/button": "^3.11.0",
26+
"@react-aria/selection": "^3.21.0",
27+
"@react-aria/utils": "^3.26.0",
28+
"@react-stately/tree": "^3.8.6",
29+
"@react-types/accordion": "3.0.0-alpha.25",
30+
"@react-types/shared": "^3.26.0",
3131
"@swc/helpers": "^0.5.0"
3232
},
3333
"peerDependencies": {

packages/@react-aria/actiongroup/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-aria/actiongroup",
3-
"version": "3.7.10",
3+
"version": "3.7.11",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",
@@ -22,13 +22,13 @@
2222
"url": "https://github.com/adobe/react-spectrum"
2323
},
2424
"dependencies": {
25-
"@react-aria/focus": "^3.18.4",
26-
"@react-aria/i18n": "^3.12.3",
27-
"@react-aria/interactions": "^3.22.4",
28-
"@react-aria/utils": "^3.25.3",
29-
"@react-stately/list": "^3.11.0",
30-
"@react-types/actiongroup": "^3.4.12",
31-
"@react-types/shared": "^3.25.0",
25+
"@react-aria/focus": "^3.19.0",
26+
"@react-aria/i18n": "^3.12.4",
27+
"@react-aria/interactions": "^3.22.5",
28+
"@react-aria/utils": "^3.26.0",
29+
"@react-stately/list": "^3.11.1",
30+
"@react-types/actiongroup": "^3.4.13",
31+
"@react-types/shared": "^3.26.0",
3232
"@swc/helpers": "^0.5.0"
3333
},
3434
"peerDependencies": {

packages/@react-aria/aria-modal-polyfill/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-aria/aria-modal-polyfill",
3-
"version": "3.7.12",
3+
"version": "3.7.13",
44
"description": "Spectrum UI components in React",
55
"license": "Apache-2.0",
66
"main": "dist/main.js",

0 commit comments

Comments
 (0)