From f1f03296b5920023a7b3ba6d3d171f2612b33956 Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Thu, 28 Aug 2025 18:12:51 -0400 Subject: [PATCH 1/4] fix: Overlay positioning incorrect when animation starts on first render (#8789) * fix: Overlay positioning incorrect when animation starts on first render * fix tests * Revert collection incomplete tracking Doesn't work in React 17 * Use offsetWidth and offsetHeight instead of getBoundingClientRect --- .../collections/src/BaseCollection.ts | 1 - .../collections/src/CollectionBuilder.tsx | 1 - .../@react-aria/collections/src/Document.ts | 5 -- .../overlays/src/calculatePosition.ts | 32 ++++++---- .../overlays/src/useOverlayPosition.ts | 15 +---- .../overlays/test/calculatePosition.test.ts | 3 + .../overlays/test/useOverlayPosition.test.tsx | 7 +++ packages/react-aria-components/src/Menu.tsx | 1 - .../stories/Popover.stories.tsx | 6 +- .../stories/Tooltip.stories.tsx | 6 +- .../react-aria-components/stories/styles.css | 58 ++++++++++++++++--- 11 files changed, 93 insertions(+), 42 deletions(-) diff --git a/packages/@react-aria/collections/src/BaseCollection.ts b/packages/@react-aria/collections/src/BaseCollection.ts index e06d1a360f4..739f85995c2 100644 --- a/packages/@react-aria/collections/src/BaseCollection.ts +++ b/packages/@react-aria/collections/src/BaseCollection.ts @@ -140,7 +140,6 @@ export class BaseCollection implements ICollection> { private lastKey: Key | null = null; private frozen = false; private itemCount: number = 0; - isComplete = true; get size(): number { return this.itemCount; diff --git a/packages/@react-aria/collections/src/CollectionBuilder.tsx b/packages/@react-aria/collections/src/CollectionBuilder.tsx index 742fe8c056e..83b1e834d57 100644 --- a/packages/@react-aria/collections/src/CollectionBuilder.tsx +++ b/packages/@react-aria/collections/src/CollectionBuilder.tsx @@ -116,7 +116,6 @@ function useCollectionDocument>(cr let collection = useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); useLayoutEffect(() => { document.isMounted = true; - document.isInitialRender = false; return () => { // Mark unmounted so we can skip all of the collection updates caused by // React calling removeChild on every item in the collection. diff --git a/packages/@react-aria/collections/src/Document.ts b/packages/@react-aria/collections/src/Document.ts index be0510d8efc..36bdb3491a8 100644 --- a/packages/@react-aria/collections/src/Document.ts +++ b/packages/@react-aria/collections/src/Document.ts @@ -416,7 +416,6 @@ export class Document = BaseCollection> extend nodeId = 0; nodesByProps: WeakMap> = new WeakMap>(); isMounted = true; - isInitialRender = true; private collection: C; private nextCollection: C | null = null; private subscriptions: Set<() => void> = new Set(); @@ -523,10 +522,6 @@ export class Document = BaseCollection> extend this.nextCollection = null; } } - - if (this.isInitialRender) { - this.collection.isComplete = false; - } } queueUpdate(): void { diff --git a/packages/@react-aria/overlays/src/calculatePosition.ts b/packages/@react-aria/overlays/src/calculatePosition.ts index 5d78be36f62..160de612c72 100644 --- a/packages/@react-aria/overlays/src/calculatePosition.ts +++ b/packages/@react-aria/overlays/src/calculatePosition.ts @@ -127,7 +127,7 @@ function getContainerDimensions(containerNode: Element): Dimensions { left = visualViewport.offsetLeft; } } else { - ({width, height, top, left} = getOffset(containerNode)); + ({width, height, top, left} = getOffset(containerNode, false)); scroll.top = containerNode.scrollTop; scroll.left = containerNode.scrollLeft; totalWidth = width; @@ -488,7 +488,7 @@ export function calculatePosition(opts: PositionOpts): PositionResult { let isViewportContainer = container === document.documentElement; const containerPositionStyle = window.getComputedStyle(container).position; let isContainerPositioned = !!containerPositionStyle && containerPositionStyle !== 'static'; - let childOffset: Offset = isViewportContainer ? getOffset(targetNode) : getPosition(targetNode, container); + let childOffset: Offset = isViewportContainer ? getOffset(targetNode, false) : getPosition(targetNode, container, false); if (!isViewportContainer) { let {marginTop, marginLeft} = window.getComputedStyle(targetNode); @@ -496,7 +496,7 @@ export function calculatePosition(opts: PositionOpts): PositionResult { childOffset.left += parseInt(marginLeft, 10) || 0; } - let overlaySize: Offset = getOffset(overlayNode); + let overlaySize: Offset = getOffset(overlayNode, true); let margins = getMargins(overlayNode); overlaySize.width += (margins.left ?? 0) + (margins.right ?? 0); overlaySize.height += (margins.top ?? 0) + (margins.bottom ?? 0); @@ -507,7 +507,7 @@ export function calculatePosition(opts: PositionOpts): PositionResult { // If the container is the HTML element wrapping the body element, the retrieved scrollTop/scrollLeft will be equal to the // body element's scroll. Set the container's scroll values to 0 since the overlay's edge position value in getDelta don't then need to be further offset // by the container scroll since they are essentially the same containing element and thus in the same coordinate system - let containerOffsetWithBoundary: Offset = boundaryElement.tagName === 'BODY' ? getOffset(container) : getPosition(container, boundaryElement); + let containerOffsetWithBoundary: Offset = boundaryElement.tagName === 'BODY' ? getOffset(container, false) : getPosition(container, boundaryElement, false); if (container.tagName === 'HTML' && boundaryElement.tagName === 'BODY') { containerDimensions.scroll.top = 0; containerDimensions.scroll.left = 0; @@ -533,8 +533,21 @@ export function calculatePosition(opts: PositionOpts): PositionResult { ); } -function getOffset(node: Element): Offset { +export function getRect(node: Element, ignoreScale: boolean) { let {top, left, width, height} = node.getBoundingClientRect(); + + // Use offsetWidth and offsetHeight if this is an HTML element, so that + // the size is not affected by scale transforms. + if (ignoreScale && node instanceof node.ownerDocument.defaultView!.HTMLElement) { + width = node.offsetWidth; + height = node.offsetHeight; + } + + return {top, left, width, height}; +} + +function getOffset(node: Element, ignoreScale: boolean): Offset { + let {top, left, width, height} = getRect(node, ignoreScale); let {scrollTop, scrollLeft, clientTop, clientLeft} = document.documentElement; return { top: top + scrollTop - clientTop, @@ -544,15 +557,14 @@ function getOffset(node: Element): Offset { }; } -function getPosition(node: Element, parent: Element): Offset { +function getPosition(node: Element, parent: Element, ignoreScale: boolean): Offset { let style = window.getComputedStyle(node); let offset: Offset; if (style.position === 'fixed') { - let {top, left, width, height} = node.getBoundingClientRect(); - offset = {top, left, width, height}; + offset = getRect(node, ignoreScale); } else { - offset = getOffset(node); - let parentOffset = getOffset(parent); + offset = getOffset(node, ignoreScale); + let parentOffset = getOffset(parent, ignoreScale); let parentStyle = window.getComputedStyle(parent); parentOffset.top += (parseInt(parentStyle.borderTopWidth, 10) || 0) - parent.scrollTop; parentOffset.left += (parseInt(parentStyle.borderLeftWidth, 10) || 0) - parent.scrollLeft; diff --git a/packages/@react-aria/overlays/src/useOverlayPosition.ts b/packages/@react-aria/overlays/src/useOverlayPosition.ts index 24e1b74cad2..59c61a08075 100644 --- a/packages/@react-aria/overlays/src/useOverlayPosition.ts +++ b/packages/@react-aria/overlays/src/useOverlayPosition.ts @@ -10,7 +10,7 @@ * governing permissions and limitations under the License. */ -import {calculatePosition, PositionResult} from './calculatePosition'; +import {calculatePosition, getRect, PositionResult} from './calculatePosition'; import {DOMAttributes, RefObject} from '@react-types/shared'; import {Placement, PlacementAxis, PositionProps} from '@react-types/overlays'; import {useCallback, useEffect, useRef, useState} from 'react'; @@ -149,17 +149,6 @@ export function useOverlayPosition(props: AriaPositionProps): PositionAria { return; } - // Delay updating the position until children are finished rendering (e.g. collections). - if (overlayRef.current.querySelector('[data-react-aria-incomplete]')) { - return; - } - - // Don't update while the overlay is animating. - // Things like scale animations can mess up positioning by affecting the overlay's computed size. - if (overlayRef.current.getAnimations?.().length > 0) { - return; - } - // Determine a scroll anchor based on the focused element. // This stores the offset of the anchor element from the scroll container // so it can be restored after repositioning. This way if the overlay height @@ -200,7 +189,7 @@ export function useOverlayPosition(props: AriaPositionProps): PositionAria { offset, crossOffset, maxHeight, - arrowSize: arrowSize ?? arrowRef?.current?.getBoundingClientRect().width ?? 0, + arrowSize: arrowSize ?? (arrowRef?.current ? getRect(arrowRef.current, true).width : 0), arrowBoundaryOffset }); diff --git a/packages/@react-aria/overlays/test/calculatePosition.test.ts b/packages/@react-aria/overlays/test/calculatePosition.test.ts index ed3bde4dcb6..96907043448 100644 --- a/packages/@react-aria/overlays/test/calculatePosition.test.ts +++ b/packages/@react-aria/overlays/test/calculatePosition.test.ts @@ -66,6 +66,9 @@ function createElementWithDimensions(elemName, dimensions, margins = {}) { bottom: dimensions.bottom || 0 }); + jest.spyOn(elem, 'offsetWidth', 'get').mockImplementation(() => dimensions.width || 0); + jest.spyOn(elem, 'offsetHeight', 'get').mockImplementation(() => dimensions.height || 0); + jest.spyOn(elem, 'scrollWidth', 'get').mockImplementation(() => dimensions.width || 0); jest.spyOn(elem, 'scrollHeight', 'get').mockImplementation(() => dimensions.height || 0); diff --git a/packages/@react-aria/overlays/test/useOverlayPosition.test.tsx b/packages/@react-aria/overlays/test/useOverlayPosition.test.tsx index 4eb382b65d3..c81c34a94c1 100644 --- a/packages/@react-aria/overlays/test/useOverlayPosition.test.tsx +++ b/packages/@react-aria/overlays/test/useOverlayPosition.test.tsx @@ -51,6 +51,13 @@ describe('useOverlayPosition', function () { beforeEach(() => { Object.defineProperty(HTMLElement.prototype, 'clientHeight', {configurable: true, value: 768}); Object.defineProperty(HTMLElement.prototype, 'clientWidth', {configurable: true, value: 500}); + + jest.spyOn(HTMLElement.prototype, 'offsetWidth', 'get').mockImplementation(function (this: HTMLElement) { + return parseInt(this.style.width, 10) || 0; + }); + jest.spyOn(HTMLElement.prototype, 'offsetHeight', 'get').mockImplementation(function (this: HTMLElement) { + return parseInt(this.style.height, 10) || 0; + }); }); it('should position the overlay relative to the trigger', function () { diff --git a/packages/react-aria-components/src/Menu.tsx b/packages/react-aria-components/src/Menu.tsx index 6e4e17c27c5..5798c5d43bc 100644 --- a/packages/react-aria-components/src/Menu.tsx +++ b/packages/react-aria-components/src/Menu.tsx @@ -241,7 +241,6 @@ function MenuInner({props, collection, menuRef: ref}: MenuInne ref={ref as RefObject} slot={props.slot || undefined} data-empty={state.collection.size === 0 || undefined} - data-react-aria-incomplete={!(state.collection as BaseCollection).isComplete || undefined} onScroll={props.onScroll}> ; @@ -41,7 +45,7 @@ export const PopoverExample: PopoverStory = (args) => ( ; @@ -42,7 +46,7 @@ export const TooltipExample: TooltipStory = (args) => ( Date: Thu, 28 Aug 2025 15:22:08 -0700 Subject: [PATCH 2/4] Revert "chore: add dnd hooks to rac (#8743)" (#8793) This reverts commit 8c5b7a011b0d2dda3efb7182b810383c92170639. --- packages/react-aria-components/docs/DropZone.mdx | 2 +- packages/react-aria-components/src/index.ts | 2 -- packages/react-aria-components/stories/Dropzone.stories.tsx | 4 ++-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/react-aria-components/docs/DropZone.mdx b/packages/react-aria-components/docs/DropZone.mdx index aced23a864f..70230d9e4d3 100644 --- a/packages/react-aria-components/docs/DropZone.mdx +++ b/packages/react-aria-components/docs/DropZone.mdx @@ -172,7 +172,7 @@ The `Draggable` component used above is defined below. See [useDrag](useDrag.htm Show code ```tsx example render=false export=true -import {useDrag} from 'react-aria-components'; +import {useDrag} from '@react-aria/dnd'; function Draggable() { let {dragProps, isDragging} = useDrag({ diff --git a/packages/react-aria-components/src/index.ts b/packages/react-aria-components/src/index.ts index 36cf3e61b43..c6844907976 100644 --- a/packages/react-aria-components/src/index.ts +++ b/packages/react-aria-components/src/index.ts @@ -76,7 +76,6 @@ export {ToggleButtonGroup, ToggleButtonGroupContext, ToggleGroupStateContext} fr export {Toolbar, ToolbarContext} from './Toolbar'; export {TooltipTrigger, Tooltip, TooltipTriggerStateContext, TooltipContext} from './Tooltip'; export {TreeLoadMoreItem, Tree, TreeItem, TreeContext, TreeItemContent, TreeStateContext} from './Tree'; -export {useDrag, useDrop} from '@react-aria/dnd'; export {useDragAndDrop} from './useDragAndDrop'; export {DropIndicator, DropIndicatorContext, DragAndDropContext} from './DragAndDrop'; export {Virtualizer} from './Virtualizer'; @@ -140,7 +139,6 @@ export type {ToggleButtonGroupProps, ToggleButtonGroupRenderProps} from './Toggl export type {ToolbarProps, ToolbarRenderProps} from './Toolbar'; export type {TooltipProps, TooltipRenderProps, TooltipTriggerComponentProps} from './Tooltip'; export type {TreeProps, TreeRenderProps, TreeItemProps, TreeItemRenderProps, TreeItemContentProps, TreeItemContentRenderProps, TreeLoadMoreItemProps, TreeLoadMoreItemRenderProps} from './Tree'; -export type {DragOptions, DragResult} from '@react-aria/dnd'; export type {DragAndDropHooks, DragAndDropOptions} from './useDragAndDrop'; export type {DropIndicatorProps, DropIndicatorRenderProps} from './DragAndDrop'; export type {ContextValue, RenderProps, SlotProps, StyleRenderProps} from './utils'; diff --git a/packages/react-aria-components/stories/Dropzone.stories.tsx b/packages/react-aria-components/stories/Dropzone.stories.tsx index 15ee895be47..234dfdc5a64 100644 --- a/packages/react-aria-components/stories/Dropzone.stories.tsx +++ b/packages/react-aria-components/stories/Dropzone.stories.tsx @@ -11,9 +11,9 @@ */ import {action} from '@storybook/addon-actions'; -import {Button, DropZone, FileTrigger, Link, Text, useDrag} from 'react-aria-components'; +import {Button, DropZone, FileTrigger, Link, Text} from 'react-aria-components'; import {classNames} from '@react-spectrum/utils'; -import {FocusRing, mergeProps, useButton, useClipboard} from 'react-aria'; +import {FocusRing, mergeProps, useButton, useClipboard, useDrag} from 'react-aria'; import {Meta, StoryFn, StoryObj} from '@storybook/react'; import React, {useRef} from 'react'; import styles from '../example/index.css'; From ed4815e15c9d1659208fa687e8c3a094879854bb Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Thu, 28 Aug 2025 18:41:04 -0400 Subject: [PATCH 3/4] Publish --- packages/@adobe/react-spectrum/package.json | 64 +++++++++---------- .../@react-aria/autocomplete/package.json | 4 +- packages/@react-aria/collections/package.json | 2 +- packages/@react-aria/combobox/package.json | 6 +- packages/@react-aria/dialog/package.json | 4 +- packages/@react-aria/dnd/package.json | 4 +- packages/@react-aria/menu/package.json | 4 +- packages/@react-aria/overlays/package.json | 2 +- packages/@react-aria/select/package.json | 4 +- .../@react-spectrum/accordion/package.json | 4 +- .../@react-spectrum/actionbar/package.json | 10 +-- .../@react-spectrum/actiongroup/package.json | 10 +-- .../@react-spectrum/autocomplete/package.json | 14 ++-- packages/@react-spectrum/badge/package.json | 4 +- .../@react-spectrum/breadcrumbs/package.json | 6 +- packages/@react-spectrum/button/package.json | 4 +- .../@react-spectrum/calendar/package.json | 4 +- packages/@react-spectrum/card/package.json | 4 +- .../@react-spectrum/checkbox/package.json | 4 +- packages/@react-spectrum/color/package.json | 10 +-- .../@react-spectrum/combobox/package.json | 14 ++-- .../contextualhelp/package.json | 6 +- .../@react-spectrum/datepicker/package.json | 8 +-- packages/@react-spectrum/dialog/package.json | 12 ++-- packages/@react-spectrum/dnd/package.json | 4 +- .../@react-spectrum/dropzone/package.json | 4 +- .../@react-spectrum/filetrigger/package.json | 4 +- packages/@react-spectrum/list/package.json | 8 +-- packages/@react-spectrum/listbox/package.json | 4 +- packages/@react-spectrum/menu/package.json | 12 ++-- .../@react-spectrum/overlays/package.json | 4 +- packages/@react-spectrum/picker/package.json | 12 ++-- .../@react-spectrum/provider/package.json | 4 +- packages/@react-spectrum/s2/package.json | 8 +-- .../@react-spectrum/searchfield/package.json | 4 +- packages/@react-spectrum/table/package.json | 12 ++-- packages/@react-spectrum/tabs/package.json | 6 +- packages/@react-spectrum/tag/package.json | 6 +- packages/@react-spectrum/text/package.json | 4 +- packages/@react-spectrum/toast/package.json | 6 +- packages/@react-spectrum/tooltip/package.json | 6 +- packages/@react-spectrum/tree/package.json | 8 +-- packages/@react-types/list/package.json | 4 +- packages/dev/codemods/package.json | 4 +- packages/dev/docs/package.json | 2 +- packages/react-aria-components/package.json | 12 ++-- packages/react-aria/package.json | 14 ++-- 47 files changed, 180 insertions(+), 180 deletions(-) diff --git a/packages/@adobe/react-spectrum/package.json b/packages/@adobe/react-spectrum/package.json index 006de3843bd..dfaa3a14072 100644 --- a/packages/@adobe/react-spectrum/package.json +++ b/packages/@adobe/react-spectrum/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/react-spectrum", - "version": "3.44.0", + "version": "3.44.1", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,30 +41,30 @@ }, "dependencies": { "@internationalized/string": "^3.2.7", - "@react-aria/collections": "3.0.0-rc.5", + "@react-aria/collections": "3.0.0-rc.6", "@react-aria/i18n": "^3.12.12", "@react-aria/ssr": "^3.9.10", "@react-aria/utils": "^3.30.1", "@react-aria/visually-hidden": "^3.8.27", - "@react-spectrum/accordion": "^3.0.10", - "@react-spectrum/actionbar": "^3.6.11", - "@react-spectrum/actiongroup": "^3.11.1", + "@react-spectrum/accordion": "^3.0.11", + "@react-spectrum/actionbar": "^3.6.12", + "@react-spectrum/actiongroup": "^3.11.2", "@react-spectrum/avatar": "^3.0.25", - "@react-spectrum/badge": "^3.1.27", - "@react-spectrum/breadcrumbs": "^3.9.21", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/badge": "^3.1.28", + "@react-spectrum/breadcrumbs": "^3.9.22", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/buttongroup": "^3.6.25", - "@react-spectrum/calendar": "^3.7.5", - "@react-spectrum/checkbox": "^3.10.1", - "@react-spectrum/color": "^3.1.1", - "@react-spectrum/combobox": "^3.16.1", - "@react-spectrum/contextualhelp": "^3.6.25", - "@react-spectrum/datepicker": "^3.14.5", - "@react-spectrum/dialog": "^3.9.1", + "@react-spectrum/calendar": "^3.7.6", + "@react-spectrum/checkbox": "^3.10.2", + "@react-spectrum/color": "^3.1.2", + "@react-spectrum/combobox": "^3.16.2", + "@react-spectrum/contextualhelp": "^3.6.26", + "@react-spectrum/datepicker": "^3.14.6", + "@react-spectrum/dialog": "^3.9.2", "@react-spectrum/divider": "^3.5.26", - "@react-spectrum/dnd": "^3.6.0", - "@react-spectrum/dropzone": "^3.0.15", - "@react-spectrum/filetrigger": "^3.0.15", + "@react-spectrum/dnd": "^3.6.1", + "@react-spectrum/dropzone": "^3.0.16", + "@react-spectrum/filetrigger": "^3.0.16", "@react-spectrum/form": "^3.7.18", "@react-spectrum/icon": "^3.8.8", "@react-spectrum/illustratedmessage": "^3.5.13", @@ -73,31 +73,31 @@ "@react-spectrum/labeledvalue": "^3.2.6", "@react-spectrum/layout": "^3.6.18", "@react-spectrum/link": "^3.6.21", - "@react-spectrum/list": "^3.10.5", - "@react-spectrum/listbox": "^3.15.5", - "@react-spectrum/menu": "^3.22.5", + "@react-spectrum/list": "^3.10.6", + "@react-spectrum/listbox": "^3.15.6", + "@react-spectrum/menu": "^3.22.6", "@react-spectrum/meter": "^3.5.13", "@react-spectrum/numberfield": "^3.10.1", - "@react-spectrum/overlays": "^5.8.1", - "@react-spectrum/picker": "^3.16.1", + "@react-spectrum/overlays": "^5.8.2", + "@react-spectrum/picker": "^3.16.2", "@react-spectrum/progress": "^3.7.19", - "@react-spectrum/provider": "^3.10.9", + "@react-spectrum/provider": "^3.10.10", "@react-spectrum/radio": "^3.7.20", - "@react-spectrum/searchfield": "^3.8.20", + "@react-spectrum/searchfield": "^3.8.21", "@react-spectrum/slider": "^3.8.1", "@react-spectrum/statuslight": "^3.5.25", "@react-spectrum/switch": "^3.6.5", - "@react-spectrum/table": "^3.17.5", - "@react-spectrum/tabs": "^3.8.24", - "@react-spectrum/tag": "^3.3.4", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/table": "^3.17.6", + "@react-spectrum/tabs": "^3.8.25", + "@react-spectrum/tag": "^3.3.5", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/textfield": "^3.14.1", "@react-spectrum/theme-dark": "^3.5.21", "@react-spectrum/theme-default": "^3.5.21", "@react-spectrum/theme-light": "^3.4.21", - "@react-spectrum/toast": "^3.1.1", - "@react-spectrum/tooltip": "^3.7.9", - "@react-spectrum/tree": "^3.1.5", + "@react-spectrum/toast": "^3.1.2", + "@react-spectrum/tooltip": "^3.7.10", + "@react-spectrum/tree": "^3.1.6", "@react-spectrum/view": "^3.6.22", "@react-spectrum/well": "^3.4.26", "@react-stately/collections": "^3.12.7", diff --git a/packages/@react-aria/autocomplete/package.json b/packages/@react-aria/autocomplete/package.json index 0e9cfe1a205..2f6a226897a 100644 --- a/packages/@react-aria/autocomplete/package.json +++ b/packages/@react-aria/autocomplete/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/autocomplete", - "version": "3.0.0-rc.0", + "version": "3.0.0-rc.1", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -26,7 +26,7 @@ "url": "https://github.com/adobe/react-spectrum" }, "dependencies": { - "@react-aria/combobox": "^3.13.1", + "@react-aria/combobox": "^3.13.2", "@react-aria/focus": "^3.21.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", diff --git a/packages/@react-aria/collections/package.json b/packages/@react-aria/collections/package.json index 7ef4701c1e6..ec3d08a5780 100644 --- a/packages/@react-aria/collections/package.json +++ b/packages/@react-aria/collections/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/collections", - "version": "3.0.0-rc.5", + "version": "3.0.0-rc.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", diff --git a/packages/@react-aria/combobox/package.json b/packages/@react-aria/combobox/package.json index 2857d35e0b7..ccf1f67b7fa 100644 --- a/packages/@react-aria/combobox/package.json +++ b/packages/@react-aria/combobox/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/combobox", - "version": "3.13.1", + "version": "3.13.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -30,8 +30,8 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/listbox": "^3.14.8", "@react-aria/live-announcer": "^3.4.4", - "@react-aria/menu": "^3.19.1", - "@react-aria/overlays": "^3.29.0", + "@react-aria/menu": "^3.19.2", + "@react-aria/overlays": "^3.29.1", "@react-aria/selection": "^3.25.1", "@react-aria/textfield": "^3.18.1", "@react-aria/utils": "^3.30.1", diff --git a/packages/@react-aria/dialog/package.json b/packages/@react-aria/dialog/package.json index 656851dbcc2..e5c91e48548 100644 --- a/packages/@react-aria/dialog/package.json +++ b/packages/@react-aria/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/dialog", - "version": "3.5.29", + "version": "3.5.30", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -31,7 +31,7 @@ }, "dependencies": { "@react-aria/interactions": "^3.25.5", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", "@react-types/dialog": "^3.5.21", "@react-types/shared": "^3.32.0", diff --git a/packages/@react-aria/dnd/package.json b/packages/@react-aria/dnd/package.json index 3730d312fd8..9c98128e820 100644 --- a/packages/@react-aria/dnd/package.json +++ b/packages/@react-aria/dnd/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/dnd", - "version": "3.11.1", + "version": "3.11.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -30,7 +30,7 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/live-announcer": "^3.4.4", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", "@react-stately/collections": "^3.12.7", "@react-stately/dnd": "^3.7.0", diff --git a/packages/@react-aria/menu/package.json b/packages/@react-aria/menu/package.json index b1360b8b9a0..d59691a978c 100644 --- a/packages/@react-aria/menu/package.json +++ b/packages/@react-aria/menu/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/menu", - "version": "3.19.1", + "version": "3.19.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -29,7 +29,7 @@ "@react-aria/focus": "^3.21.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/selection": "^3.25.1", "@react-aria/utils": "^3.30.1", "@react-stately/collections": "^3.12.7", diff --git a/packages/@react-aria/overlays/package.json b/packages/@react-aria/overlays/package.json index 4273170b7ca..505ab3483d0 100644 --- a/packages/@react-aria/overlays/package.json +++ b/packages/@react-aria/overlays/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/overlays", - "version": "3.29.0", + "version": "3.29.1", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", diff --git a/packages/@react-aria/select/package.json b/packages/@react-aria/select/package.json index 162c60d2766..9f87f5f45e1 100644 --- a/packages/@react-aria/select/package.json +++ b/packages/@react-aria/select/package.json @@ -1,6 +1,6 @@ { "name": "@react-aria/select", - "version": "3.16.1", + "version": "3.16.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -31,7 +31,7 @@ "@react-aria/interactions": "^3.25.5", "@react-aria/label": "^3.7.21", "@react-aria/listbox": "^3.14.8", - "@react-aria/menu": "^3.19.1", + "@react-aria/menu": "^3.19.2", "@react-aria/selection": "^3.25.1", "@react-aria/utils": "^3.30.1", "@react-aria/visually-hidden": "^3.8.27", diff --git a/packages/@react-spectrum/accordion/package.json b/packages/@react-spectrum/accordion/package.json index cd49b51dcd0..92f95a69a32 100644 --- a/packages/@react-spectrum/accordion/package.json +++ b/packages/@react-spectrum/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/accordion", - "version": "3.0.10", + "version": "3.0.11", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,7 +45,7 @@ "@react-types/shared": "^3.32.0", "@spectrum-icons/ui": "^3.6.19", "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "devDependencies": { "@adobe/spectrum-css-temp": "3.0.0-alpha.1" diff --git a/packages/@react-spectrum/actionbar/package.json b/packages/@react-spectrum/actionbar/package.json index 56cb07db5e8..4594a083306 100644 --- a/packages/@react-spectrum/actionbar/package.json +++ b/packages/@react-spectrum/actionbar/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/actionbar", - "version": "3.6.11", + "version": "3.6.12", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,10 +45,10 @@ "@react-aria/interactions": "^3.25.5", "@react-aria/live-announcer": "^3.4.4", "@react-aria/utils": "^3.30.1", - "@react-spectrum/actiongroup": "^3.11.1", - "@react-spectrum/button": "^3.17.1", - "@react-spectrum/overlays": "^5.8.1", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/actiongroup": "^3.11.2", + "@react-spectrum/button": "^3.17.2", + "@react-spectrum/overlays": "^5.8.2", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-types/actionbar": "^3.1.18", diff --git a/packages/@react-spectrum/actiongroup/package.json b/packages/@react-spectrum/actiongroup/package.json index df1912879f5..ee638ef7d5d 100644 --- a/packages/@react-spectrum/actiongroup/package.json +++ b/packages/@react-spectrum/actiongroup/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/actiongroup", - "version": "3.11.1", + "version": "3.11.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,10 +45,10 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", - "@react-spectrum/menu": "^3.22.5", - "@react-spectrum/text": "^3.5.19", - "@react-spectrum/tooltip": "^3.7.9", + "@react-spectrum/button": "^3.17.2", + "@react-spectrum/menu": "^3.22.6", + "@react-spectrum/text": "^3.5.20", + "@react-spectrum/tooltip": "^3.7.10", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/list": "^3.13.0", diff --git a/packages/@react-spectrum/autocomplete/package.json b/packages/@react-spectrum/autocomplete/package.json index b6605841db0..7557258490c 100644 --- a/packages/@react-spectrum/autocomplete/package.json +++ b/packages/@react-spectrum/autocomplete/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/autocomplete", - "version": "3.0.0-alpha.47", + "version": "3.0.0-alpha.48", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -40,21 +40,21 @@ "url": "https://github.com/adobe/react-spectrum" }, "dependencies": { - "@react-aria/autocomplete": "3.0.0-rc.0", + "@react-aria/autocomplete": "3.0.0-rc.1", "@react-aria/button": "^3.14.1", - "@react-aria/dialog": "^3.5.29", + "@react-aria/dialog": "^3.5.30", "@react-aria/focus": "^3.21.1", "@react-aria/form": "^3.1.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/label": "^3.7.21", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/label": "^3.16.18", - "@react-spectrum/listbox": "^3.15.5", - "@react-spectrum/overlays": "^5.8.1", + "@react-spectrum/listbox": "^3.15.6", + "@react-spectrum/overlays": "^5.8.2", "@react-spectrum/progress": "^3.7.19", "@react-spectrum/textfield": "^3.14.1", "@react-spectrum/utils": "^3.12.8", diff --git a/packages/@react-spectrum/badge/package.json b/packages/@react-spectrum/badge/package.json index 57ef560bd95..d6f43d183e1 100644 --- a/packages/@react-spectrum/badge/package.json +++ b/packages/@react-spectrum/badge/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/badge", - "version": "3.1.27", + "version": "3.1.28", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@react-aria/utils": "^3.30.1", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-types/badge": "^3.1.20", "@react-types/shared": "^3.32.0", diff --git a/packages/@react-spectrum/breadcrumbs/package.json b/packages/@react-spectrum/breadcrumbs/package.json index 78677fdffc3..cfa69417296 100644 --- a/packages/@react-spectrum/breadcrumbs/package.json +++ b/packages/@react-spectrum/breadcrumbs/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/breadcrumbs", - "version": "3.9.21", + "version": "3.9.22", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,8 +45,8 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", - "@react-spectrum/menu": "^3.22.5", + "@react-spectrum/button": "^3.17.2", + "@react-spectrum/menu": "^3.22.6", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-types/breadcrumbs": "^3.7.16", diff --git a/packages/@react-spectrum/button/package.json b/packages/@react-spectrum/button/package.json index fe91ae2022b..1d49332852e 100644 --- a/packages/@react-spectrum/button/package.json +++ b/packages/@react-spectrum/button/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/button", - "version": "3.17.1", + "version": "3.17.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -46,7 +46,7 @@ "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", "@react-spectrum/progress": "^3.7.19", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/toggle": "^3.9.1", "@react-types/button": "^3.14.0", diff --git a/packages/@react-spectrum/calendar/package.json b/packages/@react-spectrum/calendar/package.json index 3f2a0123081..9e8cacd7418 100644 --- a/packages/@react-spectrum/calendar/package.json +++ b/packages/@react-spectrum/calendar/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/calendar", - "version": "3.7.5", + "version": "3.7.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -47,7 +47,7 @@ "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", "@react-aria/visually-hidden": "^3.8.27", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/label": "^3.16.18", "@react-spectrum/utils": "^3.12.8", "@react-stately/calendar": "^3.8.4", diff --git a/packages/@react-spectrum/card/package.json b/packages/@react-spectrum/card/package.json index f63813302e2..b5374f757c7 100644 --- a/packages/@react-spectrum/card/package.json +++ b/packages/@react-spectrum/card/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/card", - "version": "3.0.0-alpha.47", + "version": "3.0.0-alpha.48", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -46,7 +46,7 @@ "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", "@react-aria/virtualizer": "^4.1.9", - "@react-spectrum/checkbox": "^3.10.1", + "@react-spectrum/checkbox": "^3.10.2", "@react-spectrum/progress": "^3.7.19", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", diff --git a/packages/@react-spectrum/checkbox/package.json b/packages/@react-spectrum/checkbox/package.json index 2c09a2e8eff..f9345f0834c 100644 --- a/packages/@react-spectrum/checkbox/package.json +++ b/packages/@react-spectrum/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/checkbox", - "version": "3.10.1", + "version": "3.10.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -52,7 +52,7 @@ "@react-types/shared": "^3.32.0", "@spectrum-icons/ui": "^3.6.19", "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "devDependencies": { "@adobe/spectrum-css-temp": "3.0.0-alpha.1", diff --git a/packages/@react-spectrum/color/package.json b/packages/@react-spectrum/color/package.json index 9147c651b44..3769b7c52e6 100644 --- a/packages/@react-spectrum/color/package.json +++ b/packages/@react-spectrum/color/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/color", - "version": "3.1.1", + "version": "3.1.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,11 +45,11 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", - "@react-spectrum/dialog": "^3.9.1", + "@react-spectrum/dialog": "^3.9.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/label": "^3.16.18", - "@react-spectrum/overlays": "^5.8.1", - "@react-spectrum/picker": "^3.16.1", + "@react-spectrum/overlays": "^5.8.2", + "@react-spectrum/picker": "^3.16.2", "@react-spectrum/textfield": "^3.14.1", "@react-spectrum/utils": "^3.12.8", "@react-spectrum/view": "^3.6.22", @@ -58,7 +58,7 @@ "@react-types/shared": "^3.32.0", "@react-types/textfield": "^3.12.5", "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "devDependencies": { "@adobe/spectrum-css-temp": "3.0.0-alpha.1", diff --git a/packages/@react-spectrum/combobox/package.json b/packages/@react-spectrum/combobox/package.json index 47574f1342c..dedeb11e2a2 100644 --- a/packages/@react-spectrum/combobox/package.json +++ b/packages/@react-spectrum/combobox/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/combobox", - "version": "3.16.1", + "version": "3.16.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,20 +41,20 @@ }, "dependencies": { "@react-aria/button": "^3.14.1", - "@react-aria/combobox": "^3.13.1", - "@react-aria/dialog": "^3.5.29", + "@react-aria/combobox": "^3.13.2", + "@react-aria/dialog": "^3.5.30", "@react-aria/focus": "^3.21.1", "@react-aria/form": "^3.1.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/label": "^3.7.21", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/label": "^3.16.18", - "@react-spectrum/listbox": "^3.15.5", - "@react-spectrum/overlays": "^5.8.1", + "@react-spectrum/listbox": "^3.15.6", + "@react-spectrum/overlays": "^5.8.2", "@react-spectrum/progress": "^3.7.19", "@react-spectrum/textfield": "^3.14.1", "@react-spectrum/utils": "^3.12.8", diff --git a/packages/@react-spectrum/contextualhelp/package.json b/packages/@react-spectrum/contextualhelp/package.json index 8e2a07eff1c..b8d2c657556 100644 --- a/packages/@react-spectrum/contextualhelp/package.json +++ b/packages/@react-spectrum/contextualhelp/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/contextualhelp", - "version": "3.6.25", + "version": "3.6.26", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -42,8 +42,8 @@ "dependencies": { "@react-aria/i18n": "^3.12.12", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", - "@react-spectrum/dialog": "^3.9.1", + "@react-spectrum/button": "^3.17.2", + "@react-spectrum/dialog": "^3.9.2", "@react-spectrum/utils": "^3.12.8", "@react-types/contextualhelp": "^3.2.21", "@react-types/shared": "^3.32.0", diff --git a/packages/@react-spectrum/datepicker/package.json b/packages/@react-spectrum/datepicker/package.json index f3c1f7b77f9..23ae807d4ca 100644 --- a/packages/@react-spectrum/datepicker/package.json +++ b/packages/@react-spectrum/datepicker/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/datepicker", - "version": "3.14.5", + "version": "3.14.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -46,9 +46,9 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", - "@react-spectrum/calendar": "^3.7.5", - "@react-spectrum/dialog": "^3.9.1", + "@react-spectrum/button": "^3.17.2", + "@react-spectrum/calendar": "^3.7.6", + "@react-spectrum/dialog": "^3.9.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/label": "^3.16.18", "@react-spectrum/layout": "^3.6.18", diff --git a/packages/@react-spectrum/dialog/package.json b/packages/@react-spectrum/dialog/package.json index 607cdbace75..b700eed1c10 100644 --- a/packages/@react-spectrum/dialog/package.json +++ b/packages/@react-spectrum/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/dialog", - "version": "3.9.1", + "version": "3.9.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -40,17 +40,17 @@ "url": "https://github.com/adobe/react-spectrum" }, "dependencies": { - "@react-aria/dialog": "^3.5.29", + "@react-aria/dialog": "^3.5.30", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/buttongroup": "^3.6.25", "@react-spectrum/divider": "^3.5.26", "@react-spectrum/layout": "^3.6.18", - "@react-spectrum/overlays": "^5.8.1", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/overlays": "^5.8.2", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-spectrum/view": "^3.6.22", "@react-stately/overlays": "^3.6.19", diff --git a/packages/@react-spectrum/dnd/package.json b/packages/@react-spectrum/dnd/package.json index dda8499ca8f..c3ea5c9c352 100644 --- a/packages/@react-spectrum/dnd/package.json +++ b/packages/@react-spectrum/dnd/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/dnd", - "version": "3.6.0", + "version": "3.6.1", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -40,7 +40,7 @@ "url": "https://github.com/adobe/react-spectrum" }, "dependencies": { - "@react-aria/dnd": "^3.11.1", + "@react-aria/dnd": "^3.11.2", "@react-stately/dnd": "^3.7.0", "@react-types/shared": "^3.32.0", "@swc/helpers": "^0.5.0" diff --git a/packages/@react-spectrum/dropzone/package.json b/packages/@react-spectrum/dropzone/package.json index 27497405aff..6a0117d7049 100644 --- a/packages/@react-spectrum/dropzone/package.json +++ b/packages/@react-spectrum/dropzone/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/dropzone", - "version": "3.0.15", + "version": "3.0.16", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,7 +45,7 @@ "@react-spectrum/utils": "^3.12.8", "@react-types/shared": "^3.32.0", "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "devDependencies": { "@adobe/spectrum-css-temp": "3.0.0-alpha.1", diff --git a/packages/@react-spectrum/filetrigger/package.json b/packages/@react-spectrum/filetrigger/package.json index b9bf80ddc31..3f3486155b3 100644 --- a/packages/@react-spectrum/filetrigger/package.json +++ b/packages/@react-spectrum/filetrigger/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/filetrigger", - "version": "3.0.15", + "version": "3.0.16", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "peerDependencies": { "@react-spectrum/provider": "^3.0.0", diff --git a/packages/@react-spectrum/list/package.json b/packages/@react-spectrum/list/package.json index 3d8bb64c385..35919b0a77c 100644 --- a/packages/@react-spectrum/list/package.json +++ b/packages/@react-spectrum/list/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/list", - "version": "3.10.5", + "version": "3.10.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -49,11 +49,11 @@ "@react-aria/utils": "^3.30.1", "@react-aria/virtualizer": "^4.1.9", "@react-aria/visually-hidden": "^3.8.27", - "@react-spectrum/checkbox": "^3.10.1", - "@react-spectrum/dnd": "^3.6.0", + "@react-spectrum/checkbox": "^3.10.2", + "@react-spectrum/dnd": "^3.6.1", "@react-spectrum/layout": "^3.6.18", "@react-spectrum/progress": "^3.7.19", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/layout": "^4.5.0", diff --git a/packages/@react-spectrum/listbox/package.json b/packages/@react-spectrum/listbox/package.json index 95d4db60b29..8e3481f7885 100644 --- a/packages/@react-spectrum/listbox/package.json +++ b/packages/@react-spectrum/listbox/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/listbox", - "version": "3.15.5", + "version": "3.15.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -48,7 +48,7 @@ "@react-aria/virtualizer": "^4.1.9", "@react-spectrum/layout": "^3.6.18", "@react-spectrum/progress": "^3.7.19", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/layout": "^4.5.0", diff --git a/packages/@react-spectrum/menu/package.json b/packages/@react-spectrum/menu/package.json index 3ca4c80680d..8b7bd82cb88 100644 --- a/packages/@react-spectrum/menu/package.json +++ b/packages/@react-spectrum/menu/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/menu", - "version": "3.22.5", + "version": "3.22.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -43,14 +43,14 @@ "@react-aria/focus": "^3.21.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", - "@react-aria/menu": "^3.19.1", - "@react-aria/overlays": "^3.29.0", + "@react-aria/menu": "^3.19.2", + "@react-aria/overlays": "^3.29.1", "@react-aria/separator": "^3.4.12", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/layout": "^3.6.18", - "@react-spectrum/overlays": "^5.8.1", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/overlays": "^5.8.2", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/menu": "^3.9.7", diff --git a/packages/@react-spectrum/overlays/package.json b/packages/@react-spectrum/overlays/package.json index 5ed3ffd5f9e..2b6d1a0483a 100644 --- a/packages/@react-spectrum/overlays/package.json +++ b/packages/@react-spectrum/overlays/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/overlays", - "version": "5.8.1", + "version": "5.8.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@react-aria/interactions": "^3.25.5", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", "@react-spectrum/utils": "^3.12.8", "@react-stately/overlays": "^3.6.19", diff --git a/packages/@react-spectrum/picker/package.json b/packages/@react-spectrum/picker/package.json index df727d752f6..aba39ce0fa1 100644 --- a/packages/@react-spectrum/picker/package.json +++ b/packages/@react-spectrum/picker/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/picker", - "version": "3.16.1", + "version": "3.16.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -42,15 +42,15 @@ "dependencies": { "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", - "@react-aria/select": "^3.16.1", + "@react-aria/select": "^3.16.2", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/label": "^3.16.18", - "@react-spectrum/listbox": "^3.15.5", - "@react-spectrum/overlays": "^5.8.1", + "@react-spectrum/listbox": "^3.15.6", + "@react-spectrum/overlays": "^5.8.2", "@react-spectrum/progress": "^3.7.19", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/select": "^3.7.1", diff --git a/packages/@react-spectrum/provider/package.json b/packages/@react-spectrum/provider/package.json index 9f5c664e952..fa33e1b1229 100644 --- a/packages/@react-spectrum/provider/package.json +++ b/packages/@react-spectrum/provider/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/provider", - "version": "3.10.9", + "version": "3.10.10", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@react-aria/i18n": "^3.12.12", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/utils": "^3.30.1", "@react-spectrum/utils": "^3.12.8", "@react-types/provider": "^3.8.12", diff --git a/packages/@react-spectrum/s2/package.json b/packages/@react-spectrum/s2/package.json index fe0c97f58d5..16c8a2da1f4 100644 --- a/packages/@react-spectrum/s2/package.json +++ b/packages/@react-spectrum/s2/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/s2", - "version": "0.11.0", + "version": "0.11.1", "description": "Spectrum 2 UI components in React", "license": "Apache-2.0", "repository": { @@ -153,7 +153,7 @@ "@internationalized/date": "^3.9.0", "@internationalized/number": "^3.6.5", "@react-aria/calendar": "^3.9.1", - "@react-aria/collections": "3.0.0-rc.5", + "@react-aria/collections": "3.0.0-rc.6", "@react-aria/focus": "^3.21.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", @@ -169,8 +169,8 @@ "@react-types/table": "^3.13.3", "@react-types/textfield": "^3.12.5", "csstype": "^3.0.2", - "react-aria": "^3.43.0", - "react-aria-components": "^1.12.0", + "react-aria": "^3.43.1", + "react-aria-components": "^1.12.1", "react-stately": "^3.41.0" }, "peerDependencies": { diff --git a/packages/@react-spectrum/searchfield/package.json b/packages/@react-spectrum/searchfield/package.json index e91ca51a0e3..8b3a0026692 100644 --- a/packages/@react-spectrum/searchfield/package.json +++ b/packages/@react-spectrum/searchfield/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/searchfield", - "version": "3.8.20", + "version": "3.8.21", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,7 +41,7 @@ }, "dependencies": { "@react-aria/searchfield": "^3.8.8", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/textfield": "^3.14.1", "@react-spectrum/utils": "^3.12.8", diff --git a/packages/@react-spectrum/table/package.json b/packages/@react-spectrum/table/package.json index 1caa614e021..9761579e33d 100644 --- a/packages/@react-spectrum/table/package.json +++ b/packages/@react-spectrum/table/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/table", - "version": "3.17.5", + "version": "3.17.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -44,18 +44,18 @@ "@react-aria/focus": "^3.21.1", "@react-aria/i18n": "^3.12.12", "@react-aria/interactions": "^3.25.5", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/selection": "^3.25.1", "@react-aria/table": "^3.17.7", "@react-aria/utils": "^3.30.1", "@react-aria/virtualizer": "^4.1.9", "@react-aria/visually-hidden": "^3.8.27", - "@react-spectrum/checkbox": "^3.10.1", - "@react-spectrum/dnd": "^3.6.0", + "@react-spectrum/checkbox": "^3.10.2", + "@react-spectrum/dnd": "^3.6.1", "@react-spectrum/layout": "^3.6.18", - "@react-spectrum/menu": "^3.22.5", + "@react-spectrum/menu": "^3.22.6", "@react-spectrum/progress": "^3.7.19", - "@react-spectrum/tooltip": "^3.7.9", + "@react-spectrum/tooltip": "^3.7.10", "@react-spectrum/utils": "^3.12.8", "@react-stately/flags": "^3.1.2", "@react-stately/layout": "^4.5.0", diff --git a/packages/@react-spectrum/tabs/package.json b/packages/@react-spectrum/tabs/package.json index 67c58136bad..4109d044d27 100644 --- a/packages/@react-spectrum/tabs/package.json +++ b/packages/@react-spectrum/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/tabs", - "version": "3.8.24", + "version": "3.8.25", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,8 +45,8 @@ "@react-aria/interactions": "^3.25.5", "@react-aria/tabs": "^3.10.7", "@react-aria/utils": "^3.30.1", - "@react-spectrum/picker": "^3.16.1", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/picker": "^3.16.2", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/list": "^3.13.0", diff --git a/packages/@react-spectrum/tag/package.json b/packages/@react-spectrum/tag/package.json index bd2f2532065..902dc073adb 100644 --- a/packages/@react-spectrum/tag/package.json +++ b/packages/@react-spectrum/tag/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/tag", - "version": "3.3.4", + "version": "3.3.5", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -46,10 +46,10 @@ "@react-aria/selection": "^3.25.1", "@react-aria/tag": "^3.7.1", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/form": "^3.7.18", "@react-spectrum/label": "^3.16.18", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-stately/collections": "^3.12.7", "@react-stately/list": "^3.13.0", diff --git a/packages/@react-spectrum/text/package.json b/packages/@react-spectrum/text/package.json index f549026ca23..ebc5f883175 100644 --- a/packages/@react-spectrum/text/package.json +++ b/packages/@react-spectrum/text/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/text", - "version": "3.5.19", + "version": "3.5.20", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -45,7 +45,7 @@ "@react-types/shared": "^3.32.0", "@react-types/text": "^3.3.20", "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "devDependencies": { "@adobe/spectrum-css-temp": "3.0.0-alpha.1", diff --git a/packages/@react-spectrum/toast/package.json b/packages/@react-spectrum/toast/package.json index ab986c475f8..67c5f982a49 100644 --- a/packages/@react-spectrum/toast/package.json +++ b/packages/@react-spectrum/toast/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/toast", - "version": "3.1.1", + "version": "3.1.2", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -42,10 +42,10 @@ "dependencies": { "@react-aria/focus": "^3.21.1", "@react-aria/i18n": "^3.12.12", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/toast": "^3.0.7", "@react-aria/utils": "^3.30.1", - "@react-spectrum/button": "^3.17.1", + "@react-spectrum/button": "^3.17.2", "@react-spectrum/utils": "^3.12.8", "@react-stately/toast": "^3.1.2", "@react-types/shared": "^3.32.0", diff --git a/packages/@react-spectrum/tooltip/package.json b/packages/@react-spectrum/tooltip/package.json index d2780d79003..339d6f4475d 100644 --- a/packages/@react-spectrum/tooltip/package.json +++ b/packages/@react-spectrum/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/tooltip", - "version": "3.7.9", + "version": "3.7.10", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -41,10 +41,10 @@ }, "dependencies": { "@react-aria/focus": "^3.21.1", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/tooltip": "^3.8.7", "@react-aria/utils": "^3.30.1", - "@react-spectrum/overlays": "^5.8.1", + "@react-spectrum/overlays": "^5.8.2", "@react-spectrum/utils": "^3.12.8", "@react-stately/tooltip": "^3.5.7", "@react-types/overlays": "^3.9.1", diff --git a/packages/@react-spectrum/tree/package.json b/packages/@react-spectrum/tree/package.json index a4d1374dd52..832b06a3ce2 100644 --- a/packages/@react-spectrum/tree/package.json +++ b/packages/@react-spectrum/tree/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/tree", - "version": "3.1.5", + "version": "3.1.6", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -44,13 +44,13 @@ "@react-aria/i18n": "^3.12.12", "@react-aria/tree": "^3.1.3", "@react-aria/utils": "^3.30.1", - "@react-spectrum/checkbox": "^3.10.1", - "@react-spectrum/text": "^3.5.19", + "@react-spectrum/checkbox": "^3.10.2", + "@react-spectrum/text": "^3.5.20", "@react-spectrum/utils": "^3.12.8", "@react-types/shared": "^3.32.0", "@spectrum-icons/ui": "^3.6.19", "@swc/helpers": "^0.5.0", - "react-aria-components": "^1.12.0" + "react-aria-components": "^1.12.1" }, "peerDependencies": { "@react-spectrum/provider": "^3.0.0", diff --git a/packages/@react-types/list/package.json b/packages/@react-types/list/package.json index e6cdc51cbbd..c4d25c0a80f 100644 --- a/packages/@react-types/list/package.json +++ b/packages/@react-types/list/package.json @@ -1,6 +1,6 @@ { "name": "@react-types/list", - "version": "3.2.31", + "version": "3.2.32", "description": "Spectrum UI components in React", "license": "Apache-2.0", "types": "src/index.d.ts", @@ -10,7 +10,7 @@ }, "dependencies": { "@react-aria/gridlist": "^3.14.0", - "@react-spectrum/list": "^3.10.5" + "@react-spectrum/list": "^3.10.6" }, "peerDependencies": { "@react-spectrum/provider": "^3.0.0", diff --git a/packages/dev/codemods/package.json b/packages/dev/codemods/package.json index cada67f7c0d..99e15748a2f 100644 --- a/packages/dev/codemods/package.json +++ b/packages/dev/codemods/package.json @@ -1,6 +1,6 @@ { "name": "@react-spectrum/codemods", - "version": "0.7.2", + "version": "0.7.3", "main": "dist/index.js", "source": "src/index.ts", "bin": "dist/index.js", @@ -24,7 +24,7 @@ "@babel/parser": "^7.24.5", "@babel/traverse": "^7.24.5", "@babel/types": "^7.24.5", - "@react-spectrum/s2": "^0.11.0", + "@react-spectrum/s2": "^0.11.1", "@react-types/shared": "^3.32.0", "@types/node": "^22", "boxen": "^5.1.2", diff --git a/packages/dev/docs/package.json b/packages/dev/docs/package.json index 902a09863a8..3f4f22a5532 100644 --- a/packages/dev/docs/package.json +++ b/packages/dev/docs/package.json @@ -9,7 +9,7 @@ "@react-aria/aria-modal-polyfill": "^3.1.0", "@react-aria/interactions": "^3.1.0", "@react-aria/visually-hidden": "^3.1.0", - "@react-spectrum/autocomplete": "3.0.0-alpha.47", + "@react-spectrum/autocomplete": "3.0.0-alpha.48", "@react-spectrum/breadcrumbs": "^3.1.0", "@react-spectrum/button": "^3.1.0", "@react-spectrum/dialog": "^3.1.0", diff --git a/packages/react-aria-components/package.json b/packages/react-aria-components/package.json index 3b2642a7000..171b8a2c7b8 100644 --- a/packages/react-aria-components/package.json +++ b/packages/react-aria-components/package.json @@ -1,6 +1,6 @@ { "name": "react-aria-components", - "version": "1.12.0", + "version": "1.12.1", "description": "A library of styleable components built using React Aria", "license": "Apache-2.0", "main": "dist/main.js", @@ -43,13 +43,13 @@ "dependencies": { "@internationalized/date": "^3.9.0", "@internationalized/string": "^3.2.7", - "@react-aria/autocomplete": "3.0.0-rc.0", - "@react-aria/collections": "3.0.0-rc.5", - "@react-aria/dnd": "^3.11.1", + "@react-aria/autocomplete": "3.0.0-rc.1", + "@react-aria/collections": "3.0.0-rc.6", + "@react-aria/dnd": "^3.11.2", "@react-aria/focus": "^3.21.1", "@react-aria/interactions": "^3.25.5", "@react-aria/live-announcer": "^3.4.4", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/ssr": "^3.9.10", "@react-aria/textfield": "^3.18.1", "@react-aria/toolbar": "3.0.0-beta.20", @@ -67,7 +67,7 @@ "@react-types/table": "^3.13.3", "@swc/helpers": "^0.5.0", "client-only": "^0.0.1", - "react-aria": "^3.43.0", + "react-aria": "^3.43.1", "react-stately": "^3.41.0", "use-sync-external-store": "^1.4.0" }, diff --git a/packages/react-aria/package.json b/packages/react-aria/package.json index 32c43b08731..f9e16c62f63 100644 --- a/packages/react-aria/package.json +++ b/packages/react-aria/package.json @@ -1,6 +1,6 @@ { "name": "react-aria", - "version": "3.43.0", + "version": "3.43.1", "description": "Spectrum UI components in React", "license": "Apache-2.0", "main": "dist/main.js", @@ -47,11 +47,11 @@ "@react-aria/calendar": "^3.9.1", "@react-aria/checkbox": "^3.16.1", "@react-aria/color": "^3.1.1", - "@react-aria/combobox": "^3.13.1", + "@react-aria/combobox": "^3.13.2", "@react-aria/datepicker": "^3.15.1", - "@react-aria/dialog": "^3.5.29", + "@react-aria/dialog": "^3.5.30", "@react-aria/disclosure": "^3.0.8", - "@react-aria/dnd": "^3.11.1", + "@react-aria/dnd": "^3.11.2", "@react-aria/focus": "^3.21.1", "@react-aria/gridlist": "^3.14.0", "@react-aria/i18n": "^3.12.12", @@ -60,14 +60,14 @@ "@react-aria/landmark": "^3.0.6", "@react-aria/link": "^3.8.5", "@react-aria/listbox": "^3.14.8", - "@react-aria/menu": "^3.19.1", + "@react-aria/menu": "^3.19.2", "@react-aria/meter": "^3.4.26", "@react-aria/numberfield": "^3.12.1", - "@react-aria/overlays": "^3.29.0", + "@react-aria/overlays": "^3.29.1", "@react-aria/progress": "^3.4.26", "@react-aria/radio": "^3.12.1", "@react-aria/searchfield": "^3.8.8", - "@react-aria/select": "^3.16.1", + "@react-aria/select": "^3.16.2", "@react-aria/selection": "^3.25.1", "@react-aria/separator": "^3.4.12", "@react-aria/slider": "^3.8.1", From 6a86b5cdde7c087deacd20d8daba62d5a3f1221d Mon Sep 17 00:00:00 2001 From: Daniel Lu Date: Thu, 28 Aug 2025 16:47:54 -0700 Subject: [PATCH 4/4] chore: Revert "Revert "chore: add dnd hooks to rac (#8743)" (#8793)" (#8795) * Revert "Revert "chore: add dnd hooks to rac (#8743)" (#8793)" This reverts commit 47b4d873b38d516376e5564d8452750b9482f3e4. * update yarn lock * update snapshots * sigh auto update snapshot failed lint --- .../s2/style/__tests__/style-macro.test.js | 112 +++--- .../react-aria-components/docs/DropZone.mdx | 2 +- packages/react-aria-components/src/index.ts | 2 + .../stories/Dropzone.stories.tsx | 4 +- yarn.lock | 352 +++++++++--------- 5 files changed, 237 insertions(+), 235 deletions(-) diff --git a/packages/@react-spectrum/s2/style/__tests__/style-macro.test.js b/packages/@react-spectrum/s2/style/__tests__/style-macro.test.js index 875ee683a21..c51e7b1db75 100644 --- a/packages/@react-spectrum/s2/style/__tests__/style-macro.test.js +++ b/packages/@react-spectrum/s2/style/__tests__/style-macro.test.js @@ -40,14 +40,14 @@ describe('style-macro', () => { "@layer _.a, _.b, _.c; @layer _.b { - .Jbs11:first-child { + .Jbs111:first-child { margin-top: 0.25rem; } } @layer _.c.p { @media (min-width: 64rem) { - .Jbpv11:first-child { + .Jbpv111:first-child { margin-top: 0.5rem; } } @@ -55,7 +55,7 @@ describe('style-macro', () => { " `); - expect(js).toMatchInlineSnapshot('" Jbs11 Jbpv11"'); + expect(js).toMatchInlineSnapshot('" Jbs111 Jbpv111"'); }); it('should support self references', () => { @@ -69,47 +69,47 @@ describe('style-macro', () => { "@layer _.a; @layer _.a { - ._kc11 { + ._kc111 { border-top-width: 2px; } - .hc11 { + .hc111 { border-bottom-width: 2px; } - .mCPFGYc11 { + .mCPFGYc111 { border-inline-start-width: var(--m); } - .lc11 { + .lc111 { border-inline-end-width: 2px; } - .SMBFGYc11 { + .SMBFGYc111 { padding-inline-start: var(--S); } - .Rv11 { + .Rv111 { padding-inline-end: calc(var(--F, var(--M)) * 3 / 8); } - .ZjUQgKd11 { + .ZjUQgKd111 { width: calc(200px - var(--m) - var(--S)); } - .-m_-mc11 { + .-m_-mc111 { --m: 2px; } - .-S_-Sv11 { + .-S_-Sv111 { --S: calc(var(--F, var(--M)) * 3 / 8); } } @@ -117,7 +117,7 @@ describe('style-macro', () => { " `); - expect(js).toMatchInlineSnapshot('" _kc11 hc11 mCPFGYc11 lc11 SMBFGYc11 Rv11 ZjUQgKd11 -m_-mc11 -S_-Sv11"'); + expect(js).toMatchInlineSnapshot('" _kc111 hc111 mCPFGYc111 lc111 SMBFGYc111 Rv111 ZjUQgKd111 -m_-mc111 -S_-Sv111"'); }); it('should support allowed overrides', () => { @@ -134,9 +134,9 @@ describe('style-macro', () => { color: 'green-400' }); - expect(js()).toMatchInlineSnapshot('" gw11 pg11"'); - expect(overrides).toMatchInlineSnapshot('" g8tmWqb11 pHJ3AUd11"'); - expect(js({}, overrides)).toMatchInlineSnapshot('" g8tmWqb11 pg11"'); + expect(js()).toMatchInlineSnapshot('" gw111 pg111"'); + expect(overrides).toMatchInlineSnapshot('" g8tmWqb111 pHJ3AUd111"'); + expect(js({}, overrides)).toMatchInlineSnapshot('" g8tmWqb111 pg111"'); }); it('should support allowed overrides for properties that expand into multiple', () => { @@ -151,9 +151,9 @@ describe('style-macro', () => { translateX: 40 }); - expect(js()).toMatchInlineSnapshot('" -_7PloMd-B11 __Ya11"'); - expect(overrides).toMatchInlineSnapshot('" -_7PloMd-D11 __Ya11"'); - expect(js({}, overrides)).toMatchInlineSnapshot('" -_7PloMd-D11 __Ya11"'); + expect(js()).toMatchInlineSnapshot('" -_7PloMd-B111 __Ya111"'); + expect(overrides).toMatchInlineSnapshot('" -_7PloMd-D111 __Ya111"'); + expect(js({}, overrides)).toMatchInlineSnapshot('" -_7PloMd-D111 __Ya111"'); }); it('should support allowed overrides for shorthands', () => { @@ -168,9 +168,9 @@ describe('style-macro', () => { padding: 40 }); - expect(js()).toMatchInlineSnapshot('" Tk11 Qk11 Sk11 Rk11"'); - expect(overrides).toMatchInlineSnapshot('" Tm11 Qm11 Sm11 Rm11"'); - expect(js({}, overrides)).toMatchInlineSnapshot('" Tm11 Qm11 Sm11 Rm11"'); + expect(js()).toMatchInlineSnapshot('" Tk111 Qk111 Sk111 Rk111"'); + expect(overrides).toMatchInlineSnapshot('" Tm111 Qm111 Sm111 Rm111"'); + expect(js({}, overrides)).toMatchInlineSnapshot('" Tm111 Qm111 Sm111 Rm111"'); }); it("should support allowed overrides for values that aren't defined", () => { @@ -185,9 +185,9 @@ describe('style-macro', () => { minWidth: 32 }); - expect(js()).toMatchInlineSnapshot('" gE11"'); - expect(overrides).toMatchInlineSnapshot('" Nk11"'); - expect(js({}, overrides)).toMatchInlineSnapshot('" Nk11 gE11"'); + expect(js()).toMatchInlineSnapshot('" gE111"'); + expect(overrides).toMatchInlineSnapshot('" Nk111"'); + expect(js({}, overrides)).toMatchInlineSnapshot('" Nk111 gE111"'); }); it('should support runtime conditions', () => { @@ -208,32 +208,32 @@ describe('style-macro', () => { "@layer _.a; @layer _.a { - .gH11 { + .gH111 { background-color: light-dark(rgb(233, 233, 233), rgb(44, 44, 44)); } - .gF11 { + .gF111 { background-color: light-dark(rgb(225, 225, 225), rgb(50, 50, 50)); } - .gE11 { + .gE111 { background-color: light-dark(rgb(218, 218, 218), rgb(57, 57, 57)); } - .pt11 { + .pt111 { color: light-dark(rgb(41, 41, 41), rgb(219, 219, 219)); } - .po11 { + .po111 { color: light-dark(rgb(19, 19, 19), rgb(242, 242, 242)); } - .pm11 { + .pm111 { color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); } } @@ -241,9 +241,9 @@ describe('style-macro', () => { " `); - expect(js({})).toMatchInlineSnapshot('" gH11 pt11"'); - expect(js({isHovered: true})).toMatchInlineSnapshot('" gF11 po11"'); - expect(js({isPressed: true})).toMatchInlineSnapshot('" gE11 pm11"'); + expect(js({})).toMatchInlineSnapshot('" gH111 pt111"'); + expect(js({isHovered: true})).toMatchInlineSnapshot('" gF111 po111"'); + expect(js({isPressed: true})).toMatchInlineSnapshot('" gE111 pm111"'); }); it('should support nested runtime conditions', () => { @@ -262,32 +262,32 @@ describe('style-macro', () => { "@layer _.a; @layer _.a { - .gH11 { + .gH111 { background-color: light-dark(rgb(233, 233, 233), rgb(44, 44, 44)); } - .gF11 { + .gF111 { background-color: light-dark(rgb(225, 225, 225), rgb(50, 50, 50)); } - .g_h11 { + .g_h111 { background-color: light-dark(rgb(75, 117, 255), rgb(64, 105, 253)); } - .g311 { + .g3111 { background-color: light-dark(rgb(59, 99, 251), rgb(86, 129, 255)); } } " `); - expect(js({})).toMatchInlineSnapshot('" gH11"'); - expect(js({isHovered: true})).toMatchInlineSnapshot('" gF11"'); - expect(js({isSelected: true})).toMatchInlineSnapshot('" g_h11"'); - expect(js({isSelected: true, isHovered: true})).toMatchInlineSnapshot('" g311"'); + expect(js({})).toMatchInlineSnapshot('" gH111"'); + expect(js({isHovered: true})).toMatchInlineSnapshot('" gF111"'); + expect(js({isSelected: true})).toMatchInlineSnapshot('" g_h111"'); + expect(js({isSelected: true, isHovered: true})).toMatchInlineSnapshot('" g3111"'); }); it('should support variant runtime conditions', () => { @@ -301,9 +301,9 @@ describe('style-macro', () => { } }); - expect(js({variant: 'accent'})).toMatchInlineSnapshot('" gY11"'); - expect(js({variant: 'primary'})).toMatchInlineSnapshot('" gjQquMe11"'); - expect(js({variant: 'secondary'})).toMatchInlineSnapshot('" gw11"'); + expect(js({variant: 'accent'})).toMatchInlineSnapshot('" gY111"'); + expect(js({variant: 'primary'})).toMatchInlineSnapshot('" gjQquMe111"'); + expect(js({variant: 'secondary'})).toMatchInlineSnapshot('" gw111"'); }); it('supports runtime conditions nested inside css conditions', () => { @@ -321,14 +321,14 @@ describe('style-macro', () => { @layer _.b.l { @media (forced-colors: active) { - .plb11 { + .plb111 { color: ButtonText; } } @media (forced-colors: active) { - .ple11 { + .ple111 { color: HighlightText; } } @@ -337,8 +337,8 @@ describe('style-macro', () => { " `); - expect(js({})).toMatchInlineSnapshot('" plb11"'); - expect(js({isSelected: true})).toMatchInlineSnapshot('" ple11"'); + expect(js({})).toMatchInlineSnapshot('" plb111"'); + expect(js({isSelected: true})).toMatchInlineSnapshot('" ple111"'); }); it('should expand shorthand properties to longhands', () => { @@ -346,27 +346,27 @@ describe('style-macro', () => { padding: 24 }); - expect(js).toMatchInlineSnapshot('" Th11 Qh11 Sh11 Rh11"'); + expect(js).toMatchInlineSnapshot('" Th111 Qh111 Sh111 Rh111"'); expect(css).toMatchInlineSnapshot(` "@layer _.a; @layer _.a { - .Th11 { + .Th111 { padding-top: 24px; } - .Qh11 { + .Qh111 { padding-bottom: 24px; } - .Sh11 { + .Sh111 { padding-inline-start: 24px; } - .Rh11 { + .Rh111 { padding-inline-end: 24px; } } @@ -384,7 +384,7 @@ describe('style-macro', () => { "@layer _.a; @layer _.a { - .gpQzfVb11 { + .gpQzfVb111 { background-color: rgb(from light-dark(rgb(39, 77, 234), rgb(105, 149, 254)) r g b / 50%); } } @@ -405,7 +405,7 @@ describe('style-macro', () => { "@layer _.a; @layer _.a { - .-FUeYm-gE11 { + .-FUeYm-gE111 { --foo: light-dark(rgb(218, 218, 218), rgb(57, 57, 57)); } } diff --git a/packages/react-aria-components/docs/DropZone.mdx b/packages/react-aria-components/docs/DropZone.mdx index 70230d9e4d3..aced23a864f 100644 --- a/packages/react-aria-components/docs/DropZone.mdx +++ b/packages/react-aria-components/docs/DropZone.mdx @@ -172,7 +172,7 @@ The `Draggable` component used above is defined below. See [useDrag](useDrag.htm Show code ```tsx example render=false export=true -import {useDrag} from '@react-aria/dnd'; +import {useDrag} from 'react-aria-components'; function Draggable() { let {dragProps, isDragging} = useDrag({ diff --git a/packages/react-aria-components/src/index.ts b/packages/react-aria-components/src/index.ts index c6844907976..36cf3e61b43 100644 --- a/packages/react-aria-components/src/index.ts +++ b/packages/react-aria-components/src/index.ts @@ -76,6 +76,7 @@ export {ToggleButtonGroup, ToggleButtonGroupContext, ToggleGroupStateContext} fr export {Toolbar, ToolbarContext} from './Toolbar'; export {TooltipTrigger, Tooltip, TooltipTriggerStateContext, TooltipContext} from './Tooltip'; export {TreeLoadMoreItem, Tree, TreeItem, TreeContext, TreeItemContent, TreeStateContext} from './Tree'; +export {useDrag, useDrop} from '@react-aria/dnd'; export {useDragAndDrop} from './useDragAndDrop'; export {DropIndicator, DropIndicatorContext, DragAndDropContext} from './DragAndDrop'; export {Virtualizer} from './Virtualizer'; @@ -139,6 +140,7 @@ export type {ToggleButtonGroupProps, ToggleButtonGroupRenderProps} from './Toggl export type {ToolbarProps, ToolbarRenderProps} from './Toolbar'; export type {TooltipProps, TooltipRenderProps, TooltipTriggerComponentProps} from './Tooltip'; export type {TreeProps, TreeRenderProps, TreeItemProps, TreeItemRenderProps, TreeItemContentProps, TreeItemContentRenderProps, TreeLoadMoreItemProps, TreeLoadMoreItemRenderProps} from './Tree'; +export type {DragOptions, DragResult} from '@react-aria/dnd'; export type {DragAndDropHooks, DragAndDropOptions} from './useDragAndDrop'; export type {DropIndicatorProps, DropIndicatorRenderProps} from './DragAndDrop'; export type {ContextValue, RenderProps, SlotProps, StyleRenderProps} from './utils'; diff --git a/packages/react-aria-components/stories/Dropzone.stories.tsx b/packages/react-aria-components/stories/Dropzone.stories.tsx index 234dfdc5a64..15ee895be47 100644 --- a/packages/react-aria-components/stories/Dropzone.stories.tsx +++ b/packages/react-aria-components/stories/Dropzone.stories.tsx @@ -11,9 +11,9 @@ */ import {action} from '@storybook/addon-actions'; -import {Button, DropZone, FileTrigger, Link, Text} from 'react-aria-components'; +import {Button, DropZone, FileTrigger, Link, Text, useDrag} from 'react-aria-components'; import {classNames} from '@react-spectrum/utils'; -import {FocusRing, mergeProps, useButton, useClipboard, useDrag} from 'react-aria'; +import {FocusRing, mergeProps, useButton, useClipboard} from 'react-aria'; import {Meta, StoryFn, StoryObj} from '@storybook/react'; import React, {useRef} from 'react'; import styles from '../example/index.css'; diff --git a/yarn.lock b/yarn.lock index 7035b05e9ff..00ba22c61df 100644 --- a/yarn.lock +++ b/yarn.lock @@ -66,30 +66,30 @@ __metadata: "@babel/cli": "npm:^7.12.10" "@babel/core": "npm:^7.24.3" "@internationalized/string": "npm:^3.2.7" - "@react-aria/collections": "npm:3.0.0-rc.5" + "@react-aria/collections": "npm:3.0.0-rc.6" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/ssr": "npm:^3.9.10" "@react-aria/utils": "npm:^3.30.1" "@react-aria/visually-hidden": "npm:^3.8.27" - "@react-spectrum/accordion": "npm:^3.0.10" - "@react-spectrum/actionbar": "npm:^3.6.11" - "@react-spectrum/actiongroup": "npm:^3.11.1" + "@react-spectrum/accordion": "npm:^3.0.11" + "@react-spectrum/actionbar": "npm:^3.6.12" + "@react-spectrum/actiongroup": "npm:^3.11.2" "@react-spectrum/avatar": "npm:^3.0.25" - "@react-spectrum/badge": "npm:^3.1.27" - "@react-spectrum/breadcrumbs": "npm:^3.9.21" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/badge": "npm:^3.1.28" + "@react-spectrum/breadcrumbs": "npm:^3.9.22" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/buttongroup": "npm:^3.6.25" - "@react-spectrum/calendar": "npm:^3.7.5" - "@react-spectrum/checkbox": "npm:^3.10.1" - "@react-spectrum/color": "npm:^3.1.1" - "@react-spectrum/combobox": "npm:^3.16.1" - "@react-spectrum/contextualhelp": "npm:^3.6.25" - "@react-spectrum/datepicker": "npm:^3.14.5" - "@react-spectrum/dialog": "npm:^3.9.1" + "@react-spectrum/calendar": "npm:^3.7.6" + "@react-spectrum/checkbox": "npm:^3.10.2" + "@react-spectrum/color": "npm:^3.1.2" + "@react-spectrum/combobox": "npm:^3.16.2" + "@react-spectrum/contextualhelp": "npm:^3.6.26" + "@react-spectrum/datepicker": "npm:^3.14.6" + "@react-spectrum/dialog": "npm:^3.9.2" "@react-spectrum/divider": "npm:^3.5.26" - "@react-spectrum/dnd": "npm:^3.6.0" - "@react-spectrum/dropzone": "npm:^3.0.15" - "@react-spectrum/filetrigger": "npm:^3.0.15" + "@react-spectrum/dnd": "npm:^3.6.1" + "@react-spectrum/dropzone": "npm:^3.0.16" + "@react-spectrum/filetrigger": "npm:^3.0.16" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/icon": "npm:^3.8.8" "@react-spectrum/illustratedmessage": "npm:^3.5.13" @@ -98,31 +98,31 @@ __metadata: "@react-spectrum/labeledvalue": "npm:^3.2.6" "@react-spectrum/layout": "npm:^3.6.18" "@react-spectrum/link": "npm:^3.6.21" - "@react-spectrum/list": "npm:^3.10.5" - "@react-spectrum/listbox": "npm:^3.15.5" - "@react-spectrum/menu": "npm:^3.22.5" + "@react-spectrum/list": "npm:^3.10.6" + "@react-spectrum/listbox": "npm:^3.15.6" + "@react-spectrum/menu": "npm:^3.22.6" "@react-spectrum/meter": "npm:^3.5.13" "@react-spectrum/numberfield": "npm:^3.10.1" - "@react-spectrum/overlays": "npm:^5.8.1" - "@react-spectrum/picker": "npm:^3.16.1" + "@react-spectrum/overlays": "npm:^5.8.2" + "@react-spectrum/picker": "npm:^3.16.2" "@react-spectrum/progress": "npm:^3.7.19" - "@react-spectrum/provider": "npm:^3.10.9" + "@react-spectrum/provider": "npm:^3.10.10" "@react-spectrum/radio": "npm:^3.7.20" - "@react-spectrum/searchfield": "npm:^3.8.20" + "@react-spectrum/searchfield": "npm:^3.8.21" "@react-spectrum/slider": "npm:^3.8.1" "@react-spectrum/statuslight": "npm:^3.5.25" "@react-spectrum/switch": "npm:^3.6.5" - "@react-spectrum/table": "npm:^3.17.5" - "@react-spectrum/tabs": "npm:^3.8.24" - "@react-spectrum/tag": "npm:^3.3.4" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/table": "npm:^3.17.6" + "@react-spectrum/tabs": "npm:^3.8.25" + "@react-spectrum/tag": "npm:^3.3.5" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/textfield": "npm:^3.14.1" "@react-spectrum/theme-dark": "npm:^3.5.21" "@react-spectrum/theme-default": "npm:^3.5.21" "@react-spectrum/theme-light": "npm:^3.4.21" - "@react-spectrum/toast": "npm:^3.1.1" - "@react-spectrum/tooltip": "npm:^3.7.9" - "@react-spectrum/tree": "npm:^3.1.5" + "@react-spectrum/toast": "npm:^3.1.2" + "@react-spectrum/tooltip": "npm:^3.7.10" + "@react-spectrum/tree": "npm:^3.1.6" "@react-spectrum/view": "npm:^3.6.22" "@react-spectrum/well": "npm:^3.4.26" "@react-stately/collections": "npm:^3.12.7" @@ -5422,11 +5422,11 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/autocomplete@npm:3.0.0-rc.0, @react-aria/autocomplete@workspace:packages/@react-aria/autocomplete": +"@react-aria/autocomplete@npm:3.0.0-rc.1, @react-aria/autocomplete@workspace:packages/@react-aria/autocomplete": version: 0.0.0-use.local resolution: "@react-aria/autocomplete@workspace:packages/@react-aria/autocomplete" dependencies: - "@react-aria/combobox": "npm:^3.13.1" + "@react-aria/combobox": "npm:^3.13.2" "@react-aria/focus": "npm:^3.21.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" @@ -5520,7 +5520,7 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/collections@npm:3.0.0-rc.5, @react-aria/collections@workspace:packages/@react-aria/collections": +"@react-aria/collections@npm:3.0.0-rc.6, @react-aria/collections@workspace:packages/@react-aria/collections": version: 0.0.0-use.local resolution: "@react-aria/collections@workspace:packages/@react-aria/collections" dependencies: @@ -5559,7 +5559,7 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/combobox@npm:^3.13.1, @react-aria/combobox@workspace:packages/@react-aria/combobox": +"@react-aria/combobox@npm:^3.13.2, @react-aria/combobox@workspace:packages/@react-aria/combobox": version: 0.0.0-use.local resolution: "@react-aria/combobox@workspace:packages/@react-aria/combobox" dependencies: @@ -5567,8 +5567,8 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/listbox": "npm:^3.14.8" "@react-aria/live-announcer": "npm:^3.4.4" - "@react-aria/menu": "npm:^3.19.1" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/menu": "npm:^3.19.2" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/selection": "npm:^3.25.1" "@react-aria/textfield": "npm:^3.18.1" "@react-aria/utils": "npm:^3.30.1" @@ -5613,12 +5613,12 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/dialog@npm:^3.5.29, @react-aria/dialog@workspace:packages/@react-aria/dialog": +"@react-aria/dialog@npm:^3.5.30, @react-aria/dialog@workspace:packages/@react-aria/dialog": version: 0.0.0-use.local resolution: "@react-aria/dialog@workspace:packages/@react-aria/dialog" dependencies: "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" "@react-types/dialog": "npm:^3.5.21" "@react-types/shared": "npm:^3.32.0" @@ -5644,7 +5644,7 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/dnd@npm:^3.0.0, @react-aria/dnd@npm:^3.1.0, @react-aria/dnd@npm:^3.11.1, @react-aria/dnd@workspace:packages/@react-aria/dnd": +"@react-aria/dnd@npm:^3.0.0, @react-aria/dnd@npm:^3.1.0, @react-aria/dnd@npm:^3.11.2, @react-aria/dnd@workspace:packages/@react-aria/dnd": version: 0.0.0-use.local resolution: "@react-aria/dnd@workspace:packages/@react-aria/dnd" dependencies: @@ -5652,7 +5652,7 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/live-announcer": "npm:^3.4.4" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" "@react-stately/collections": "npm:^3.12.7" "@react-stately/dnd": "npm:^3.7.0" @@ -5846,14 +5846,14 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/menu@npm:^3.19.1, @react-aria/menu@workspace:packages/@react-aria/menu": +"@react-aria/menu@npm:^3.19.2, @react-aria/menu@workspace:packages/@react-aria/menu": version: 0.0.0-use.local resolution: "@react-aria/menu@workspace:packages/@react-aria/menu" dependencies: "@react-aria/focus": "npm:^3.21.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/selection": "npm:^3.25.1" "@react-aria/utils": "npm:^3.30.1" "@react-stately/collections": "npm:^3.12.7" @@ -5913,7 +5913,7 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/overlays@npm:^3.29.0, @react-aria/overlays@workspace:packages/@react-aria/overlays": +"@react-aria/overlays@npm:^3.29.1, @react-aria/overlays@workspace:packages/@react-aria/overlays": version: 0.0.0-use.local resolution: "@react-aria/overlays@workspace:packages/@react-aria/overlays" dependencies: @@ -5996,7 +5996,7 @@ __metadata: languageName: unknown linkType: soft -"@react-aria/select@npm:^3.16.1, @react-aria/select@workspace:packages/@react-aria/select": +"@react-aria/select@npm:^3.16.2, @react-aria/select@workspace:packages/@react-aria/select": version: 0.0.0-use.local resolution: "@react-aria/select@workspace:packages/@react-aria/select" dependencies: @@ -6005,7 +6005,7 @@ __metadata: "@react-aria/interactions": "npm:^3.25.5" "@react-aria/label": "npm:^3.7.21" "@react-aria/listbox": "npm:^3.14.8" - "@react-aria/menu": "npm:^3.19.1" + "@react-aria/menu": "npm:^3.19.2" "@react-aria/selection": "npm:^3.25.1" "@react-aria/utils": "npm:^3.30.1" "@react-aria/visually-hidden": "npm:^3.8.27" @@ -6349,7 +6349,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/accordion@npm:^3.0.10, @react-spectrum/accordion@workspace:packages/@react-spectrum/accordion": +"@react-spectrum/accordion@npm:^3.0.11, @react-spectrum/accordion@workspace:packages/@react-spectrum/accordion": version: 0.0.0-use.local resolution: "@react-spectrum/accordion@workspace:packages/@react-spectrum/accordion" dependencies: @@ -6359,7 +6359,7 @@ __metadata: "@react-types/shared": "npm:^3.32.0" "@spectrum-icons/ui": "npm:^3.6.19" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" peerDependencies: "@react-spectrum/provider": ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 @@ -6367,7 +6367,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/actionbar@npm:^3.6.11, @react-spectrum/actionbar@workspace:packages/@react-spectrum/actionbar": +"@react-spectrum/actionbar@npm:^3.6.12, @react-spectrum/actionbar@workspace:packages/@react-spectrum/actionbar": version: 0.0.0-use.local resolution: "@react-spectrum/actionbar@workspace:packages/@react-spectrum/actionbar" dependencies: @@ -6377,10 +6377,10 @@ __metadata: "@react-aria/interactions": "npm:^3.25.5" "@react-aria/live-announcer": "npm:^3.4.4" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/actiongroup": "npm:^3.11.1" - "@react-spectrum/button": "npm:^3.17.1" - "@react-spectrum/overlays": "npm:^5.8.1" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/actiongroup": "npm:^3.11.2" + "@react-spectrum/button": "npm:^3.17.2" + "@react-spectrum/overlays": "npm:^5.8.2" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-types/actionbar": "npm:^3.1.18" @@ -6394,7 +6394,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/actiongroup@npm:^3.11.1, @react-spectrum/actiongroup@workspace:packages/@react-spectrum/actiongroup": +"@react-spectrum/actiongroup@npm:^3.11.2, @react-spectrum/actiongroup@workspace:packages/@react-spectrum/actiongroup": version: 0.0.0-use.local resolution: "@react-spectrum/actiongroup@workspace:packages/@react-spectrum/actiongroup" dependencies: @@ -6404,10 +6404,10 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" - "@react-spectrum/menu": "npm:^3.22.5" - "@react-spectrum/text": "npm:^3.5.19" - "@react-spectrum/tooltip": "npm:^3.7.9" + "@react-spectrum/button": "npm:^3.17.2" + "@react-spectrum/menu": "npm:^3.22.6" + "@react-spectrum/text": "npm:^3.5.20" + "@react-spectrum/tooltip": "npm:^3.7.10" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/list": "npm:^3.13.0" @@ -6423,26 +6423,26 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/autocomplete@npm:3.0.0-alpha.47, @react-spectrum/autocomplete@workspace:packages/@react-spectrum/autocomplete": +"@react-spectrum/autocomplete@npm:3.0.0-alpha.48, @react-spectrum/autocomplete@workspace:packages/@react-spectrum/autocomplete": version: 0.0.0-use.local resolution: "@react-spectrum/autocomplete@workspace:packages/@react-spectrum/autocomplete" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" - "@react-aria/autocomplete": "npm:3.0.0-rc.0" + "@react-aria/autocomplete": "npm:3.0.0-rc.1" "@react-aria/button": "npm:^3.14.1" - "@react-aria/dialog": "npm:^3.5.29" + "@react-aria/dialog": "npm:^3.5.30" "@react-aria/focus": "npm:^3.21.1" "@react-aria/form": "npm:^3.1.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/label": "npm:^3.7.21" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/label": "npm:^3.16.18" - "@react-spectrum/listbox": "npm:^3.15.5" - "@react-spectrum/overlays": "npm:^5.8.1" + "@react-spectrum/listbox": "npm:^3.15.6" + "@react-spectrum/overlays": "npm:^5.8.2" "@react-spectrum/progress": "npm:^3.7.19" "@react-spectrum/textfield": "npm:^3.14.1" "@react-spectrum/utils": "npm:^3.12.8" @@ -6477,13 +6477,13 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/badge@npm:^3.1.27, @react-spectrum/badge@workspace:packages/@react-spectrum/badge": +"@react-spectrum/badge@npm:^3.1.28, @react-spectrum/badge@workspace:packages/@react-spectrum/badge": version: 0.0.0-use.local resolution: "@react-spectrum/badge@workspace:packages/@react-spectrum/badge" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-types/badge": "npm:^3.1.20" "@react-types/shared": "npm:^3.32.0" @@ -6495,7 +6495,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/breadcrumbs@npm:^3.1.0, @react-spectrum/breadcrumbs@npm:^3.9.21, @react-spectrum/breadcrumbs@workspace:packages/@react-spectrum/breadcrumbs": +"@react-spectrum/breadcrumbs@npm:^3.1.0, @react-spectrum/breadcrumbs@npm:^3.9.22, @react-spectrum/breadcrumbs@workspace:packages/@react-spectrum/breadcrumbs": version: 0.0.0-use.local resolution: "@react-spectrum/breadcrumbs@workspace:packages/@react-spectrum/breadcrumbs" dependencies: @@ -6505,8 +6505,8 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" - "@react-spectrum/menu": "npm:^3.22.5" + "@react-spectrum/button": "npm:^3.17.2" + "@react-spectrum/menu": "npm:^3.22.6" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-types/breadcrumbs": "npm:^3.7.16" @@ -6520,7 +6520,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/button@npm:^3.1.0, @react-spectrum/button@npm:^3.17.1, @react-spectrum/button@npm:^3.8.1, @react-spectrum/button@workspace:packages/@react-spectrum/button": +"@react-spectrum/button@npm:^3.1.0, @react-spectrum/button@npm:^3.17.2, @react-spectrum/button@npm:^3.8.1, @react-spectrum/button@workspace:packages/@react-spectrum/button": version: 0.0.0-use.local resolution: "@react-spectrum/button@workspace:packages/@react-spectrum/button" dependencies: @@ -6532,7 +6532,7 @@ __metadata: "@react-aria/utils": "npm:^3.30.1" "@react-spectrum/progress": "npm:^3.7.19" "@react-spectrum/test-utils-internal": "npm:3.0.0-alpha.1" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/toggle": "npm:^3.9.1" "@react-types/button": "npm:^3.14.0" @@ -6565,7 +6565,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/calendar@npm:^3.7.5, @react-spectrum/calendar@workspace:packages/@react-spectrum/calendar": +"@react-spectrum/calendar@npm:^3.7.6, @react-spectrum/calendar@workspace:packages/@react-spectrum/calendar": version: 0.0.0-use.local resolution: "@react-spectrum/calendar@workspace:packages/@react-spectrum/calendar" dependencies: @@ -6577,7 +6577,7 @@ __metadata: "@react-aria/interactions": "npm:^3.25.5" "@react-aria/utils": "npm:^3.30.1" "@react-aria/visually-hidden": "npm:^3.8.27" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/label": "npm:^3.16.18" "@react-spectrum/test-utils-internal": "npm:3.0.0-alpha.1" "@react-spectrum/utils": "npm:^3.12.8" @@ -6605,7 +6605,7 @@ __metadata: "@react-aria/interactions": "npm:^3.25.5" "@react-aria/utils": "npm:^3.30.1" "@react-aria/virtualizer": "npm:^4.1.9" - "@react-spectrum/checkbox": "npm:^3.10.1" + "@react-spectrum/checkbox": "npm:^3.10.2" "@react-spectrum/progress": "npm:^3.7.19" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" @@ -6623,7 +6623,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/checkbox@npm:^3.10.1, @react-spectrum/checkbox@workspace:packages/@react-spectrum/checkbox": +"@react-spectrum/checkbox@npm:^3.10.2, @react-spectrum/checkbox@workspace:packages/@react-spectrum/checkbox": version: 0.0.0-use.local resolution: "@react-spectrum/checkbox@workspace:packages/@react-spectrum/checkbox" dependencies: @@ -6640,7 +6640,7 @@ __metadata: "@react-types/shared": "npm:^3.32.0" "@spectrum-icons/ui": "npm:^3.6.19" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" react-dom: "npm:^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" peerDependencies: "@react-spectrum/provider": ^3.0.0 @@ -6656,7 +6656,7 @@ __metadata: "@babel/parser": "npm:^7.24.5" "@babel/traverse": "npm:^7.24.5" "@babel/types": "npm:^7.24.5" - "@react-spectrum/s2": "npm:^0.11.0" + "@react-spectrum/s2": "npm:^0.11.1" "@react-types/shared": "npm:^3.32.0" "@types/jscodeshift": "npm:^0.11.11" "@types/node": "npm:^22" @@ -6677,7 +6677,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/color@npm:^3.1.1, @react-spectrum/color@workspace:packages/@react-spectrum/color": +"@react-spectrum/color@npm:^3.1.2, @react-spectrum/color@workspace:packages/@react-spectrum/color": version: 0.0.0-use.local resolution: "@react-spectrum/color@workspace:packages/@react-spectrum/color" dependencies: @@ -6687,11 +6687,11 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/dialog": "npm:^3.9.1" + "@react-spectrum/dialog": "npm:^3.9.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/label": "npm:^3.16.18" - "@react-spectrum/overlays": "npm:^5.8.1" - "@react-spectrum/picker": "npm:^3.16.1" + "@react-spectrum/overlays": "npm:^5.8.2" + "@react-spectrum/picker": "npm:^3.16.2" "@react-spectrum/style-macro-s1": "npm:3.0.0-alpha.4" "@react-spectrum/textfield": "npm:^3.14.1" "@react-spectrum/utils": "npm:^3.12.8" @@ -6701,7 +6701,7 @@ __metadata: "@react-types/shared": "npm:^3.32.0" "@react-types/textfield": "npm:^3.12.5" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" peerDependencies: "@react-spectrum/provider": ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 @@ -6709,26 +6709,26 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/combobox@npm:^3.16.1, @react-spectrum/combobox@workspace:packages/@react-spectrum/combobox": +"@react-spectrum/combobox@npm:^3.16.2, @react-spectrum/combobox@workspace:packages/@react-spectrum/combobox": version: 0.0.0-use.local resolution: "@react-spectrum/combobox@workspace:packages/@react-spectrum/combobox" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/button": "npm:^3.14.1" - "@react-aria/combobox": "npm:^3.13.1" - "@react-aria/dialog": "npm:^3.5.29" + "@react-aria/combobox": "npm:^3.13.2" + "@react-aria/dialog": "npm:^3.5.30" "@react-aria/focus": "npm:^3.21.1" "@react-aria/form": "npm:^3.1.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/label": "npm:^3.7.21" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/label": "npm:^3.16.18" - "@react-spectrum/listbox": "npm:^3.15.5" - "@react-spectrum/overlays": "npm:^5.8.1" + "@react-spectrum/listbox": "npm:^3.15.6" + "@react-spectrum/overlays": "npm:^5.8.2" "@react-spectrum/progress": "npm:^3.7.19" "@react-spectrum/textfield": "npm:^3.14.1" "@react-spectrum/utils": "npm:^3.12.8" @@ -6746,15 +6746,15 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/contextualhelp@npm:^3.6.25, @react-spectrum/contextualhelp@workspace:packages/@react-spectrum/contextualhelp": +"@react-spectrum/contextualhelp@npm:^3.6.26, @react-spectrum/contextualhelp@workspace:packages/@react-spectrum/contextualhelp": version: 0.0.0-use.local resolution: "@react-spectrum/contextualhelp@workspace:packages/@react-spectrum/contextualhelp" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" - "@react-spectrum/dialog": "npm:^3.9.1" + "@react-spectrum/button": "npm:^3.17.2" + "@react-spectrum/dialog": "npm:^3.9.2" "@react-spectrum/link": "npm:^3.2.0" "@react-spectrum/utils": "npm:^3.12.8" "@react-spectrum/view": "npm:^3.1.3" @@ -6769,7 +6769,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/datepicker@npm:^3.14.5, @react-spectrum/datepicker@workspace:packages/@react-spectrum/datepicker": +"@react-spectrum/datepicker@npm:^3.14.6, @react-spectrum/datepicker@workspace:packages/@react-spectrum/datepicker": version: 0.0.0-use.local resolution: "@react-spectrum/datepicker@workspace:packages/@react-spectrum/datepicker" dependencies: @@ -6780,9 +6780,9 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" - "@react-spectrum/calendar": "npm:^3.7.5" - "@react-spectrum/dialog": "npm:^3.9.1" + "@react-spectrum/button": "npm:^3.17.2" + "@react-spectrum/calendar": "npm:^3.7.6" + "@react-spectrum/dialog": "npm:^3.9.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/label": "npm:^3.16.18" "@react-spectrum/layout": "npm:^3.6.18" @@ -6802,23 +6802,23 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/dialog@npm:^3.1.0, @react-spectrum/dialog@npm:^3.9.1, @react-spectrum/dialog@workspace:packages/@react-spectrum/dialog": +"@react-spectrum/dialog@npm:^3.1.0, @react-spectrum/dialog@npm:^3.9.2, @react-spectrum/dialog@workspace:packages/@react-spectrum/dialog": version: 0.0.0-use.local resolution: "@react-spectrum/dialog@workspace:packages/@react-spectrum/dialog" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" - "@react-aria/dialog": "npm:^3.5.29" + "@react-aria/dialog": "npm:^3.5.30" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/buttongroup": "npm:^3.6.25" "@react-spectrum/divider": "npm:^3.5.26" "@react-spectrum/layout": "npm:^3.6.18" - "@react-spectrum/overlays": "npm:^5.8.1" + "@react-spectrum/overlays": "npm:^5.8.2" "@react-spectrum/test-utils-internal": "npm:3.0.0-alpha.1" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-spectrum/view": "npm:^3.6.22" "@react-stately/overlays": "npm:^3.6.19" @@ -6850,12 +6850,12 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/dnd@npm:^3.6.0, @react-spectrum/dnd@workspace:packages/@react-spectrum/dnd": +"@react-spectrum/dnd@npm:^3.6.1, @react-spectrum/dnd@workspace:packages/@react-spectrum/dnd": version: 0.0.0-use.local resolution: "@react-spectrum/dnd@workspace:packages/@react-spectrum/dnd" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" - "@react-aria/dnd": "npm:^3.11.1" + "@react-aria/dnd": "npm:^3.11.2" "@react-stately/dnd": "npm:^3.7.0" "@react-types/shared": "npm:^3.32.0" "@swc/helpers": "npm:^0.5.0" @@ -6875,7 +6875,7 @@ __metadata: "@react-aria/aria-modal-polyfill": "npm:^3.1.0" "@react-aria/interactions": "npm:^3.1.0" "@react-aria/visually-hidden": "npm:^3.1.0" - "@react-spectrum/autocomplete": "npm:3.0.0-alpha.47" + "@react-spectrum/autocomplete": "npm:3.0.0-alpha.48" "@react-spectrum/breadcrumbs": "npm:^3.1.0" "@react-spectrum/button": "npm:^3.1.0" "@react-spectrum/dialog": "npm:^3.1.0" @@ -6906,7 +6906,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/dropzone@npm:^3.0.15, @react-spectrum/dropzone@workspace:packages/@react-spectrum/dropzone": +"@react-spectrum/dropzone@npm:^3.0.16, @react-spectrum/dropzone@workspace:packages/@react-spectrum/dropzone": version: 0.0.0-use.local resolution: "@react-spectrum/dropzone@workspace:packages/@react-spectrum/dropzone" dependencies: @@ -6917,7 +6917,7 @@ __metadata: "@react-spectrum/utils": "npm:^3.12.8" "@react-types/shared": "npm:^3.32.0" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" react-dom: "npm:^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" peerDependencies: "@react-spectrum/provider": ^3.0.0 @@ -6926,13 +6926,13 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/filetrigger@npm:^3.0.15, @react-spectrum/filetrigger@workspace:packages/@react-spectrum/filetrigger": +"@react-spectrum/filetrigger@npm:^3.0.16, @react-spectrum/filetrigger@workspace:packages/@react-spectrum/filetrigger": version: 0.0.0-use.local resolution: "@react-spectrum/filetrigger@workspace:packages/@react-spectrum/filetrigger" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" react-dom: "npm:^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" peerDependencies: "@react-spectrum/provider": ^3.0.0 @@ -7107,7 +7107,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/list@npm:^3.10.5, @react-spectrum/list@workspace:packages/@react-spectrum/list": +"@react-spectrum/list@npm:^3.10.6, @react-spectrum/list@workspace:packages/@react-spectrum/list": version: 0.0.0-use.local resolution: "@react-spectrum/list@workspace:packages/@react-spectrum/list" dependencies: @@ -7123,11 +7123,11 @@ __metadata: "@react-aria/virtualizer": "npm:^4.1.9" "@react-aria/visually-hidden": "npm:^3.8.27" "@react-spectrum/button": "npm:^3.8.1" - "@react-spectrum/checkbox": "npm:^3.10.1" - "@react-spectrum/dnd": "npm:^3.6.0" + "@react-spectrum/checkbox": "npm:^3.10.2" + "@react-spectrum/dnd": "npm:^3.6.1" "@react-spectrum/layout": "npm:^3.6.18" "@react-spectrum/progress": "npm:^3.7.19" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/dnd": "npm:^3.0.0" @@ -7146,7 +7146,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/listbox@npm:^3.15.5, @react-spectrum/listbox@workspace:packages/@react-spectrum/listbox": +"@react-spectrum/listbox@npm:^3.15.6, @react-spectrum/listbox@workspace:packages/@react-spectrum/listbox": version: 0.0.0-use.local resolution: "@react-spectrum/listbox@workspace:packages/@react-spectrum/listbox" dependencies: @@ -7159,7 +7159,7 @@ __metadata: "@react-aria/virtualizer": "npm:^4.1.9" "@react-spectrum/layout": "npm:^3.6.18" "@react-spectrum/progress": "npm:^3.7.19" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/layout": "npm:^4.5.0" @@ -7176,7 +7176,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/menu@npm:^3.22.5, @react-spectrum/menu@workspace:packages/@react-spectrum/menu": +"@react-spectrum/menu@npm:^3.22.6, @react-spectrum/menu@workspace:packages/@react-spectrum/menu": version: 0.0.0-use.local resolution: "@react-spectrum/menu@workspace:packages/@react-spectrum/menu" dependencies: @@ -7184,14 +7184,14 @@ __metadata: "@react-aria/focus": "npm:^3.21.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/menu": "npm:^3.19.1" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/menu": "npm:^3.19.2" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/separator": "npm:^3.4.12" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/layout": "npm:^3.6.18" - "@react-spectrum/overlays": "npm:^5.8.1" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/overlays": "npm:^5.8.2" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/menu": "npm:^3.9.7" @@ -7258,13 +7258,13 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/overlays@npm:^5.8.1, @react-spectrum/overlays@workspace:packages/@react-spectrum/overlays": +"@react-spectrum/overlays@npm:^5.8.2, @react-spectrum/overlays@workspace:packages/@react-spectrum/overlays": version: 0.0.0-use.local resolution: "@react-spectrum/overlays@workspace:packages/@react-spectrum/overlays" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/overlays": "npm:^3.6.19" @@ -7299,22 +7299,22 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/picker@npm:^3.1.0, @react-spectrum/picker@npm:^3.16.1, @react-spectrum/picker@workspace:packages/@react-spectrum/picker": +"@react-spectrum/picker@npm:^3.1.0, @react-spectrum/picker@npm:^3.16.2, @react-spectrum/picker@workspace:packages/@react-spectrum/picker": version: 0.0.0-use.local resolution: "@react-spectrum/picker@workspace:packages/@react-spectrum/picker" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/select": "npm:^3.16.1" + "@react-aria/select": "npm:^3.16.2" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/label": "npm:^3.16.18" - "@react-spectrum/listbox": "npm:^3.15.5" - "@react-spectrum/overlays": "npm:^5.8.1" + "@react-spectrum/listbox": "npm:^3.15.6" + "@react-spectrum/overlays": "npm:^5.8.2" "@react-spectrum/progress": "npm:^3.7.19" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/select": "npm:^3.7.1" @@ -7347,13 +7347,13 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/provider@npm:^3.1.0, @react-spectrum/provider@npm:^3.10.9, @react-spectrum/provider@workspace:packages/@react-spectrum/provider": +"@react-spectrum/provider@npm:^3.1.0, @react-spectrum/provider@npm:^3.10.10, @react-spectrum/provider@workspace:packages/@react-spectrum/provider": version: 0.0.0-use.local resolution: "@react-spectrum/provider@workspace:packages/@react-spectrum/provider" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/i18n": "npm:^3.12.12" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/utils": "npm:^3.30.1" "@react-spectrum/utils": "npm:^3.12.8" "@react-types/provider": "npm:^3.8.12" @@ -7452,7 +7452,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/s2@npm:^0.11.0, @react-spectrum/s2@workspace:packages/@react-spectrum/s2": +"@react-spectrum/s2@npm:^0.11.0, @react-spectrum/s2@npm:^0.11.1, @react-spectrum/s2@workspace:packages/@react-spectrum/s2": version: 0.0.0-use.local resolution: "@react-spectrum/s2@workspace:packages/@react-spectrum/s2" dependencies: @@ -7461,7 +7461,7 @@ __metadata: "@internationalized/number": "npm:^3.6.5" "@parcel/macros": "npm:^2.15.4" "@react-aria/calendar": "npm:^3.9.1" - "@react-aria/collections": "npm:3.0.0-rc.5" + "@react-aria/collections": "npm:3.0.0-rc.6" "@react-aria/focus": "npm:^3.21.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" @@ -7483,8 +7483,8 @@ __metadata: "@testing-library/user-event": "npm:^14.0.0" csstype: "npm:^3.0.2" jest: "npm:^29.5.0" - react-aria: "npm:^3.43.0" - react-aria-components: "npm:^1.12.0" + react-aria: "npm:^3.43.1" + react-aria-components: "npm:^1.12.1" react-stately: "npm:^3.41.0" peerDependencies: react: ^18.0.0 || ^19.0.0-rc.1 @@ -7492,13 +7492,13 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/searchfield@npm:^3.8.20, @react-spectrum/searchfield@workspace:packages/@react-spectrum/searchfield": +"@react-spectrum/searchfield@npm:^3.8.21, @react-spectrum/searchfield@workspace:packages/@react-spectrum/searchfield": version: 0.0.0-use.local resolution: "@react-spectrum/searchfield@workspace:packages/@react-spectrum/searchfield" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/searchfield": "npm:^3.8.8" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/test-utils-internal": "npm:3.0.0-alpha.1" "@react-spectrum/textfield": "npm:^3.14.1" @@ -7618,7 +7618,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/table@npm:^3.17.5, @react-spectrum/table@workspace:packages/@react-spectrum/table": +"@react-spectrum/table@npm:^3.17.6, @react-spectrum/table@workspace:packages/@react-spectrum/table": version: 0.0.0-use.local resolution: "@react-spectrum/table@workspace:packages/@react-spectrum/table" dependencies: @@ -7628,18 +7628,18 @@ __metadata: "@react-aria/focus": "npm:^3.21.1" "@react-aria/i18n": "npm:^3.12.12" "@react-aria/interactions": "npm:^3.25.5" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/selection": "npm:^3.25.1" "@react-aria/table": "npm:^3.17.7" "@react-aria/utils": "npm:^3.30.1" "@react-aria/virtualizer": "npm:^4.1.9" "@react-aria/visually-hidden": "npm:^3.8.27" - "@react-spectrum/checkbox": "npm:^3.10.1" - "@react-spectrum/dnd": "npm:^3.6.0" + "@react-spectrum/checkbox": "npm:^3.10.2" + "@react-spectrum/dnd": "npm:^3.6.1" "@react-spectrum/layout": "npm:^3.6.18" - "@react-spectrum/menu": "npm:^3.22.5" + "@react-spectrum/menu": "npm:^3.22.6" "@react-spectrum/progress": "npm:^3.7.19" - "@react-spectrum/tooltip": "npm:^3.7.9" + "@react-spectrum/tooltip": "npm:^3.7.10" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/dnd": "npm:^3.1.0" "@react-stately/flags": "npm:^3.1.2" @@ -7658,7 +7658,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/tabs@npm:^3.8.24, @react-spectrum/tabs@workspace:packages/@react-spectrum/tabs": +"@react-spectrum/tabs@npm:^3.8.25, @react-spectrum/tabs@workspace:packages/@react-spectrum/tabs": version: 0.0.0-use.local resolution: "@react-spectrum/tabs@workspace:packages/@react-spectrum/tabs" dependencies: @@ -7668,8 +7668,8 @@ __metadata: "@react-aria/interactions": "npm:^3.25.5" "@react-aria/tabs": "npm:^3.10.7" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/picker": "npm:^3.16.1" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/picker": "npm:^3.16.2" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/list": "npm:^3.13.0" @@ -7685,7 +7685,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/tag@npm:^3.3.4, @react-spectrum/tag@workspace:packages/@react-spectrum/tag": +"@react-spectrum/tag@npm:^3.3.5, @react-spectrum/tag@workspace:packages/@react-spectrum/tag": version: 0.0.0-use.local resolution: "@react-spectrum/tag@workspace:packages/@react-spectrum/tag" dependencies: @@ -7696,10 +7696,10 @@ __metadata: "@react-aria/selection": "npm:^3.25.1" "@react-aria/tag": "npm:^3.7.1" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/form": "npm:^3.7.18" "@react-spectrum/label": "npm:^3.16.18" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/collections": "npm:^3.12.7" "@react-stately/list": "npm:^3.13.0" @@ -7750,7 +7750,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/text@npm:^3.1.0, @react-spectrum/text@npm:^3.5.19, @react-spectrum/text@workspace:packages/@react-spectrum/text": +"@react-spectrum/text@npm:^3.1.0, @react-spectrum/text@npm:^3.5.20, @react-spectrum/text@workspace:packages/@react-spectrum/text": version: 0.0.0-use.local resolution: "@react-spectrum/text@workspace:packages/@react-spectrum/text" dependencies: @@ -7760,7 +7760,7 @@ __metadata: "@react-types/shared": "npm:^3.32.0" "@react-types/text": "npm:^3.3.20" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" react-dom: "npm:^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" peerDependencies: "@react-spectrum/provider": ^3.0.0 @@ -7844,17 +7844,17 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/toast@npm:^3.1.1, @react-spectrum/toast@workspace:packages/@react-spectrum/toast": +"@react-spectrum/toast@npm:^3.1.2, @react-spectrum/toast@workspace:packages/@react-spectrum/toast": version: 0.0.0-use.local resolution: "@react-spectrum/toast@workspace:packages/@react-spectrum/toast" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/focus": "npm:^3.21.1" "@react-aria/i18n": "npm:^3.12.12" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/toast": "npm:^3.0.7" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/button": "npm:^3.17.1" + "@react-spectrum/button": "npm:^3.17.2" "@react-spectrum/test-utils-internal": "npm:3.0.0-alpha.1" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/toast": "npm:^3.1.2" @@ -7870,16 +7870,16 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/tooltip@npm:^3.7.9, @react-spectrum/tooltip@workspace:packages/@react-spectrum/tooltip": +"@react-spectrum/tooltip@npm:^3.7.10, @react-spectrum/tooltip@workspace:packages/@react-spectrum/tooltip": version: 0.0.0-use.local resolution: "@react-spectrum/tooltip@workspace:packages/@react-spectrum/tooltip" dependencies: "@adobe/spectrum-css-temp": "npm:3.0.0-alpha.1" "@react-aria/focus": "npm:^3.21.1" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/tooltip": "npm:^3.8.7" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/overlays": "npm:^5.8.1" + "@react-spectrum/overlays": "npm:^5.8.2" "@react-spectrum/utils": "npm:^3.12.8" "@react-stately/tooltip": "npm:^3.5.7" "@react-types/overlays": "npm:^3.9.1" @@ -7894,7 +7894,7 @@ __metadata: languageName: unknown linkType: soft -"@react-spectrum/tree@npm:^3.1.5, @react-spectrum/tree@workspace:packages/@react-spectrum/tree": +"@react-spectrum/tree@npm:^3.1.6, @react-spectrum/tree@workspace:packages/@react-spectrum/tree": version: 0.0.0-use.local resolution: "@react-spectrum/tree@workspace:packages/@react-spectrum/tree" dependencies: @@ -7903,14 +7903,14 @@ __metadata: "@react-aria/i18n": "npm:^3.12.12" "@react-aria/tree": "npm:^3.1.3" "@react-aria/utils": "npm:^3.30.1" - "@react-spectrum/checkbox": "npm:^3.10.1" + "@react-spectrum/checkbox": "npm:^3.10.2" "@react-spectrum/style-macro-s1": "npm:3.0.0-alpha.4" - "@react-spectrum/text": "npm:^3.5.19" + "@react-spectrum/text": "npm:^3.5.20" "@react-spectrum/utils": "npm:^3.12.8" "@react-types/shared": "npm:^3.32.0" "@spectrum-icons/ui": "npm:^3.6.19" "@swc/helpers": "npm:^0.5.0" - react-aria-components: "npm:^1.12.0" + react-aria-components: "npm:^1.12.1" peerDependencies: "@react-spectrum/provider": ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 @@ -8657,7 +8657,7 @@ __metadata: resolution: "@react-types/list@workspace:packages/@react-types/list" dependencies: "@react-aria/gridlist": "npm:^3.14.0" - "@react-spectrum/list": "npm:^3.10.5" + "@react-spectrum/list": "npm:^3.10.6" peerDependencies: "@react-spectrum/provider": ^3.0.0 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 @@ -26049,19 +26049,19 @@ __metadata: languageName: node linkType: hard -"react-aria-components@npm:^1.12.0, react-aria-components@npm:^1.7.1, react-aria-components@workspace:packages/react-aria-components": +"react-aria-components@npm:^1.12.1, react-aria-components@npm:^1.7.1, react-aria-components@workspace:packages/react-aria-components": version: 0.0.0-use.local resolution: "react-aria-components@workspace:packages/react-aria-components" dependencies: "@internationalized/date": "npm:^3.9.0" "@internationalized/string": "npm:^3.2.7" - "@react-aria/autocomplete": "npm:3.0.0-rc.0" - "@react-aria/collections": "npm:3.0.0-rc.5" - "@react-aria/dnd": "npm:^3.11.1" + "@react-aria/autocomplete": "npm:3.0.0-rc.1" + "@react-aria/collections": "npm:3.0.0-rc.6" + "@react-aria/dnd": "npm:^3.11.2" "@react-aria/focus": "npm:^3.21.1" "@react-aria/interactions": "npm:^3.25.5" "@react-aria/live-announcer": "npm:^3.4.4" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/ssr": "npm:^3.9.10" "@react-aria/textfield": "npm:^3.18.1" "@react-aria/toolbar": "npm:3.0.0-beta.20" @@ -26080,7 +26080,7 @@ __metadata: "@swc/helpers": "npm:^0.5.0" "@tailwindcss/postcss": "npm:^4.0.0" client-only: "npm:^0.0.1" - react-aria: "npm:^3.43.0" + react-aria: "npm:^3.43.1" react-stately: "npm:^3.41.0" use-sync-external-store: "npm:^1.4.0" peerDependencies: @@ -26089,7 +26089,7 @@ __metadata: languageName: unknown linkType: soft -"react-aria@npm:^3.40.0, react-aria@npm:^3.43.0, react-aria@workspace:packages/react-aria": +"react-aria@npm:^3.40.0, react-aria@npm:^3.43.1, react-aria@workspace:packages/react-aria": version: 0.0.0-use.local resolution: "react-aria@workspace:packages/react-aria" dependencies: @@ -26101,11 +26101,11 @@ __metadata: "@react-aria/calendar": "npm:^3.9.1" "@react-aria/checkbox": "npm:^3.16.1" "@react-aria/color": "npm:^3.1.1" - "@react-aria/combobox": "npm:^3.13.1" + "@react-aria/combobox": "npm:^3.13.2" "@react-aria/datepicker": "npm:^3.15.1" - "@react-aria/dialog": "npm:^3.5.29" + "@react-aria/dialog": "npm:^3.5.30" "@react-aria/disclosure": "npm:^3.0.8" - "@react-aria/dnd": "npm:^3.11.1" + "@react-aria/dnd": "npm:^3.11.2" "@react-aria/focus": "npm:^3.21.1" "@react-aria/gridlist": "npm:^3.14.0" "@react-aria/i18n": "npm:^3.12.12" @@ -26114,14 +26114,14 @@ __metadata: "@react-aria/landmark": "npm:^3.0.6" "@react-aria/link": "npm:^3.8.5" "@react-aria/listbox": "npm:^3.14.8" - "@react-aria/menu": "npm:^3.19.1" + "@react-aria/menu": "npm:^3.19.2" "@react-aria/meter": "npm:^3.4.26" "@react-aria/numberfield": "npm:^3.12.1" - "@react-aria/overlays": "npm:^3.29.0" + "@react-aria/overlays": "npm:^3.29.1" "@react-aria/progress": "npm:^3.4.26" "@react-aria/radio": "npm:^3.12.1" "@react-aria/searchfield": "npm:^3.8.8" - "@react-aria/select": "npm:^3.16.1" + "@react-aria/select": "npm:^3.16.2" "@react-aria/selection": "npm:^3.25.1" "@react-aria/separator": "npm:^3.4.12" "@react-aria/slider": "npm:^3.8.1"