@adobe/react-spectrum 3.26.0 → 3.28.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 +2 -0
- package/dist/main.js +10 -1
- package/dist/module.js +2 -0
- package/dist/types.d.ts +5 -1
- package/package.json +55 -53
package/dist/import.mjs
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
export {ActionGroup} from '@react-spectrum/actiongroup';
|
|
14
14
|
export {Badge} from '@react-spectrum/badge';
|
|
15
15
|
export {Breadcrumbs} from '@react-spectrum/breadcrumbs';
|
|
16
|
+
export {ActionBar, ActionBarContainer} from '@react-spectrum/actionbar';
|
|
16
17
|
export {ActionButton, Button, LogicButton, ToggleButton} from '@react-spectrum/button';
|
|
17
18
|
export {Avatar} from '@react-spectrum/avatar';
|
|
18
19
|
export {ButtonGroup} from '@react-spectrum/buttongroup';
|
|
@@ -46,6 +47,7 @@ export {Switch} from '@react-spectrum/switch';
|
|
|
46
47
|
export {Heading, Keyboard, Text} from '@react-spectrum/text';
|
|
47
48
|
export {TableView, TableHeader, TableBody, Column, Row, Cell} from '@react-spectrum/table';
|
|
48
49
|
export {Tabs, TabList, TabPanels} from '@react-spectrum/tabs';
|
|
50
|
+
export {TagGroup} from '@react-spectrum/tag';
|
|
49
51
|
export {TextArea, TextField} from '@react-spectrum/textfield';
|
|
50
52
|
export {theme as darkTheme} from '@react-spectrum/theme-dark';
|
|
51
53
|
export {theme as defaultTheme} from '@react-spectrum/theme-default';
|
package/dist/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
exports.DIRECTORY_DRAG_TYPE = exports.useDragAndDrop = exports.SSRProvider = exports.useNumberFormatter = exports.useMessageFormatter = exports.useLocalizedStringFormatter = exports.useLocale = exports.useFilter = exports.useDateFormatter = exports.useCollator = exports.VisuallyHidden = exports.useTreeData = exports.useListData = exports.useAsyncList = exports.Section = exports.Item = exports.Well = exports.View = exports.Header = exports.Footer = exports.Content = exports.TooltipTrigger = exports.Tooltip = exports.lightTheme = exports.defaultTheme = exports.darkTheme = exports.TextField = exports.TextArea = exports.TabPanels = exports.TabList = exports.Tabs = exports.Cell = exports.Row = exports.Column = exports.TableBody = exports.TableHeader = exports.TableView = exports.Text = exports.Keyboard = exports.Heading = exports.Switch = exports.StatusLight = exports.SearchField = exports.Slider = exports.RangeSlider = exports.RadioGroup = exports.Radio = exports.useProvider = exports.Provider = exports.ProgressCircle = exports.ProgressBar = exports.Picker = exports.NumberField = exports.Meter = exports.MenuTrigger = exports.Menu = exports.ActionMenu = exports.ListView = exports.ListBox = exports.Link = exports.LabeledValue = exports.repeat = exports.minmax = exports.fitContent = exports.Grid = exports.Flex = exports.Image = exports.IllustratedMessage = exports.Icon = exports.Form = exports.Divider = exports.TimeField = exports.DateRangePicker = exports.DatePicker = exports.DateField = exports.useDialogContainer = exports.DialogContainer = exports.DialogTrigger = exports.Dialog = exports.AlertDialog = exports.ContextualHelp = exports.ComboBox = exports.CheckboxGroup = exports.Checkbox = exports.RangeCalendar = exports.Calendar = exports.ButtonGroup = exports.Avatar = exports.ToggleButton = exports.LogicButton = exports.Button = exports.ActionButton = exports.Breadcrumbs = exports.Badge = exports.ActionGroup = void 0;
|
|
4
|
+
exports.DIRECTORY_DRAG_TYPE = exports.useDragAndDrop = exports.SSRProvider = exports.useNumberFormatter = exports.useMessageFormatter = exports.useLocalizedStringFormatter = exports.useLocale = exports.useFilter = exports.useDateFormatter = exports.useCollator = exports.VisuallyHidden = exports.useTreeData = exports.useListData = exports.useAsyncList = exports.Section = exports.Item = exports.Well = exports.View = exports.Header = exports.Footer = exports.Content = exports.TooltipTrigger = exports.Tooltip = exports.lightTheme = exports.defaultTheme = exports.darkTheme = exports.TextField = exports.TextArea = exports.TagGroup = exports.TabPanels = exports.TabList = exports.Tabs = exports.Cell = exports.Row = exports.Column = exports.TableBody = exports.TableHeader = exports.TableView = exports.Text = exports.Keyboard = exports.Heading = exports.Switch = exports.StatusLight = exports.SearchField = exports.Slider = exports.RangeSlider = exports.RadioGroup = exports.Radio = exports.useProvider = exports.Provider = exports.ProgressCircle = exports.ProgressBar = exports.Picker = exports.NumberField = exports.Meter = exports.MenuTrigger = exports.Menu = exports.ActionMenu = exports.ListView = exports.ListBox = exports.Link = exports.LabeledValue = exports.repeat = exports.minmax = exports.fitContent = exports.Grid = exports.Flex = exports.Image = exports.IllustratedMessage = exports.Icon = exports.Form = exports.Divider = exports.TimeField = exports.DateRangePicker = exports.DatePicker = exports.DateField = exports.useDialogContainer = exports.DialogContainer = exports.DialogTrigger = exports.Dialog = exports.AlertDialog = exports.ContextualHelp = exports.ComboBox = exports.CheckboxGroup = exports.Checkbox = exports.RangeCalendar = exports.Calendar = exports.ButtonGroup = exports.Avatar = exports.ToggleButton = exports.LogicButton = exports.Button = exports.ActionButton = exports.ActionBarContainer = exports.ActionBar = exports.Breadcrumbs = exports.Badge = exports.ActionGroup = void 0;
|
|
5
5
|
|
|
6
6
|
var _actiongroup = require("@react-spectrum/actiongroup");
|
|
7
7
|
|
|
@@ -15,6 +15,11 @@ var _breadcrumbs = require("@react-spectrum/breadcrumbs");
|
|
|
15
15
|
|
|
16
16
|
exports.Breadcrumbs = _breadcrumbs.Breadcrumbs;
|
|
17
17
|
|
|
18
|
+
var _actionbar = require("@react-spectrum/actionbar");
|
|
19
|
+
|
|
20
|
+
exports.ActionBar = _actionbar.ActionBar;
|
|
21
|
+
exports.ActionBarContainer = _actionbar.ActionBarContainer;
|
|
22
|
+
|
|
18
23
|
var _button = require("@react-spectrum/button");
|
|
19
24
|
|
|
20
25
|
exports.ActionButton = _button.ActionButton;
|
|
@@ -178,6 +183,10 @@ exports.Tabs = _tabs.Tabs;
|
|
|
178
183
|
exports.TabList = _tabs.TabList;
|
|
179
184
|
exports.TabPanels = _tabs.TabPanels;
|
|
180
185
|
|
|
186
|
+
var _tag = require("@react-spectrum/tag");
|
|
187
|
+
|
|
188
|
+
exports.TagGroup = _tag.TagGroup;
|
|
189
|
+
|
|
181
190
|
var _textfield = require("@react-spectrum/textfield");
|
|
182
191
|
|
|
183
192
|
exports.TextArea = _textfield.TextArea;
|
package/dist/module.js
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
export {ActionGroup} from '@react-spectrum/actiongroup';
|
|
14
14
|
export {Badge} from '@react-spectrum/badge';
|
|
15
15
|
export {Breadcrumbs} from '@react-spectrum/breadcrumbs';
|
|
16
|
+
export {ActionBar, ActionBarContainer} from '@react-spectrum/actionbar';
|
|
16
17
|
export {ActionButton, Button, LogicButton, ToggleButton} from '@react-spectrum/button';
|
|
17
18
|
export {Avatar} from '@react-spectrum/avatar';
|
|
18
19
|
export {ButtonGroup} from '@react-spectrum/buttongroup';
|
|
@@ -46,6 +47,7 @@ export {Switch} from '@react-spectrum/switch';
|
|
|
46
47
|
export {Heading, Keyboard, Text} from '@react-spectrum/text';
|
|
47
48
|
export {TableView, TableHeader, TableBody, Column, Row, Cell} from '@react-spectrum/table';
|
|
48
49
|
export {Tabs, TabList, TabPanels} from '@react-spectrum/tabs';
|
|
50
|
+
export {TagGroup} from '@react-spectrum/tag';
|
|
49
51
|
export {TextArea, TextField} from '@react-spectrum/textfield';
|
|
50
52
|
export {theme as darkTheme} from '@react-spectrum/theme-dark';
|
|
51
53
|
export {theme as defaultTheme} from '@react-spectrum/theme-default';
|
package/dist/types.d.ts
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
export {ActionGroup} from '@react-spectrum/actiongroup';
|
|
14
14
|
export {Badge} from '@react-spectrum/badge';
|
|
15
15
|
export {Breadcrumbs} from '@react-spectrum/breadcrumbs';
|
|
16
|
+
export {ActionBar, ActionBarContainer} from '@react-spectrum/actionbar';
|
|
16
17
|
export {ActionButton, Button, LogicButton, ToggleButton} from '@react-spectrum/button';
|
|
17
18
|
export {Avatar} from '@react-spectrum/avatar';
|
|
18
19
|
export {ButtonGroup} from '@react-spectrum/buttongroup';
|
|
@@ -46,6 +47,7 @@ export {Switch} from '@react-spectrum/switch';
|
|
|
46
47
|
export {Heading, Keyboard, Text} from '@react-spectrum/text';
|
|
47
48
|
export {TableView, TableHeader, TableBody, Column, Row, Cell} from '@react-spectrum/table';
|
|
48
49
|
export {Tabs, TabList, TabPanels} from '@react-spectrum/tabs';
|
|
50
|
+
export {TagGroup} from '@react-spectrum/tag';
|
|
49
51
|
export {TextArea, TextField} from '@react-spectrum/textfield';
|
|
50
52
|
export {theme as darkTheme} from '@react-spectrum/theme-dark';
|
|
51
53
|
export {theme as defaultTheme} from '@react-spectrum/theme-default';
|
|
@@ -60,6 +62,7 @@ export {useCollator, useDateFormatter, useFilter, useLocale, useLocalizedStringF
|
|
|
60
62
|
export {SSRProvider} from '@react-aria/ssr';
|
|
61
63
|
export {useDragAndDrop, DIRECTORY_DRAG_TYPE} from '@react-spectrum/dnd';
|
|
62
64
|
|
|
65
|
+
export type {SpectrumActionBarContainerProps, SpectrumActionBarProps} from '@react-spectrum/actionbar';
|
|
63
66
|
export type {SpectrumActionGroupProps} from '@react-spectrum/actiongroup';
|
|
64
67
|
export type {SpectrumAvatarProps} from '@react-spectrum/avatar';
|
|
65
68
|
export type {SpectrumBadgeProps} from '@react-spectrum/badge';
|
|
@@ -82,7 +85,7 @@ export type {SpectrumLabeledValueProps} from '@react-spectrum/labeledvalue';
|
|
|
82
85
|
export type {SpectrumLinkProps} from '@react-spectrum/link';
|
|
83
86
|
export type {SpectrumListBoxProps} from '@react-spectrum/listbox';
|
|
84
87
|
export type {SpectrumListViewProps} from '@react-spectrum/list';
|
|
85
|
-
export type {SpectrumActionMenuProps, SpectrumMenuProps, SpectrumMenuTriggerProps} from '@react-spectrum/menu';
|
|
88
|
+
export type {SpectrumActionMenuProps, SpectrumMenuProps, SpectrumMenuTriggerProps, SpectrumMenuDialogTriggerProps} from '@react-spectrum/menu';
|
|
86
89
|
export type {SpectrumMeterProps} from '@react-spectrum/meter';
|
|
87
90
|
export type {SpectrumNumberFieldProps} from '@react-spectrum/numberfield';
|
|
88
91
|
export type {SpectrumPickerProps} from '@react-spectrum/picker';
|
|
@@ -96,6 +99,7 @@ export type {SpectrumSwitchProps} from '@react-spectrum/switch';
|
|
|
96
99
|
export type {HeadingProps, KeyboardProps, TextProps} from '@react-spectrum/text';
|
|
97
100
|
export type {SpectrumTableProps, SpectrumColumnProps, TableHeaderProps, TableBodyProps, RowProps, CellProps} from '@react-spectrum/table';
|
|
98
101
|
export type {SpectrumTabListProps, SpectrumTabPanelsProps, SpectrumTabsProps} from '@react-spectrum/tabs';
|
|
102
|
+
export type {SpectrumTagGroupProps} from '@react-spectrum/tag';
|
|
99
103
|
export type {SpectrumTextFieldProps} from '@react-spectrum/textfield';
|
|
100
104
|
export type {SpectrumTooltipProps, SpectrumTooltipTriggerProps} from '@react-spectrum/tooltip';
|
|
101
105
|
export type {ContentProps, FooterProps, HeaderProps, ViewProps} from '@react-spectrum/view';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/react-spectrum",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.0",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -24,57 +24,59 @@
|
|
|
24
24
|
"url": "https://github.com/adobe/react-spectrum"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@react-aria/i18n": "^3.
|
|
28
|
-
"@react-aria/ssr": "^3.
|
|
29
|
-
"@react-aria/visually-hidden": "^3.8.
|
|
30
|
-
"@react-spectrum/
|
|
31
|
-
"@react-spectrum/
|
|
32
|
-
"@react-spectrum/
|
|
33
|
-
"@react-spectrum/
|
|
34
|
-
"@react-spectrum/
|
|
35
|
-
"@react-spectrum/
|
|
36
|
-
"@react-spectrum/
|
|
37
|
-
"@react-spectrum/
|
|
38
|
-
"@react-spectrum/
|
|
39
|
-
"@react-spectrum/
|
|
40
|
-
"@react-spectrum/
|
|
41
|
-
"@react-spectrum/
|
|
42
|
-
"@react-spectrum/
|
|
43
|
-
"@react-spectrum/
|
|
44
|
-
"@react-spectrum/
|
|
45
|
-
"@react-spectrum/
|
|
46
|
-
"@react-spectrum/
|
|
47
|
-
"@react-spectrum/
|
|
48
|
-
"@react-spectrum/
|
|
49
|
-
"@react-spectrum/
|
|
50
|
-
"@react-spectrum/
|
|
51
|
-
"@react-spectrum/
|
|
52
|
-
"@react-spectrum/
|
|
53
|
-
"@react-spectrum/
|
|
54
|
-
"@react-spectrum/
|
|
55
|
-
"@react-spectrum/
|
|
56
|
-
"@react-spectrum/
|
|
57
|
-
"@react-spectrum/
|
|
58
|
-
"@react-spectrum/
|
|
59
|
-
"@react-spectrum/
|
|
60
|
-
"@react-spectrum/
|
|
61
|
-
"@react-spectrum/
|
|
62
|
-
"@react-spectrum/
|
|
63
|
-
"@react-spectrum/
|
|
64
|
-
"@react-spectrum/
|
|
65
|
-
"@react-spectrum/
|
|
66
|
-
"@react-spectrum/
|
|
67
|
-
"@react-spectrum/
|
|
68
|
-
"@react-spectrum/
|
|
69
|
-
"@react-spectrum/
|
|
70
|
-
"@react-spectrum/
|
|
71
|
-
"@react-spectrum/theme-
|
|
72
|
-
"@react-spectrum/
|
|
73
|
-
"@react-spectrum/
|
|
74
|
-
"@react-spectrum/
|
|
75
|
-
"@react-
|
|
76
|
-
"@react-
|
|
77
|
-
"@react-
|
|
27
|
+
"@react-aria/i18n": "^3.8.0",
|
|
28
|
+
"@react-aria/ssr": "^3.7.0",
|
|
29
|
+
"@react-aria/visually-hidden": "^3.8.2",
|
|
30
|
+
"@react-spectrum/actionbar": "^3.1.0",
|
|
31
|
+
"@react-spectrum/actiongroup": "^3.9.0",
|
|
32
|
+
"@react-spectrum/avatar": "^3.0.2",
|
|
33
|
+
"@react-spectrum/badge": "^3.1.3",
|
|
34
|
+
"@react-spectrum/breadcrumbs": "^3.8.0",
|
|
35
|
+
"@react-spectrum/button": "^3.12.3",
|
|
36
|
+
"@react-spectrum/buttongroup": "^3.6.3",
|
|
37
|
+
"@react-spectrum/calendar": "^3.3.0",
|
|
38
|
+
"@react-spectrum/checkbox": "^3.7.3",
|
|
39
|
+
"@react-spectrum/combobox": "^3.9.0",
|
|
40
|
+
"@react-spectrum/contextualhelp": "^3.6.0",
|
|
41
|
+
"@react-spectrum/datepicker": "^3.6.0",
|
|
42
|
+
"@react-spectrum/dialog": "^3.8.0",
|
|
43
|
+
"@react-spectrum/divider": "^3.5.3",
|
|
44
|
+
"@react-spectrum/dnd": "^3.3.0",
|
|
45
|
+
"@react-spectrum/form": "^3.6.3",
|
|
46
|
+
"@react-spectrum/icon": "^3.7.3",
|
|
47
|
+
"@react-spectrum/illustratedmessage": "^3.4.3",
|
|
48
|
+
"@react-spectrum/image": "^3.4.3",
|
|
49
|
+
"@react-spectrum/labeledvalue": "^3.1.3",
|
|
50
|
+
"@react-spectrum/layout": "^3.5.3",
|
|
51
|
+
"@react-spectrum/link": "^3.5.3",
|
|
52
|
+
"@react-spectrum/list": "^3.6.0",
|
|
53
|
+
"@react-spectrum/listbox": "^3.11.0",
|
|
54
|
+
"@react-spectrum/menu": "^3.12.0",
|
|
55
|
+
"@react-spectrum/meter": "^3.4.3",
|
|
56
|
+
"@react-spectrum/numberfield": "^3.6.3",
|
|
57
|
+
"@react-spectrum/overlays": "^5.2.0",
|
|
58
|
+
"@react-spectrum/picker": "^3.11.0",
|
|
59
|
+
"@react-spectrum/progress": "^3.6.0",
|
|
60
|
+
"@react-spectrum/provider": "^3.8.0",
|
|
61
|
+
"@react-spectrum/radio": "^3.5.3",
|
|
62
|
+
"@react-spectrum/searchfield": "^3.7.3",
|
|
63
|
+
"@react-spectrum/slider": "^3.5.3",
|
|
64
|
+
"@react-spectrum/statuslight": "^3.5.3",
|
|
65
|
+
"@react-spectrum/switch": "^3.4.3",
|
|
66
|
+
"@react-spectrum/table": "^3.10.0",
|
|
67
|
+
"@react-spectrum/tabs": "^3.7.0",
|
|
68
|
+
"@react-spectrum/tag": "^3.1.0",
|
|
69
|
+
"@react-spectrum/text": "^3.4.3",
|
|
70
|
+
"@react-spectrum/textfield": "^3.10.3",
|
|
71
|
+
"@react-spectrum/theme-dark": "^3.5.3",
|
|
72
|
+
"@react-spectrum/theme-default": "^3.5.3",
|
|
73
|
+
"@react-spectrum/theme-light": "^3.4.3",
|
|
74
|
+
"@react-spectrum/tooltip": "^3.5.2",
|
|
75
|
+
"@react-spectrum/view": "^3.6.0",
|
|
76
|
+
"@react-spectrum/well": "^3.4.3",
|
|
77
|
+
"@react-stately/collections": "^3.9.0",
|
|
78
|
+
"@react-stately/data": "^3.10.0",
|
|
79
|
+
"@react-types/shared": "^3.18.1"
|
|
78
80
|
},
|
|
79
81
|
"publishConfig": {
|
|
80
82
|
"access": "public"
|
|
@@ -83,5 +85,5 @@
|
|
|
83
85
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
|
|
84
86
|
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
|
|
85
87
|
},
|
|
86
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "504e40e0a50c1b20ed0fb3ba9561a263b6d5565e"
|
|
87
89
|
}
|