react-stately 3.14.1-nightly.3311 → 3.15.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/main.js +13 -1
- package/dist/module.js +2 -0
- package/dist/types.d.ts +4 -0
- package/package.json +22 -20
package/dist/main.js
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
exports.useTreeState = exports.useTooltipTriggerState = exports.useToggleState = exports.useTabListState = exports.useTableState = exports.useMultipleSelectionState = exports.useSliderState = exports.useSelectState = exports.useSearchFieldState = exports.useRadioGroupState = exports.useOverlayTriggerState = exports.useNumberFieldState = exports.useMenuTriggerState = exports.useSingleSelectListState = exports.useListState = exports.useTreeData = exports.useListData = exports.useAsyncList = exports.useCollection = exports.Section = exports.Item = exports.useComboBoxState = exports.useCheckboxGroupState = void 0;
|
|
4
|
+
exports.useTreeState = exports.useTooltipTriggerState = exports.useToggleState = exports.useTabListState = exports.useTableState = exports.useMultipleSelectionState = exports.useSliderState = exports.useSelectState = exports.useSearchFieldState = exports.useRadioGroupState = exports.useOverlayTriggerState = exports.useNumberFieldState = exports.useMenuTriggerState = exports.useSingleSelectListState = exports.useListState = exports.useTreeData = exports.useListData = exports.useAsyncList = exports.useCollection = exports.Section = exports.Item = exports.useTimeFieldState = exports.useDateRangePickerState = exports.useDatePickerState = exports.useDateFieldState = exports.useComboBoxState = exports.useCheckboxGroupState = exports.useRangeCalendarState = exports.useCalendarState = void 0;
|
|
5
|
+
|
|
6
|
+
var _calendar = require("@react-stately/calendar");
|
|
7
|
+
|
|
8
|
+
exports.useCalendarState = _calendar.useCalendarState;
|
|
9
|
+
exports.useRangeCalendarState = _calendar.useRangeCalendarState;
|
|
5
10
|
|
|
6
11
|
var _checkbox = require("@react-stately/checkbox");
|
|
7
12
|
|
|
@@ -11,6 +16,13 @@ var _combobox = require("@react-stately/combobox");
|
|
|
11
16
|
|
|
12
17
|
exports.useComboBoxState = _combobox.useComboBoxState;
|
|
13
18
|
|
|
19
|
+
var _datepicker = require("@react-stately/datepicker");
|
|
20
|
+
|
|
21
|
+
exports.useDateFieldState = _datepicker.useDateFieldState;
|
|
22
|
+
exports.useDatePickerState = _datepicker.useDatePickerState;
|
|
23
|
+
exports.useDateRangePickerState = _datepicker.useDateRangePickerState;
|
|
24
|
+
exports.useTimeFieldState = _datepicker.useTimeFieldState;
|
|
25
|
+
|
|
14
26
|
var _collections = require("@react-stately/collections");
|
|
15
27
|
|
|
16
28
|
exports.Item = _collections.Item;
|
package/dist/module.js
CHANGED
|
@@ -11,8 +11,10 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
export {useCalendarState, useRangeCalendarState} from '@react-stately/calendar';
|
|
14
15
|
export {useCheckboxGroupState} from '@react-stately/checkbox';
|
|
15
16
|
export {useComboBoxState} from '@react-stately/combobox';
|
|
17
|
+
export {useDateFieldState, useDatePickerState, useDateRangePickerState, useTimeFieldState} from '@react-stately/datepicker';
|
|
16
18
|
export {Item, Section, useCollection} from '@react-stately/collections';
|
|
17
19
|
export {useAsyncList, useListData, useTreeData} from '@react-stately/data';
|
|
18
20
|
export {useListState, useSingleSelectListState} from '@react-stately/list';
|
package/dist/types.d.ts
CHANGED
|
@@ -10,8 +10,10 @@
|
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
+
export type {CalendarState, RangeCalendarState} from '@react-stately/calendar';
|
|
13
14
|
export type {CheckboxGroupState} from '@react-stately/checkbox';
|
|
14
15
|
export type {ComboBoxState} from '@react-stately/combobox';
|
|
16
|
+
export type {DateFieldState, DatePickerState, DateRangePickerState} from '@react-stately/datepicker';
|
|
15
17
|
export type {ListData} from '@react-stately/data';
|
|
16
18
|
export type {ListProps, ListState, SingleSelectListProps, SingleSelectListState} from '@react-stately/list';
|
|
17
19
|
export type {MenuTriggerState} from '@react-stately/menu';
|
|
@@ -28,8 +30,10 @@ export type {ToggleState} from '@react-stately/toggle';
|
|
|
28
30
|
export type {TooltipTriggerState} from '@react-stately/tooltip';
|
|
29
31
|
export type {TreeProps, TreeState} from '@react-stately/tree';
|
|
30
32
|
|
|
33
|
+
export {useCalendarState, useRangeCalendarState} from '@react-stately/calendar';
|
|
31
34
|
export {useCheckboxGroupState} from '@react-stately/checkbox';
|
|
32
35
|
export {useComboBoxState} from '@react-stately/combobox';
|
|
36
|
+
export {useDateFieldState, useDatePickerState, useDateRangePickerState, useTimeFieldState} from '@react-stately/datepicker';
|
|
33
37
|
export {Item, Section, useCollection} from '@react-stately/collections';
|
|
34
38
|
export {useAsyncList, useListData, useTreeData} from '@react-stately/data';
|
|
35
39
|
export {useListState, useSingleSelectListState} from '@react-stately/list';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-stately",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.15.0",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -19,24 +19,26 @@
|
|
|
19
19
|
"url": "https://github.com/adobe/react-spectrum"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@react-stately/
|
|
23
|
-
"@react-stately/
|
|
24
|
-
"@react-stately/
|
|
25
|
-
"@react-stately/
|
|
26
|
-
"@react-stately/
|
|
27
|
-
"@react-stately/
|
|
28
|
-
"@react-stately/
|
|
29
|
-
"@react-stately/
|
|
30
|
-
"@react-stately/
|
|
31
|
-
"@react-stately/
|
|
32
|
-
"@react-stately/
|
|
33
|
-
"@react-stately/
|
|
34
|
-
"@react-stately/
|
|
35
|
-
"@react-stately/
|
|
36
|
-
"@react-stately/
|
|
37
|
-
"@react-stately/
|
|
38
|
-
"@react-stately/
|
|
39
|
-
"@react-stately/
|
|
22
|
+
"@react-stately/calendar": "^3.0.0",
|
|
23
|
+
"@react-stately/checkbox": "^3.1.1",
|
|
24
|
+
"@react-stately/collections": "^3.4.1",
|
|
25
|
+
"@react-stately/combobox": "^3.1.1",
|
|
26
|
+
"@react-stately/data": "^3.5.1",
|
|
27
|
+
"@react-stately/datepicker": "^3.0.0",
|
|
28
|
+
"@react-stately/list": "^3.5.1",
|
|
29
|
+
"@react-stately/menu": "^3.3.1",
|
|
30
|
+
"@react-stately/numberfield": "^3.1.1",
|
|
31
|
+
"@react-stately/overlays": "^3.3.1",
|
|
32
|
+
"@react-stately/radio": "^3.4.1",
|
|
33
|
+
"@react-stately/searchfield": "^3.2.1",
|
|
34
|
+
"@react-stately/select": "^3.2.1",
|
|
35
|
+
"@react-stately/selection": "^3.10.1",
|
|
36
|
+
"@react-stately/slider": "^3.1.1",
|
|
37
|
+
"@react-stately/table": "^3.2.0",
|
|
38
|
+
"@react-stately/tabs": "^3.1.1",
|
|
39
|
+
"@react-stately/toggle": "^3.3.1",
|
|
40
|
+
"@react-stately/tooltip": "^3.1.1",
|
|
41
|
+
"@react-stately/tree": "^3.3.1"
|
|
40
42
|
},
|
|
41
43
|
"peerDependencies": {
|
|
42
44
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
"publishConfig": {
|
|
45
47
|
"access": "public"
|
|
46
48
|
},
|
|
47
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "715c3f563ccf8c2e0102d3e18403d9db21a05a71"
|
|
48
50
|
}
|