@adobe/react-spectrum 3.39.0 → 3.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/import.mjs +3 -0
- package/dist/main.js +11 -2
- package/dist/module.js +3 -0
- package/dist/types.d.ts +5 -0
- package/i18n/index.js +1 -1
- package/i18n/index.mjs +1 -1
- package/package.json +63 -60
package/dist/import.mjs
CHANGED
|
@@ -61,7 +61,9 @@ export {TextArea, TextField} from '@react-spectrum/textfield';
|
|
|
61
61
|
export {theme as darkTheme} from '@react-spectrum/theme-dark';
|
|
62
62
|
export {theme as defaultTheme} from '@react-spectrum/theme-default';
|
|
63
63
|
export {theme as lightTheme} from '@react-spectrum/theme-light';
|
|
64
|
+
export {ToastContainer, ToastQueue} from '@react-spectrum/toast';
|
|
64
65
|
export {Tooltip, TooltipTrigger} from '@react-spectrum/tooltip';
|
|
66
|
+
export {TreeView, TreeViewItem, TreeViewItemContent} from '@react-spectrum/tree';
|
|
65
67
|
export {Content, Footer, Header, View} from '@react-spectrum/view';
|
|
66
68
|
export {Well} from '@react-spectrum/well';
|
|
67
69
|
export {Item, Section} from '@react-stately/collections';
|
|
@@ -70,4 +72,5 @@ export {VisuallyHidden} from '@react-aria/visually-hidden';
|
|
|
70
72
|
export {useCollator, useDateFormatter, useFilter, useLocale, useLocalizedStringFormatter, useMessageFormatter, useNumberFormatter} from '@react-aria/i18n';
|
|
71
73
|
export {SSRProvider} from '@react-aria/ssr';
|
|
72
74
|
export {useDragAndDrop, DIRECTORY_DRAG_TYPE} from '@react-spectrum/dnd';
|
|
75
|
+
export {Collection} from '@react-aria/collections';
|
|
73
76
|
|
package/dist/main.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
exports.
|
|
5
|
-
exports.useTreeData = exports.useProvider = exports.useNumberFormatter = exports.useMessageFormatter = exports.useLocalizedStringFormatter = exports.useLocale = exports.useListData = exports.useFilter = exports.useDragAndDrop = exports.useDialogContainer = exports.useDateFormatter = exports.useCollator = exports.useAsyncList = exports.repeat = exports.parseColor = exports.minmax = exports.lightTheme = void 0;
|
|
4
|
+
exports.View = exports.TreeViewItemContent = exports.TreeViewItem = exports.TreeView = exports.TooltipTrigger = exports.Tooltip = exports.ToggleButton = exports.ToastQueue = exports.ToastContainer = exports.TimeField = exports.TextField = exports.TextArea = exports.Text = exports.TagGroup = exports.Tabs = exports.TableView = exports.TableHeader = exports.TableBody = exports.TabPanels = exports.TabList = exports.Switch = exports.SubmenuTrigger = exports.StatusLight = exports.Slider = exports.Section = exports.SearchField = exports.SSRProvider = exports.Row = exports.RangeSlider = exports.RangeCalendar = exports.RadioGroup = exports.Radio = exports.Provider = exports.ProgressCircle = exports.ProgressBar = exports.Picker = exports.NumberField = exports.Meter = exports.MenuTrigger = exports.Menu = exports.LogicButton = exports.ListView = exports.ListBox = exports.Link = exports.LabeledValue = exports.Keyboard = exports.Item = exports.InlineAlert = exports.Image = exports.IllustratedMessage = exports.Icon = exports.Heading = exports.Header = exports.Grid = exports.Form = exports.Footer = exports.Flex = exports.FileTrigger = exports.DropZone = exports.Divider = exports.DisclosureTitle = exports.DisclosurePanel = exports.Disclosure = exports.DialogTrigger = exports.DialogContainer = exports.Dialog = exports.DateRangePicker = exports.DatePicker = exports.DateField = exports.DIRECTORY_DRAG_TYPE = exports.ContextualHelpTrigger = exports.ContextualHelp = exports.Content = exports.ComboBox = exports.Column = exports.ColorWheel = exports.ColorSwatchPicker = exports.ColorSwatch = exports.ColorSlider = exports.ColorPicker = exports.ColorField = exports.ColorEditor = exports.ColorArea = exports.Collection = exports.CheckboxGroup = exports.Checkbox = exports.Cell = exports.Calendar = exports.ButtonGroup = exports.Button = exports.Breadcrumbs = exports.Badge = exports.Avatar = exports.AlertDialog = exports.ActionMenu = exports.ActionGroup = exports.ActionButton = exports.ActionBarContainer = exports.ActionBar = exports.Accordion = void 0;
|
|
5
|
+
exports.useTreeData = exports.useProvider = exports.useNumberFormatter = exports.useMessageFormatter = exports.useLocalizedStringFormatter = exports.useLocale = exports.useListData = exports.useFilter = exports.useDragAndDrop = exports.useDialogContainer = exports.useDateFormatter = exports.useCollator = exports.useAsyncList = exports.repeat = exports.parseColor = exports.minmax = exports.lightTheme = exports.getColorChannels = exports.fitContent = exports.defaultTheme = exports.darkTheme = exports.Well = exports.VisuallyHidden = void 0;
|
|
6
6
|
require("client-only");
|
|
7
7
|
var _actiongroup = require("@react-spectrum/actiongroup");
|
|
8
8
|
exports.ActionGroup = _actiongroup.ActionGroup;
|
|
@@ -145,9 +145,16 @@ var _themeDefault = require("@react-spectrum/theme-default");
|
|
|
145
145
|
exports.defaultTheme = _themeDefault.theme;
|
|
146
146
|
var _themeLight = require("@react-spectrum/theme-light");
|
|
147
147
|
exports.lightTheme = _themeLight.theme;
|
|
148
|
+
var _toast = require("@react-spectrum/toast");
|
|
149
|
+
exports.ToastContainer = _toast.ToastContainer;
|
|
150
|
+
exports.ToastQueue = _toast.ToastQueue;
|
|
148
151
|
var _tooltip = require("@react-spectrum/tooltip");
|
|
149
152
|
exports.Tooltip = _tooltip.Tooltip;
|
|
150
153
|
exports.TooltipTrigger = _tooltip.TooltipTrigger;
|
|
154
|
+
var _tree = require("@react-spectrum/tree");
|
|
155
|
+
exports.TreeView = _tree.TreeView;
|
|
156
|
+
exports.TreeViewItem = _tree.TreeViewItem;
|
|
157
|
+
exports.TreeViewItemContent = _tree.TreeViewItemContent;
|
|
151
158
|
var _view = require("@react-spectrum/view");
|
|
152
159
|
exports.Content = _view.Content;
|
|
153
160
|
exports.Footer = _view.Footer;
|
|
@@ -177,3 +184,5 @@ exports.SSRProvider = _ssr.SSRProvider;
|
|
|
177
184
|
var _dnd = require("@react-spectrum/dnd");
|
|
178
185
|
exports.useDragAndDrop = _dnd.useDragAndDrop;
|
|
179
186
|
exports.DIRECTORY_DRAG_TYPE = _dnd.DIRECTORY_DRAG_TYPE;
|
|
187
|
+
var _collections2 = require("@react-aria/collections");
|
|
188
|
+
exports.Collection = _collections2.Collection;
|
package/dist/module.js
CHANGED
|
@@ -61,7 +61,9 @@ export {TextArea, TextField} from '@react-spectrum/textfield';
|
|
|
61
61
|
export {theme as darkTheme} from '@react-spectrum/theme-dark';
|
|
62
62
|
export {theme as defaultTheme} from '@react-spectrum/theme-default';
|
|
63
63
|
export {theme as lightTheme} from '@react-spectrum/theme-light';
|
|
64
|
+
export {ToastContainer, ToastQueue} from '@react-spectrum/toast';
|
|
64
65
|
export {Tooltip, TooltipTrigger} from '@react-spectrum/tooltip';
|
|
66
|
+
export {TreeView, TreeViewItem, TreeViewItemContent} from '@react-spectrum/tree';
|
|
65
67
|
export {Content, Footer, Header, View} from '@react-spectrum/view';
|
|
66
68
|
export {Well} from '@react-spectrum/well';
|
|
67
69
|
export {Item, Section} from '@react-stately/collections';
|
|
@@ -70,4 +72,5 @@ export {VisuallyHidden} from '@react-aria/visually-hidden';
|
|
|
70
72
|
export {useCollator, useDateFormatter, useFilter, useLocale, useLocalizedStringFormatter, useMessageFormatter, useNumberFormatter} from '@react-aria/i18n';
|
|
71
73
|
export {SSRProvider} from '@react-aria/ssr';
|
|
72
74
|
export {useDragAndDrop, DIRECTORY_DRAG_TYPE} from '@react-spectrum/dnd';
|
|
75
|
+
export {Collection} from '@react-aria/collections';
|
|
73
76
|
|
package/dist/types.d.ts
CHANGED
|
@@ -61,7 +61,9 @@ export {TextArea, TextField} from '@react-spectrum/textfield';
|
|
|
61
61
|
export {theme as darkTheme} from '@react-spectrum/theme-dark';
|
|
62
62
|
export {theme as defaultTheme} from '@react-spectrum/theme-default';
|
|
63
63
|
export {theme as lightTheme} from '@react-spectrum/theme-light';
|
|
64
|
+
export {ToastContainer, ToastQueue} from '@react-spectrum/toast';
|
|
64
65
|
export {Tooltip, TooltipTrigger} from '@react-spectrum/tooltip';
|
|
66
|
+
export {TreeView, TreeViewItem, TreeViewItemContent} from '@react-spectrum/tree';
|
|
65
67
|
export {Content, Footer, Header, View} from '@react-spectrum/view';
|
|
66
68
|
export {Well} from '@react-spectrum/well';
|
|
67
69
|
export {Item, Section} from '@react-stately/collections';
|
|
@@ -70,6 +72,7 @@ export {VisuallyHidden} from '@react-aria/visually-hidden';
|
|
|
70
72
|
export {useCollator, useDateFormatter, useFilter, useLocale, useLocalizedStringFormatter, useMessageFormatter, useNumberFormatter} from '@react-aria/i18n';
|
|
71
73
|
export {SSRProvider} from '@react-aria/ssr';
|
|
72
74
|
export {useDragAndDrop, DIRECTORY_DRAG_TYPE} from '@react-spectrum/dnd';
|
|
75
|
+
export {Collection} from '@react-aria/collections';
|
|
73
76
|
|
|
74
77
|
export type {SpectrumActionBarContainerProps, SpectrumActionBarProps} from '@react-spectrum/actionbar';
|
|
75
78
|
export type {SpectrumActionGroupProps} from '@react-spectrum/actiongroup';
|
|
@@ -114,7 +117,9 @@ export type {SpectrumTableProps, SpectrumColumnProps, TableHeaderProps, TableBod
|
|
|
114
117
|
export type {SpectrumTabListProps, SpectrumTabPanelsProps, SpectrumTabsProps} from '@react-spectrum/tabs';
|
|
115
118
|
export type {SpectrumTagGroupProps} from '@react-spectrum/tag';
|
|
116
119
|
export type {SpectrumTextFieldProps, SpectrumTextAreaProps} from '@react-spectrum/textfield';
|
|
120
|
+
export type {SpectrumToastContainerProps, SpectrumToastOptions} from '@react-spectrum/toast';
|
|
117
121
|
export type {SpectrumTooltipProps, SpectrumTooltipTriggerProps} from '@react-spectrum/tooltip';
|
|
122
|
+
export type {SpectrumTreeViewProps, SpectrumTreeViewItemProps, SpectrumTreeViewItemContentProps} from '@react-spectrum/tree';
|
|
118
123
|
export type {ContentProps, FooterProps, HeaderProps, ViewProps} from '@react-spectrum/view';
|
|
119
124
|
export type {SpectrumWellProps} from '@react-spectrum/well';
|
|
120
125
|
export type {AsyncListData, AsyncListOptions, ListData, ListOptions, TreeData, TreeOptions} from '@react-stately/data';
|
package/i18n/index.js
CHANGED
|
@@ -83,7 +83,7 @@ function getLocalizationScript(locale, dict = dictionary) {
|
|
|
83
83
|
return getPackageLocalizationScript(locale, strings);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
let deps = {"@react-aria/autocomplete":["@react-aria/combobox","@react-aria/searchfield"],"@react-aria/color":["@react-aria/numberfield","@react-aria/spinbutton","@react-stately/color"],"@react-aria/combobox":["@react-aria/menu","@react-aria/overlays"],"@react-aria/datepicker":["@react-aria/spinbutton","@react-stately/datepicker"],"@react-aria/dnd":["@react-aria/overlays"],"@react-aria/gridlist":["@react-aria/grid"],"@react-aria/menu":["@react-aria/overlays"],"@react-aria/numberfield":["@react-aria/spinbutton"],"@react-aria/table":["@react-aria/grid"],"@react-aria/tag":["@react-aria/gridlist"],"@react-aria/tree":["@react-aria/gridlist"],"@react-spectrum/actionbar":["@react-spectrum/button"],"@react-spectrum/autocomplete":["@react-aria/autocomplete","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/calendar":["@react-aria/calendar","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/card":["@react-aria/grid"],"@react-spectrum/color":["@react-aria/color","@react-spectrum/dialog","@react-spectrum/label","@react-spectrum/picker","@react-stately/color","react-aria-components"],"@react-spectrum/combobox":["@react-aria/combobox","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/contextualhelp":["@react-spectrum/button","@react-spectrum/dialog"],"@react-spectrum/datepicker":["@react-aria/datepicker","@react-spectrum/button","@react-spectrum/calendar","@react-spectrum/dialog","@react-spectrum/label","@react-stately/datepicker"],"@react-spectrum/dialog":["@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/dropzone":["react-aria-components"],"@react-spectrum/list":["@react-aria/gridlist"],"@react-spectrum/menu":["@react-aria/menu","@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/picker":["@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/searchwithin":["@react-spectrum/label"],"@react-spectrum/steplist":["@react-aria/steplist"],"@react-spectrum/table":["@react-aria/overlays","@react-aria/table","@react-spectrum/menu"],"@react-spectrum/tag":["@react-aria/tag","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/toast":["@react-aria/overlays","@react-aria/toast","@react-spectrum/button"],"react-aria-components":["@react-aria/autocomplete","@react-aria/
|
|
86
|
+
let deps = {"@react-aria/autocomplete":["@react-aria/combobox","@react-aria/searchfield"],"@react-aria/color":["@react-aria/numberfield","@react-aria/spinbutton","@react-stately/color"],"@react-aria/combobox":["@react-aria/menu","@react-aria/overlays"],"@react-aria/datepicker":["@react-aria/spinbutton","@react-stately/datepicker"],"@react-aria/dnd":["@react-aria/overlays"],"@react-aria/gridlist":["@react-aria/grid"],"@react-aria/menu":["@react-aria/overlays"],"@react-aria/numberfield":["@react-aria/spinbutton"],"@react-aria/table":["@react-aria/grid"],"@react-aria/tag":["@react-aria/gridlist"],"@react-aria/tree":["@react-aria/gridlist"],"@react-spectrum/actionbar":["@react-spectrum/button"],"@react-spectrum/autocomplete":["@react-aria/autocomplete","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/calendar":["@react-aria/calendar","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/card":["@react-aria/grid"],"@react-spectrum/color":["@react-aria/color","@react-spectrum/dialog","@react-spectrum/label","@react-spectrum/picker","@react-stately/color","react-aria-components"],"@react-spectrum/combobox":["@react-aria/combobox","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/contextualhelp":["@react-spectrum/button","@react-spectrum/dialog"],"@react-spectrum/datepicker":["@react-aria/datepicker","@react-spectrum/button","@react-spectrum/calendar","@react-spectrum/dialog","@react-spectrum/label","@react-stately/datepicker"],"@react-spectrum/dialog":["@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/dropzone":["react-aria-components"],"@react-spectrum/list":["@react-aria/gridlist"],"@react-spectrum/menu":["@react-aria/menu","@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/picker":["@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/searchwithin":["@react-spectrum/label"],"@react-spectrum/steplist":["@react-aria/steplist"],"@react-spectrum/table":["@react-aria/overlays","@react-aria/table","@react-spectrum/menu"],"@react-spectrum/tag":["@react-aria/tag","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/toast":["@react-aria/overlays","@react-aria/toast","@react-spectrum/button"],"react-aria-components":["@react-aria/autocomplete","@react-aria/dnd"]};
|
|
87
87
|
|
|
88
88
|
function createLocalizedStringDictionary(packages) {
|
|
89
89
|
let strings = {};
|
package/i18n/index.mjs
CHANGED
|
@@ -83,7 +83,7 @@ function getLocalizationScript(locale, dict = dictionary) {
|
|
|
83
83
|
return getPackageLocalizationScript(locale, strings);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
let deps = {"@react-aria/autocomplete":["@react-aria/combobox","@react-aria/searchfield"],"@react-aria/color":["@react-aria/numberfield","@react-aria/spinbutton","@react-stately/color"],"@react-aria/combobox":["@react-aria/menu","@react-aria/overlays"],"@react-aria/datepicker":["@react-aria/spinbutton","@react-stately/datepicker"],"@react-aria/dnd":["@react-aria/overlays"],"@react-aria/gridlist":["@react-aria/grid"],"@react-aria/menu":["@react-aria/overlays"],"@react-aria/numberfield":["@react-aria/spinbutton"],"@react-aria/table":["@react-aria/grid"],"@react-aria/tag":["@react-aria/gridlist"],"@react-aria/tree":["@react-aria/gridlist"],"@react-spectrum/actionbar":["@react-spectrum/button"],"@react-spectrum/autocomplete":["@react-aria/autocomplete","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/calendar":["@react-aria/calendar","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/card":["@react-aria/grid"],"@react-spectrum/color":["@react-aria/color","@react-spectrum/dialog","@react-spectrum/label","@react-spectrum/picker","@react-stately/color","react-aria-components"],"@react-spectrum/combobox":["@react-aria/combobox","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/contextualhelp":["@react-spectrum/button","@react-spectrum/dialog"],"@react-spectrum/datepicker":["@react-aria/datepicker","@react-spectrum/button","@react-spectrum/calendar","@react-spectrum/dialog","@react-spectrum/label","@react-stately/datepicker"],"@react-spectrum/dialog":["@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/dropzone":["react-aria-components"],"@react-spectrum/list":["@react-aria/gridlist"],"@react-spectrum/menu":["@react-aria/menu","@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/picker":["@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/searchwithin":["@react-spectrum/label"],"@react-spectrum/steplist":["@react-aria/steplist"],"@react-spectrum/table":["@react-aria/overlays","@react-aria/table","@react-spectrum/menu"],"@react-spectrum/tag":["@react-aria/tag","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/toast":["@react-aria/overlays","@react-aria/toast","@react-spectrum/button"],"react-aria-components":["@react-aria/autocomplete","@react-aria/
|
|
86
|
+
let deps = {"@react-aria/autocomplete":["@react-aria/combobox","@react-aria/searchfield"],"@react-aria/color":["@react-aria/numberfield","@react-aria/spinbutton","@react-stately/color"],"@react-aria/combobox":["@react-aria/menu","@react-aria/overlays"],"@react-aria/datepicker":["@react-aria/spinbutton","@react-stately/datepicker"],"@react-aria/dnd":["@react-aria/overlays"],"@react-aria/gridlist":["@react-aria/grid"],"@react-aria/menu":["@react-aria/overlays"],"@react-aria/numberfield":["@react-aria/spinbutton"],"@react-aria/table":["@react-aria/grid"],"@react-aria/tag":["@react-aria/gridlist"],"@react-aria/tree":["@react-aria/gridlist"],"@react-spectrum/actionbar":["@react-spectrum/button"],"@react-spectrum/autocomplete":["@react-aria/autocomplete","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/calendar":["@react-aria/calendar","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/card":["@react-aria/grid"],"@react-spectrum/color":["@react-aria/color","@react-spectrum/dialog","@react-spectrum/label","@react-spectrum/picker","@react-stately/color","react-aria-components"],"@react-spectrum/combobox":["@react-aria/combobox","@react-aria/overlays","@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/contextualhelp":["@react-spectrum/button","@react-spectrum/dialog"],"@react-spectrum/datepicker":["@react-aria/datepicker","@react-spectrum/button","@react-spectrum/calendar","@react-spectrum/dialog","@react-spectrum/label","@react-stately/datepicker"],"@react-spectrum/dialog":["@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/dropzone":["react-aria-components"],"@react-spectrum/list":["@react-aria/gridlist"],"@react-spectrum/menu":["@react-aria/menu","@react-aria/overlays","@react-spectrum/button"],"@react-spectrum/picker":["@react-spectrum/button","@react-spectrum/label","@react-spectrum/listbox"],"@react-spectrum/searchwithin":["@react-spectrum/label"],"@react-spectrum/steplist":["@react-aria/steplist"],"@react-spectrum/table":["@react-aria/overlays","@react-aria/table","@react-spectrum/menu"],"@react-spectrum/tag":["@react-aria/tag","@react-spectrum/button","@react-spectrum/label"],"@react-spectrum/toast":["@react-aria/overlays","@react-aria/toast","@react-spectrum/button"],"react-aria-components":["@react-aria/autocomplete","@react-aria/dnd"]};
|
|
87
87
|
|
|
88
88
|
function createLocalizedStringDictionary(packages) {
|
|
89
89
|
let strings = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/react-spectrum",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.40.0",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -38,65 +38,68 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@internationalized/string": "^3.2.5",
|
|
41
|
-
"@react-aria/
|
|
41
|
+
"@react-aria/collections": "3.0.0-beta.0",
|
|
42
|
+
"@react-aria/i18n": "^3.12.6",
|
|
42
43
|
"@react-aria/ssr": "^3.9.7",
|
|
43
|
-
"@react-aria/utils": "^3.
|
|
44
|
-
"@react-aria/visually-hidden": "^3.8.
|
|
45
|
-
"@react-spectrum/accordion": "^3.0.
|
|
46
|
-
"@react-spectrum/actionbar": "^3.6.
|
|
47
|
-
"@react-spectrum/actiongroup": "^3.10.
|
|
48
|
-
"@react-spectrum/avatar": "^3.0.
|
|
49
|
-
"@react-spectrum/badge": "^3.1.
|
|
50
|
-
"@react-spectrum/breadcrumbs": "^3.9.
|
|
51
|
-
"@react-spectrum/button": "^3.16.
|
|
52
|
-
"@react-spectrum/buttongroup": "^3.6.
|
|
53
|
-
"@react-spectrum/calendar": "^3.6.
|
|
54
|
-
"@react-spectrum/checkbox": "^3.9.
|
|
55
|
-
"@react-spectrum/color": "^3.0.
|
|
56
|
-
"@react-spectrum/combobox": "^3.
|
|
57
|
-
"@react-spectrum/contextualhelp": "^3.6.
|
|
58
|
-
"@react-spectrum/datepicker": "^3.
|
|
59
|
-
"@react-spectrum/dialog": "^3.8.
|
|
60
|
-
"@react-spectrum/divider": "^3.5.
|
|
61
|
-
"@react-spectrum/dnd": "^3.5.
|
|
62
|
-
"@react-spectrum/dropzone": "^3.0.
|
|
63
|
-
"@react-spectrum/filetrigger": "^3.0.
|
|
64
|
-
"@react-spectrum/form": "^3.7.
|
|
65
|
-
"@react-spectrum/icon": "^3.8.
|
|
66
|
-
"@react-spectrum/illustratedmessage": "^3.5.
|
|
67
|
-
"@react-spectrum/image": "^3.5.
|
|
68
|
-
"@react-spectrum/inlinealert": "^3.2.
|
|
69
|
-
"@react-spectrum/labeledvalue": "^3.
|
|
70
|
-
"@react-spectrum/layout": "^3.6.
|
|
71
|
-
"@react-spectrum/link": "^3.6.
|
|
72
|
-
"@react-spectrum/list": "^3.9.
|
|
73
|
-
"@react-spectrum/listbox": "^3.14.
|
|
74
|
-
"@react-spectrum/menu": "^3.21.
|
|
75
|
-
"@react-spectrum/meter": "^3.5.
|
|
76
|
-
"@react-spectrum/numberfield": "^3.9.
|
|
77
|
-
"@react-spectrum/overlays": "^5.7.
|
|
78
|
-
"@react-spectrum/picker": "^3.15.
|
|
79
|
-
"@react-spectrum/progress": "^3.7.
|
|
80
|
-
"@react-spectrum/provider": "^3.10.
|
|
81
|
-
"@react-spectrum/radio": "^3.7.
|
|
82
|
-
"@react-spectrum/searchfield": "^3.8.
|
|
83
|
-
"@react-spectrum/slider": "^3.7.
|
|
84
|
-
"@react-spectrum/statuslight": "^3.5.
|
|
85
|
-
"@react-spectrum/switch": "^3.5.
|
|
86
|
-
"@react-spectrum/table": "^3.
|
|
87
|
-
"@react-spectrum/tabs": "^3.8.
|
|
88
|
-
"@react-spectrum/tag": "^3.2.
|
|
89
|
-
"@react-spectrum/text": "^3.5.
|
|
90
|
-
"@react-spectrum/textfield": "^3.
|
|
91
|
-
"@react-spectrum/theme-dark": "^3.5.
|
|
92
|
-
"@react-spectrum/theme-default": "^3.5.
|
|
93
|
-
"@react-spectrum/theme-light": "^3.4.
|
|
94
|
-
"@react-spectrum/
|
|
95
|
-
"@react-spectrum/
|
|
96
|
-
"@react-spectrum/
|
|
97
|
-
"@react-
|
|
98
|
-
"@react-
|
|
99
|
-
"@react-
|
|
44
|
+
"@react-aria/utils": "^3.28.0",
|
|
45
|
+
"@react-aria/visually-hidden": "^3.8.20",
|
|
46
|
+
"@react-spectrum/accordion": "^3.0.3",
|
|
47
|
+
"@react-spectrum/actionbar": "^3.6.4",
|
|
48
|
+
"@react-spectrum/actiongroup": "^3.10.12",
|
|
49
|
+
"@react-spectrum/avatar": "^3.0.19",
|
|
50
|
+
"@react-spectrum/badge": "^3.1.20",
|
|
51
|
+
"@react-spectrum/breadcrumbs": "^3.9.14",
|
|
52
|
+
"@react-spectrum/button": "^3.16.11",
|
|
53
|
+
"@react-spectrum/buttongroup": "^3.6.19",
|
|
54
|
+
"@react-spectrum/calendar": "^3.6.1",
|
|
55
|
+
"@react-spectrum/checkbox": "^3.9.13",
|
|
56
|
+
"@react-spectrum/color": "^3.0.4",
|
|
57
|
+
"@react-spectrum/combobox": "^3.15.0",
|
|
58
|
+
"@react-spectrum/contextualhelp": "^3.6.18",
|
|
59
|
+
"@react-spectrum/datepicker": "^3.13.0",
|
|
60
|
+
"@react-spectrum/dialog": "^3.8.18",
|
|
61
|
+
"@react-spectrum/divider": "^3.5.20",
|
|
62
|
+
"@react-spectrum/dnd": "^3.5.2",
|
|
63
|
+
"@react-spectrum/dropzone": "^3.0.8",
|
|
64
|
+
"@react-spectrum/filetrigger": "^3.0.8",
|
|
65
|
+
"@react-spectrum/form": "^3.7.12",
|
|
66
|
+
"@react-spectrum/icon": "^3.8.2",
|
|
67
|
+
"@react-spectrum/illustratedmessage": "^3.5.7",
|
|
68
|
+
"@react-spectrum/image": "^3.5.8",
|
|
69
|
+
"@react-spectrum/inlinealert": "^3.2.12",
|
|
70
|
+
"@react-spectrum/labeledvalue": "^3.2.0",
|
|
71
|
+
"@react-spectrum/layout": "^3.6.12",
|
|
72
|
+
"@react-spectrum/link": "^3.6.14",
|
|
73
|
+
"@react-spectrum/list": "^3.9.2",
|
|
74
|
+
"@react-spectrum/listbox": "^3.14.2",
|
|
75
|
+
"@react-spectrum/menu": "^3.21.2",
|
|
76
|
+
"@react-spectrum/meter": "^3.5.7",
|
|
77
|
+
"@react-spectrum/numberfield": "^3.9.10",
|
|
78
|
+
"@react-spectrum/overlays": "^5.7.2",
|
|
79
|
+
"@react-spectrum/picker": "^3.15.6",
|
|
80
|
+
"@react-spectrum/progress": "^3.7.13",
|
|
81
|
+
"@react-spectrum/provider": "^3.10.2",
|
|
82
|
+
"@react-spectrum/radio": "^3.7.13",
|
|
83
|
+
"@react-spectrum/searchfield": "^3.8.13",
|
|
84
|
+
"@react-spectrum/slider": "^3.7.2",
|
|
85
|
+
"@react-spectrum/statuslight": "^3.5.19",
|
|
86
|
+
"@react-spectrum/switch": "^3.5.12",
|
|
87
|
+
"@react-spectrum/table": "^3.16.0",
|
|
88
|
+
"@react-spectrum/tabs": "^3.8.17",
|
|
89
|
+
"@react-spectrum/tag": "^3.2.13",
|
|
90
|
+
"@react-spectrum/text": "^3.5.12",
|
|
91
|
+
"@react-spectrum/textfield": "^3.13.0",
|
|
92
|
+
"@react-spectrum/theme-dark": "^3.5.16",
|
|
93
|
+
"@react-spectrum/theme-default": "^3.5.16",
|
|
94
|
+
"@react-spectrum/theme-light": "^3.4.16",
|
|
95
|
+
"@react-spectrum/toast": "^3.0.0",
|
|
96
|
+
"@react-spectrum/tooltip": "^3.7.2",
|
|
97
|
+
"@react-spectrum/tree": "^3.0.0",
|
|
98
|
+
"@react-spectrum/view": "^3.6.16",
|
|
99
|
+
"@react-spectrum/well": "^3.4.20",
|
|
100
|
+
"@react-stately/collections": "^3.12.2",
|
|
101
|
+
"@react-stately/data": "^3.12.2",
|
|
102
|
+
"@react-types/shared": "^3.28.0",
|
|
100
103
|
"client-only": "^0.0.1"
|
|
101
104
|
},
|
|
102
105
|
"publishConfig": {
|
|
@@ -110,5 +113,5 @@
|
|
|
110
113
|
"@babel/cli": "^7.12.10",
|
|
111
114
|
"@babel/core": "^7.24.3"
|
|
112
115
|
},
|
|
113
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "4d3c72c94eea2d72eb3a0e7d56000c6ef7e39726"
|
|
114
117
|
}
|