@react-stately/selection 3.9.2 → 3.9.3
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 +34 -34
- package/dist/module.js +32 -32
- package/package.json +4 -4
package/dist/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
var $
|
|
2
|
-
var $
|
|
1
|
+
var $83d9f$react = require("react");
|
|
2
|
+
var $83d9f$reactstatelyutils = require("@react-stately/utils");
|
|
3
3
|
|
|
4
4
|
function $parcel$exportWildcard(dest, source) {
|
|
5
5
|
Object.keys(source).forEach(function(key) {
|
|
@@ -20,14 +20,14 @@ function $parcel$exportWildcard(dest, source) {
|
|
|
20
20
|
function $parcel$export(e, n, v, s) {
|
|
21
21
|
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
22
22
|
}
|
|
23
|
-
var $
|
|
23
|
+
var $1adc19da2128bba9$exports = {};
|
|
24
24
|
|
|
25
|
-
$parcel$export($
|
|
25
|
+
$parcel$export($1adc19da2128bba9$exports, "useMultipleSelectionState", () => $1adc19da2128bba9$export$253fe78d46329472);
|
|
26
26
|
|
|
27
|
-
class $
|
|
27
|
+
class $21c847070f1f9569$export$52baac22726c72bf extends Set {
|
|
28
28
|
constructor(keys, anchorKey, currentKey){
|
|
29
29
|
super(keys);
|
|
30
|
-
if (keys instanceof $
|
|
30
|
+
if (keys instanceof $21c847070f1f9569$export$52baac22726c72bf) {
|
|
31
31
|
this.anchorKey = anchorKey || keys.anchorKey;
|
|
32
32
|
this.currentKey = currentKey || keys.currentKey;
|
|
33
33
|
} else {
|
|
@@ -39,36 +39,36 @@ class $0c539c98667218c7$export$52baac22726c72bf extends Set {
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
function $
|
|
42
|
+
function $1adc19da2128bba9$var$equalSets(setA, setB) {
|
|
43
43
|
if (setA.size !== setB.size) return false;
|
|
44
44
|
for (let item of setA){
|
|
45
45
|
if (!setB.has(item)) return false;
|
|
46
46
|
}
|
|
47
47
|
return true;
|
|
48
48
|
}
|
|
49
|
-
function $
|
|
49
|
+
function $1adc19da2128bba9$export$253fe78d46329472(props) {
|
|
50
50
|
let { selectionMode: selectionMode = 'none' , disallowEmptySelection: disallowEmptySelection , allowDuplicateSelectionEvents: allowDuplicateSelectionEvents } = props;
|
|
51
51
|
// We want synchronous updates to `isFocused` and `focusedKey` after their setters are called.
|
|
52
52
|
// But we also need to trigger a react re-render. So, we have both a ref (sync) and state (async).
|
|
53
|
-
let isFocusedRef = $
|
|
54
|
-
let [, setFocused] = $
|
|
55
|
-
let focusedKeyRef = $
|
|
56
|
-
let childFocusStrategyRef = $
|
|
57
|
-
let [, setFocusedKey] = $
|
|
58
|
-
let selectedKeysProp = $
|
|
53
|
+
let isFocusedRef = $83d9f$react.useRef(false);
|
|
54
|
+
let [, setFocused] = $83d9f$react.useState(false);
|
|
55
|
+
let focusedKeyRef = $83d9f$react.useRef(null);
|
|
56
|
+
let childFocusStrategyRef = $83d9f$react.useRef(null);
|
|
57
|
+
let [, setFocusedKey] = $83d9f$react.useState(null);
|
|
58
|
+
let selectedKeysProp = $83d9f$react.useMemo(()=>$1adc19da2128bba9$var$convertSelection(props.selectedKeys)
|
|
59
59
|
, [
|
|
60
60
|
props.selectedKeys
|
|
61
61
|
]);
|
|
62
|
-
let defaultSelectedKeys = $
|
|
62
|
+
let defaultSelectedKeys = $83d9f$react.useMemo(()=>$1adc19da2128bba9$var$convertSelection(props.defaultSelectedKeys, new $21c847070f1f9569$export$52baac22726c72bf())
|
|
63
63
|
, [
|
|
64
64
|
props.defaultSelectedKeys
|
|
65
65
|
]);
|
|
66
|
-
let [selectedKeys, setSelectedKeys] = $
|
|
67
|
-
let disabledKeysProp = $
|
|
66
|
+
let [selectedKeys, setSelectedKeys] = $83d9f$reactstatelyutils.useControlledState(selectedKeysProp, defaultSelectedKeys, props.onSelectionChange);
|
|
67
|
+
let disabledKeysProp = $83d9f$react.useMemo(()=>props.disabledKeys ? new Set(props.disabledKeys) : new Set()
|
|
68
68
|
, [
|
|
69
69
|
props.disabledKeys
|
|
70
70
|
]);
|
|
71
|
-
let [selectionBehavior, setSelectionBehavior] = $
|
|
71
|
+
let [selectionBehavior, setSelectionBehavior] = $83d9f$react.useState(props.selectionBehavior || 'toggle');
|
|
72
72
|
// If the selectionBehavior prop is set to replace, but the current state is toggle (e.g. due to long press
|
|
73
73
|
// to enter selection mode on touch), and the selection becomes empty, reset the selection behavior.
|
|
74
74
|
if (props.selectionBehavior === 'replace' && selectionBehavior === 'toggle' && typeof selectedKeys === 'object' && selectedKeys.size === 0) setSelectionBehavior('replace');
|
|
@@ -97,22 +97,22 @@ function $1458da5acdb237f0$export$253fe78d46329472(props) {
|
|
|
97
97
|
},
|
|
98
98
|
selectedKeys: selectedKeys,
|
|
99
99
|
setSelectedKeys (keys) {
|
|
100
|
-
if (allowDuplicateSelectionEvents || !$
|
|
100
|
+
if (allowDuplicateSelectionEvents || !$1adc19da2128bba9$var$equalSets(keys, selectedKeys)) setSelectedKeys(keys);
|
|
101
101
|
},
|
|
102
102
|
disabledKeys: disabledKeysProp
|
|
103
103
|
};
|
|
104
104
|
}
|
|
105
|
-
function $
|
|
105
|
+
function $1adc19da2128bba9$var$convertSelection(selection, defaultValue) {
|
|
106
106
|
if (!selection) return defaultValue;
|
|
107
|
-
return selection === 'all' ? 'all' : new $
|
|
107
|
+
return selection === 'all' ? 'all' : new $21c847070f1f9569$export$52baac22726c72bf(selection);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
var $
|
|
111
|
+
var $8112da6fa5bbc322$exports = {};
|
|
112
112
|
|
|
113
|
-
$parcel$export($
|
|
113
|
+
$parcel$export($8112da6fa5bbc322$exports, "SelectionManager", () => $8112da6fa5bbc322$export$6c8a5aaad13c9852);
|
|
114
114
|
|
|
115
|
-
class $
|
|
115
|
+
class $8112da6fa5bbc322$export$6c8a5aaad13c9852 {
|
|
116
116
|
/**
|
|
117
117
|
* The type of selection that is allowed in the collection.
|
|
118
118
|
*/ get selectionMode() {
|
|
@@ -218,13 +218,13 @@ class $dbd3947e9b73529f$export$6c8a5aaad13c9852 {
|
|
|
218
218
|
toKey = this.getKey(toKey);
|
|
219
219
|
let selection;
|
|
220
220
|
// Only select the one key if coming from a select all.
|
|
221
|
-
if (this.state.selectedKeys === 'all') selection = new $
|
|
221
|
+
if (this.state.selectedKeys === 'all') selection = new $21c847070f1f9569$export$52baac22726c72bf([
|
|
222
222
|
toKey
|
|
223
223
|
], toKey, toKey);
|
|
224
224
|
else {
|
|
225
225
|
let selectedKeys = this.state.selectedKeys;
|
|
226
226
|
let anchorKey = selectedKeys.anchorKey || toKey;
|
|
227
|
-
selection = new $
|
|
227
|
+
selection = new $21c847070f1f9569$export$52baac22726c72bf(selectedKeys, anchorKey, toKey);
|
|
228
228
|
for (let key of this.getKeyRange(anchorKey, selectedKeys.currentKey || toKey))selection.delete(key);
|
|
229
229
|
for (let key1 of this.getKeyRange(toKey, anchorKey))if (!this.state.disabledKeys.has(key1)) selection.add(key1);
|
|
230
230
|
}
|
|
@@ -271,7 +271,7 @@ class $dbd3947e9b73529f$export$6c8a5aaad13c9852 {
|
|
|
271
271
|
}
|
|
272
272
|
key = this.getKey(key);
|
|
273
273
|
if (key == null) return;
|
|
274
|
-
let keys = new $
|
|
274
|
+
let keys = new $21c847070f1f9569$export$52baac22726c72bf(this.state.selectedKeys === 'all' ? this.getSelectAllKeys() : this.state.selectedKeys);
|
|
275
275
|
if (keys.has(key)) keys.delete(key);
|
|
276
276
|
else {
|
|
277
277
|
keys.add(key);
|
|
@@ -287,7 +287,7 @@ class $dbd3947e9b73529f$export$6c8a5aaad13c9852 {
|
|
|
287
287
|
if (this.selectionMode === 'none') return;
|
|
288
288
|
key = this.getKey(key);
|
|
289
289
|
if (key == null) return;
|
|
290
|
-
this.state.setSelectedKeys(new $
|
|
290
|
+
this.state.setSelectedKeys(new $21c847070f1f9569$export$52baac22726c72bf([
|
|
291
291
|
key
|
|
292
292
|
], key, key));
|
|
293
293
|
}
|
|
@@ -295,7 +295,7 @@ class $dbd3947e9b73529f$export$6c8a5aaad13c9852 {
|
|
|
295
295
|
* Replaces the selection with the given keys.
|
|
296
296
|
*/ setSelectedKeys(keys) {
|
|
297
297
|
if (this.selectionMode === 'none') return;
|
|
298
|
-
let selection = new $
|
|
298
|
+
let selection = new $21c847070f1f9569$export$52baac22726c72bf();
|
|
299
299
|
for (let key of keys){
|
|
300
300
|
key = this.getKey(key);
|
|
301
301
|
if (key != null) {
|
|
@@ -331,7 +331,7 @@ class $dbd3947e9b73529f$export$6c8a5aaad13c9852 {
|
|
|
331
331
|
/**
|
|
332
332
|
* Removes all keys from the selection.
|
|
333
333
|
*/ clearSelection() {
|
|
334
|
-
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $
|
|
334
|
+
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $21c847070f1f9569$export$52baac22726c72bf());
|
|
335
335
|
}
|
|
336
336
|
/**
|
|
337
337
|
* Toggles between select all and an empty selection.
|
|
@@ -379,12 +379,12 @@ class $dbd3947e9b73529f$export$6c8a5aaad13c9852 {
|
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
|
|
382
|
-
var $
|
|
382
|
+
var $85467f818ce6e562$exports = {};
|
|
383
383
|
|
|
384
384
|
|
|
385
|
-
$parcel$exportWildcard(module.exports, $
|
|
386
|
-
$parcel$exportWildcard(module.exports, $
|
|
387
|
-
$parcel$exportWildcard(module.exports, $
|
|
385
|
+
$parcel$exportWildcard(module.exports, $1adc19da2128bba9$exports);
|
|
386
|
+
$parcel$exportWildcard(module.exports, $8112da6fa5bbc322$exports);
|
|
387
|
+
$parcel$exportWildcard(module.exports, $85467f818ce6e562$exports);
|
|
388
388
|
|
|
389
389
|
|
|
390
390
|
//# sourceMappingURL=main.js.map
|
package/dist/module.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {useRef as $
|
|
2
|
-
import {useControlledState as $
|
|
1
|
+
import {useRef as $Qsto2$useRef, useState as $Qsto2$useState, useMemo as $Qsto2$useMemo} from "react";
|
|
2
|
+
import {useControlledState as $Qsto2$useControlledState} from "@react-stately/utils";
|
|
3
3
|
|
|
4
4
|
function $parcel$export(e, n, v, s) {
|
|
5
5
|
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
6
6
|
}
|
|
7
|
-
var $
|
|
7
|
+
var $7af3f5b51489e0b5$exports = {};
|
|
8
8
|
|
|
9
|
-
$parcel$export($
|
|
9
|
+
$parcel$export($7af3f5b51489e0b5$exports, "useMultipleSelectionState", () => $7af3f5b51489e0b5$export$253fe78d46329472);
|
|
10
10
|
|
|
11
|
-
class $
|
|
11
|
+
class $e40ea825a81a3709$export$52baac22726c72bf extends Set {
|
|
12
12
|
constructor(keys, anchorKey, currentKey){
|
|
13
13
|
super(keys);
|
|
14
|
-
if (keys instanceof $
|
|
14
|
+
if (keys instanceof $e40ea825a81a3709$export$52baac22726c72bf) {
|
|
15
15
|
this.anchorKey = anchorKey || keys.anchorKey;
|
|
16
16
|
this.currentKey = currentKey || keys.currentKey;
|
|
17
17
|
} else {
|
|
@@ -23,36 +23,36 @@ class $84eb7a4250035b1f$export$52baac22726c72bf extends Set {
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
function $
|
|
26
|
+
function $7af3f5b51489e0b5$var$equalSets(setA, setB) {
|
|
27
27
|
if (setA.size !== setB.size) return false;
|
|
28
28
|
for (let item of setA){
|
|
29
29
|
if (!setB.has(item)) return false;
|
|
30
30
|
}
|
|
31
31
|
return true;
|
|
32
32
|
}
|
|
33
|
-
function $
|
|
33
|
+
function $7af3f5b51489e0b5$export$253fe78d46329472(props) {
|
|
34
34
|
let { selectionMode: selectionMode = 'none' , disallowEmptySelection: disallowEmptySelection , allowDuplicateSelectionEvents: allowDuplicateSelectionEvents } = props;
|
|
35
35
|
// We want synchronous updates to `isFocused` and `focusedKey` after their setters are called.
|
|
36
36
|
// But we also need to trigger a react re-render. So, we have both a ref (sync) and state (async).
|
|
37
|
-
let isFocusedRef = $
|
|
38
|
-
let [, setFocused] = $
|
|
39
|
-
let focusedKeyRef = $
|
|
40
|
-
let childFocusStrategyRef = $
|
|
41
|
-
let [, setFocusedKey] = $
|
|
42
|
-
let selectedKeysProp = $
|
|
37
|
+
let isFocusedRef = $Qsto2$useRef(false);
|
|
38
|
+
let [, setFocused] = $Qsto2$useState(false);
|
|
39
|
+
let focusedKeyRef = $Qsto2$useRef(null);
|
|
40
|
+
let childFocusStrategyRef = $Qsto2$useRef(null);
|
|
41
|
+
let [, setFocusedKey] = $Qsto2$useState(null);
|
|
42
|
+
let selectedKeysProp = $Qsto2$useMemo(()=>$7af3f5b51489e0b5$var$convertSelection(props.selectedKeys)
|
|
43
43
|
, [
|
|
44
44
|
props.selectedKeys
|
|
45
45
|
]);
|
|
46
|
-
let defaultSelectedKeys = $
|
|
46
|
+
let defaultSelectedKeys = $Qsto2$useMemo(()=>$7af3f5b51489e0b5$var$convertSelection(props.defaultSelectedKeys, new $e40ea825a81a3709$export$52baac22726c72bf())
|
|
47
47
|
, [
|
|
48
48
|
props.defaultSelectedKeys
|
|
49
49
|
]);
|
|
50
|
-
let [selectedKeys, setSelectedKeys] = $
|
|
51
|
-
let disabledKeysProp = $
|
|
50
|
+
let [selectedKeys, setSelectedKeys] = $Qsto2$useControlledState(selectedKeysProp, defaultSelectedKeys, props.onSelectionChange);
|
|
51
|
+
let disabledKeysProp = $Qsto2$useMemo(()=>props.disabledKeys ? new Set(props.disabledKeys) : new Set()
|
|
52
52
|
, [
|
|
53
53
|
props.disabledKeys
|
|
54
54
|
]);
|
|
55
|
-
let [selectionBehavior, setSelectionBehavior] = $
|
|
55
|
+
let [selectionBehavior, setSelectionBehavior] = $Qsto2$useState(props.selectionBehavior || 'toggle');
|
|
56
56
|
// If the selectionBehavior prop is set to replace, but the current state is toggle (e.g. due to long press
|
|
57
57
|
// to enter selection mode on touch), and the selection becomes empty, reset the selection behavior.
|
|
58
58
|
if (props.selectionBehavior === 'replace' && selectionBehavior === 'toggle' && typeof selectedKeys === 'object' && selectedKeys.size === 0) setSelectionBehavior('replace');
|
|
@@ -81,22 +81,22 @@ function $ec35bdc00c823be9$export$253fe78d46329472(props) {
|
|
|
81
81
|
},
|
|
82
82
|
selectedKeys: selectedKeys,
|
|
83
83
|
setSelectedKeys (keys) {
|
|
84
|
-
if (allowDuplicateSelectionEvents || !$
|
|
84
|
+
if (allowDuplicateSelectionEvents || !$7af3f5b51489e0b5$var$equalSets(keys, selectedKeys)) setSelectedKeys(keys);
|
|
85
85
|
},
|
|
86
86
|
disabledKeys: disabledKeysProp
|
|
87
87
|
};
|
|
88
88
|
}
|
|
89
|
-
function $
|
|
89
|
+
function $7af3f5b51489e0b5$var$convertSelection(selection, defaultValue) {
|
|
90
90
|
if (!selection) return defaultValue;
|
|
91
|
-
return selection === 'all' ? 'all' : new $
|
|
91
|
+
return selection === 'all' ? 'all' : new $e40ea825a81a3709$export$52baac22726c72bf(selection);
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
|
|
95
|
-
var $
|
|
95
|
+
var $d496c0a20b6e58ec$exports = {};
|
|
96
96
|
|
|
97
|
-
$parcel$export($
|
|
97
|
+
$parcel$export($d496c0a20b6e58ec$exports, "SelectionManager", () => $d496c0a20b6e58ec$export$6c8a5aaad13c9852);
|
|
98
98
|
|
|
99
|
-
class $
|
|
99
|
+
class $d496c0a20b6e58ec$export$6c8a5aaad13c9852 {
|
|
100
100
|
/**
|
|
101
101
|
* The type of selection that is allowed in the collection.
|
|
102
102
|
*/ get selectionMode() {
|
|
@@ -202,13 +202,13 @@ class $1c74ece56c82b9c4$export$6c8a5aaad13c9852 {
|
|
|
202
202
|
toKey = this.getKey(toKey);
|
|
203
203
|
let selection;
|
|
204
204
|
// Only select the one key if coming from a select all.
|
|
205
|
-
if (this.state.selectedKeys === 'all') selection = new $
|
|
205
|
+
if (this.state.selectedKeys === 'all') selection = new $e40ea825a81a3709$export$52baac22726c72bf([
|
|
206
206
|
toKey
|
|
207
207
|
], toKey, toKey);
|
|
208
208
|
else {
|
|
209
209
|
let selectedKeys = this.state.selectedKeys;
|
|
210
210
|
let anchorKey = selectedKeys.anchorKey || toKey;
|
|
211
|
-
selection = new $
|
|
211
|
+
selection = new $e40ea825a81a3709$export$52baac22726c72bf(selectedKeys, anchorKey, toKey);
|
|
212
212
|
for (let key of this.getKeyRange(anchorKey, selectedKeys.currentKey || toKey))selection.delete(key);
|
|
213
213
|
for (let key1 of this.getKeyRange(toKey, anchorKey))if (!this.state.disabledKeys.has(key1)) selection.add(key1);
|
|
214
214
|
}
|
|
@@ -255,7 +255,7 @@ class $1c74ece56c82b9c4$export$6c8a5aaad13c9852 {
|
|
|
255
255
|
}
|
|
256
256
|
key = this.getKey(key);
|
|
257
257
|
if (key == null) return;
|
|
258
|
-
let keys = new $
|
|
258
|
+
let keys = new $e40ea825a81a3709$export$52baac22726c72bf(this.state.selectedKeys === 'all' ? this.getSelectAllKeys() : this.state.selectedKeys);
|
|
259
259
|
if (keys.has(key)) keys.delete(key);
|
|
260
260
|
else {
|
|
261
261
|
keys.add(key);
|
|
@@ -271,7 +271,7 @@ class $1c74ece56c82b9c4$export$6c8a5aaad13c9852 {
|
|
|
271
271
|
if (this.selectionMode === 'none') return;
|
|
272
272
|
key = this.getKey(key);
|
|
273
273
|
if (key == null) return;
|
|
274
|
-
this.state.setSelectedKeys(new $
|
|
274
|
+
this.state.setSelectedKeys(new $e40ea825a81a3709$export$52baac22726c72bf([
|
|
275
275
|
key
|
|
276
276
|
], key, key));
|
|
277
277
|
}
|
|
@@ -279,7 +279,7 @@ class $1c74ece56c82b9c4$export$6c8a5aaad13c9852 {
|
|
|
279
279
|
* Replaces the selection with the given keys.
|
|
280
280
|
*/ setSelectedKeys(keys) {
|
|
281
281
|
if (this.selectionMode === 'none') return;
|
|
282
|
-
let selection = new $
|
|
282
|
+
let selection = new $e40ea825a81a3709$export$52baac22726c72bf();
|
|
283
283
|
for (let key of keys){
|
|
284
284
|
key = this.getKey(key);
|
|
285
285
|
if (key != null) {
|
|
@@ -315,7 +315,7 @@ class $1c74ece56c82b9c4$export$6c8a5aaad13c9852 {
|
|
|
315
315
|
/**
|
|
316
316
|
* Removes all keys from the selection.
|
|
317
317
|
*/ clearSelection() {
|
|
318
|
-
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $
|
|
318
|
+
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $e40ea825a81a3709$export$52baac22726c72bf());
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
321
|
* Toggles between select all and an empty selection.
|
|
@@ -363,10 +363,10 @@ class $1c74ece56c82b9c4$export$6c8a5aaad13c9852 {
|
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
|
|
366
|
-
var $
|
|
366
|
+
var $63d397230baf7bd4$exports = {};
|
|
367
367
|
|
|
368
368
|
|
|
369
369
|
|
|
370
370
|
|
|
371
|
-
export {$
|
|
371
|
+
export {$7af3f5b51489e0b5$export$253fe78d46329472 as useMultipleSelectionState, $d496c0a20b6e58ec$export$6c8a5aaad13c9852 as SelectionManager};
|
|
372
372
|
//# sourceMappingURL=module.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-stately/selection",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.3",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@babel/runtime": "^7.6.2",
|
|
21
|
-
"@react-stately/collections": "^3.3.
|
|
21
|
+
"@react-stately/collections": "^3.3.7",
|
|
22
22
|
"@react-stately/utils": "^3.4.1",
|
|
23
|
-
"@react-types/shared": "^3.11.
|
|
23
|
+
"@react-types/shared": "^3.11.2"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"react": "^16.8.0 || ^17.0.0-rc.1"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "ed8d8d984c2f7f2c31e8b18795b97858a95e4729"
|
|
32
32
|
}
|