@react-stately/selection 3.0.0-nightly.1393 → 3.0.0-nightly.1400
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 +5 -5
package/dist/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
var $
|
|
2
|
-
var $
|
|
1
|
+
var $dJJu5$react = require("react");
|
|
2
|
+
var $dJJu5$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 $859207c6286de3c2$exports = {};
|
|
24
24
|
|
|
25
|
-
$parcel$export($
|
|
25
|
+
$parcel$export($859207c6286de3c2$exports, "useMultipleSelectionState", () => $859207c6286de3c2$export$253fe78d46329472);
|
|
26
26
|
|
|
27
|
-
class $
|
|
27
|
+
class $addbfdd9bcbd561f$export$52baac22726c72bf extends Set {
|
|
28
28
|
constructor(keys, anchorKey, currentKey){
|
|
29
29
|
super(keys);
|
|
30
|
-
if (keys instanceof $
|
|
30
|
+
if (keys instanceof $addbfdd9bcbd561f$export$52baac22726c72bf) {
|
|
31
31
|
this.anchorKey = anchorKey || keys.anchorKey;
|
|
32
32
|
this.currentKey = currentKey || keys.currentKey;
|
|
33
33
|
} else {
|
|
@@ -39,36 +39,36 @@ class $399b6a8fa1592508$export$52baac22726c72bf extends Set {
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
function $
|
|
42
|
+
function $859207c6286de3c2$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 $859207c6286de3c2$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 = $dJJu5$react.useRef(false);
|
|
54
|
+
let [, setFocused] = $dJJu5$react.useState(false);
|
|
55
|
+
let focusedKeyRef = $dJJu5$react.useRef(null);
|
|
56
|
+
let childFocusStrategyRef = $dJJu5$react.useRef(null);
|
|
57
|
+
let [, setFocusedKey] = $dJJu5$react.useState(null);
|
|
58
|
+
let selectedKeysProp = $dJJu5$react.useMemo(()=>$859207c6286de3c2$var$convertSelection(props.selectedKeys)
|
|
59
59
|
, [
|
|
60
60
|
props.selectedKeys
|
|
61
61
|
]);
|
|
62
|
-
let defaultSelectedKeys = $
|
|
62
|
+
let defaultSelectedKeys = $dJJu5$react.useMemo(()=>$859207c6286de3c2$var$convertSelection(props.defaultSelectedKeys, new $addbfdd9bcbd561f$export$52baac22726c72bf())
|
|
63
63
|
, [
|
|
64
64
|
props.defaultSelectedKeys
|
|
65
65
|
]);
|
|
66
|
-
let [selectedKeys, setSelectedKeys] = $
|
|
67
|
-
let disabledKeysProp = $
|
|
66
|
+
let [selectedKeys, setSelectedKeys] = $dJJu5$reactstatelyutils.useControlledState(selectedKeysProp, defaultSelectedKeys, props.onSelectionChange);
|
|
67
|
+
let disabledKeysProp = $dJJu5$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] = $dJJu5$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 $28ae25d2e3e6a986$export$253fe78d46329472(props) {
|
|
|
97
97
|
},
|
|
98
98
|
selectedKeys: selectedKeys,
|
|
99
99
|
setSelectedKeys (keys) {
|
|
100
|
-
if (allowDuplicateSelectionEvents || !$
|
|
100
|
+
if (allowDuplicateSelectionEvents || !$859207c6286de3c2$var$equalSets(keys, selectedKeys)) setSelectedKeys(keys);
|
|
101
101
|
},
|
|
102
102
|
disabledKeys: disabledKeysProp
|
|
103
103
|
};
|
|
104
104
|
}
|
|
105
|
-
function $
|
|
105
|
+
function $859207c6286de3c2$var$convertSelection(selection, defaultValue) {
|
|
106
106
|
if (!selection) return defaultValue;
|
|
107
|
-
return selection === 'all' ? 'all' : new $
|
|
107
|
+
return selection === 'all' ? 'all' : new $addbfdd9bcbd561f$export$52baac22726c72bf(selection);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
var $
|
|
111
|
+
var $e4d0ec10a0dae1aa$exports = {};
|
|
112
112
|
|
|
113
|
-
$parcel$export($
|
|
113
|
+
$parcel$export($e4d0ec10a0dae1aa$exports, "SelectionManager", () => $e4d0ec10a0dae1aa$export$6c8a5aaad13c9852);
|
|
114
114
|
|
|
115
|
-
class $
|
|
115
|
+
class $e4d0ec10a0dae1aa$export$6c8a5aaad13c9852 {
|
|
116
116
|
constructor(collection, state, options){
|
|
117
117
|
this.collection = collection;
|
|
118
118
|
this.state = state;
|
|
@@ -224,13 +224,13 @@ class $a062a2c7e58a1d84$export$6c8a5aaad13c9852 {
|
|
|
224
224
|
toKey = this.getKey(toKey);
|
|
225
225
|
let selection;
|
|
226
226
|
// Only select the one key if coming from a select all.
|
|
227
|
-
if (this.state.selectedKeys === 'all') selection = new $
|
|
227
|
+
if (this.state.selectedKeys === 'all') selection = new $addbfdd9bcbd561f$export$52baac22726c72bf([
|
|
228
228
|
toKey
|
|
229
229
|
], toKey, toKey);
|
|
230
230
|
else {
|
|
231
231
|
let selectedKeys = this.state.selectedKeys;
|
|
232
232
|
let anchorKey = selectedKeys.anchorKey || toKey;
|
|
233
|
-
selection = new $
|
|
233
|
+
selection = new $addbfdd9bcbd561f$export$52baac22726c72bf(selectedKeys, anchorKey, toKey);
|
|
234
234
|
for (let key of this.getKeyRange(anchorKey, selectedKeys.currentKey || toKey))selection.delete(key);
|
|
235
235
|
for (let key1 of this.getKeyRange(toKey, anchorKey))if (!this.state.disabledKeys.has(key1)) selection.add(key1);
|
|
236
236
|
}
|
|
@@ -277,7 +277,7 @@ class $a062a2c7e58a1d84$export$6c8a5aaad13c9852 {
|
|
|
277
277
|
}
|
|
278
278
|
key = this.getKey(key);
|
|
279
279
|
if (key == null) return;
|
|
280
|
-
let keys = new $
|
|
280
|
+
let keys = new $addbfdd9bcbd561f$export$52baac22726c72bf(this.state.selectedKeys === 'all' ? this.getSelectAllKeys() : this.state.selectedKeys);
|
|
281
281
|
if (keys.has(key)) keys.delete(key);
|
|
282
282
|
else {
|
|
283
283
|
keys.add(key);
|
|
@@ -293,7 +293,7 @@ class $a062a2c7e58a1d84$export$6c8a5aaad13c9852 {
|
|
|
293
293
|
if (this.selectionMode === 'none') return;
|
|
294
294
|
key = this.getKey(key);
|
|
295
295
|
if (key == null) return;
|
|
296
|
-
this.state.setSelectedKeys(new $
|
|
296
|
+
this.state.setSelectedKeys(new $addbfdd9bcbd561f$export$52baac22726c72bf([
|
|
297
297
|
key
|
|
298
298
|
], key, key));
|
|
299
299
|
}
|
|
@@ -301,7 +301,7 @@ class $a062a2c7e58a1d84$export$6c8a5aaad13c9852 {
|
|
|
301
301
|
* Replaces the selection with the given keys.
|
|
302
302
|
*/ setSelectedKeys(keys) {
|
|
303
303
|
if (this.selectionMode === 'none') return;
|
|
304
|
-
let selection = new $
|
|
304
|
+
let selection = new $addbfdd9bcbd561f$export$52baac22726c72bf();
|
|
305
305
|
for (let key of keys){
|
|
306
306
|
key = this.getKey(key);
|
|
307
307
|
if (key != null) {
|
|
@@ -337,7 +337,7 @@ class $a062a2c7e58a1d84$export$6c8a5aaad13c9852 {
|
|
|
337
337
|
/**
|
|
338
338
|
* Removes all keys from the selection.
|
|
339
339
|
*/ clearSelection() {
|
|
340
|
-
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $
|
|
340
|
+
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $addbfdd9bcbd561f$export$52baac22726c72bf());
|
|
341
341
|
}
|
|
342
342
|
/**
|
|
343
343
|
* Toggles between select all and an empty selection.
|
|
@@ -378,12 +378,12 @@ class $a062a2c7e58a1d84$export$6c8a5aaad13c9852 {
|
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
|
|
381
|
-
var $
|
|
381
|
+
var $5dc13b66019a8405$exports = {};
|
|
382
382
|
|
|
383
383
|
|
|
384
|
-
$parcel$exportWildcard(module.exports, $
|
|
385
|
-
$parcel$exportWildcard(module.exports, $
|
|
386
|
-
$parcel$exportWildcard(module.exports, $
|
|
384
|
+
$parcel$exportWildcard(module.exports, $859207c6286de3c2$exports);
|
|
385
|
+
$parcel$exportWildcard(module.exports, $e4d0ec10a0dae1aa$exports);
|
|
386
|
+
$parcel$exportWildcard(module.exports, $5dc13b66019a8405$exports);
|
|
387
387
|
|
|
388
388
|
|
|
389
389
|
//# 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 $chei7$useRef, useState as $chei7$useState, useMemo as $chei7$useMemo} from "react";
|
|
2
|
+
import {useControlledState as $chei7$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 $e961bd55a24935c9$exports = {};
|
|
8
8
|
|
|
9
|
-
$parcel$export($
|
|
9
|
+
$parcel$export($e961bd55a24935c9$exports, "useMultipleSelectionState", () => $e961bd55a24935c9$export$253fe78d46329472);
|
|
10
10
|
|
|
11
|
-
class $
|
|
11
|
+
class $c5f55c1d1f0007fc$export$52baac22726c72bf extends Set {
|
|
12
12
|
constructor(keys, anchorKey, currentKey){
|
|
13
13
|
super(keys);
|
|
14
|
-
if (keys instanceof $
|
|
14
|
+
if (keys instanceof $c5f55c1d1f0007fc$export$52baac22726c72bf) {
|
|
15
15
|
this.anchorKey = anchorKey || keys.anchorKey;
|
|
16
16
|
this.currentKey = currentKey || keys.currentKey;
|
|
17
17
|
} else {
|
|
@@ -23,36 +23,36 @@ class $297acaaea274be2f$export$52baac22726c72bf extends Set {
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
function $
|
|
26
|
+
function $e961bd55a24935c9$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 $e961bd55a24935c9$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 = $chei7$useRef(false);
|
|
38
|
+
let [, setFocused] = $chei7$useState(false);
|
|
39
|
+
let focusedKeyRef = $chei7$useRef(null);
|
|
40
|
+
let childFocusStrategyRef = $chei7$useRef(null);
|
|
41
|
+
let [, setFocusedKey] = $chei7$useState(null);
|
|
42
|
+
let selectedKeysProp = $chei7$useMemo(()=>$e961bd55a24935c9$var$convertSelection(props.selectedKeys)
|
|
43
43
|
, [
|
|
44
44
|
props.selectedKeys
|
|
45
45
|
]);
|
|
46
|
-
let defaultSelectedKeys = $
|
|
46
|
+
let defaultSelectedKeys = $chei7$useMemo(()=>$e961bd55a24935c9$var$convertSelection(props.defaultSelectedKeys, new $c5f55c1d1f0007fc$export$52baac22726c72bf())
|
|
47
47
|
, [
|
|
48
48
|
props.defaultSelectedKeys
|
|
49
49
|
]);
|
|
50
|
-
let [selectedKeys, setSelectedKeys] = $
|
|
51
|
-
let disabledKeysProp = $
|
|
50
|
+
let [selectedKeys, setSelectedKeys] = $chei7$useControlledState(selectedKeysProp, defaultSelectedKeys, props.onSelectionChange);
|
|
51
|
+
let disabledKeysProp = $chei7$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] = $chei7$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 $a6edc5e0a08f1930$export$253fe78d46329472(props) {
|
|
|
81
81
|
},
|
|
82
82
|
selectedKeys: selectedKeys,
|
|
83
83
|
setSelectedKeys (keys) {
|
|
84
|
-
if (allowDuplicateSelectionEvents || !$
|
|
84
|
+
if (allowDuplicateSelectionEvents || !$e961bd55a24935c9$var$equalSets(keys, selectedKeys)) setSelectedKeys(keys);
|
|
85
85
|
},
|
|
86
86
|
disabledKeys: disabledKeysProp
|
|
87
87
|
};
|
|
88
88
|
}
|
|
89
|
-
function $
|
|
89
|
+
function $e961bd55a24935c9$var$convertSelection(selection, defaultValue) {
|
|
90
90
|
if (!selection) return defaultValue;
|
|
91
|
-
return selection === 'all' ? 'all' : new $
|
|
91
|
+
return selection === 'all' ? 'all' : new $c5f55c1d1f0007fc$export$52baac22726c72bf(selection);
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
|
|
95
|
-
var $
|
|
95
|
+
var $2f812fb5fa7ad073$exports = {};
|
|
96
96
|
|
|
97
|
-
$parcel$export($
|
|
97
|
+
$parcel$export($2f812fb5fa7ad073$exports, "SelectionManager", () => $2f812fb5fa7ad073$export$6c8a5aaad13c9852);
|
|
98
98
|
|
|
99
|
-
class $
|
|
99
|
+
class $2f812fb5fa7ad073$export$6c8a5aaad13c9852 {
|
|
100
100
|
constructor(collection, state, options){
|
|
101
101
|
this.collection = collection;
|
|
102
102
|
this.state = state;
|
|
@@ -208,13 +208,13 @@ class $124dcf7158c33c89$export$6c8a5aaad13c9852 {
|
|
|
208
208
|
toKey = this.getKey(toKey);
|
|
209
209
|
let selection;
|
|
210
210
|
// Only select the one key if coming from a select all.
|
|
211
|
-
if (this.state.selectedKeys === 'all') selection = new $
|
|
211
|
+
if (this.state.selectedKeys === 'all') selection = new $c5f55c1d1f0007fc$export$52baac22726c72bf([
|
|
212
212
|
toKey
|
|
213
213
|
], toKey, toKey);
|
|
214
214
|
else {
|
|
215
215
|
let selectedKeys = this.state.selectedKeys;
|
|
216
216
|
let anchorKey = selectedKeys.anchorKey || toKey;
|
|
217
|
-
selection = new $
|
|
217
|
+
selection = new $c5f55c1d1f0007fc$export$52baac22726c72bf(selectedKeys, anchorKey, toKey);
|
|
218
218
|
for (let key of this.getKeyRange(anchorKey, selectedKeys.currentKey || toKey))selection.delete(key);
|
|
219
219
|
for (let key1 of this.getKeyRange(toKey, anchorKey))if (!this.state.disabledKeys.has(key1)) selection.add(key1);
|
|
220
220
|
}
|
|
@@ -261,7 +261,7 @@ class $124dcf7158c33c89$export$6c8a5aaad13c9852 {
|
|
|
261
261
|
}
|
|
262
262
|
key = this.getKey(key);
|
|
263
263
|
if (key == null) return;
|
|
264
|
-
let keys = new $
|
|
264
|
+
let keys = new $c5f55c1d1f0007fc$export$52baac22726c72bf(this.state.selectedKeys === 'all' ? this.getSelectAllKeys() : this.state.selectedKeys);
|
|
265
265
|
if (keys.has(key)) keys.delete(key);
|
|
266
266
|
else {
|
|
267
267
|
keys.add(key);
|
|
@@ -277,7 +277,7 @@ class $124dcf7158c33c89$export$6c8a5aaad13c9852 {
|
|
|
277
277
|
if (this.selectionMode === 'none') return;
|
|
278
278
|
key = this.getKey(key);
|
|
279
279
|
if (key == null) return;
|
|
280
|
-
this.state.setSelectedKeys(new $
|
|
280
|
+
this.state.setSelectedKeys(new $c5f55c1d1f0007fc$export$52baac22726c72bf([
|
|
281
281
|
key
|
|
282
282
|
], key, key));
|
|
283
283
|
}
|
|
@@ -285,7 +285,7 @@ class $124dcf7158c33c89$export$6c8a5aaad13c9852 {
|
|
|
285
285
|
* Replaces the selection with the given keys.
|
|
286
286
|
*/ setSelectedKeys(keys) {
|
|
287
287
|
if (this.selectionMode === 'none') return;
|
|
288
|
-
let selection = new $
|
|
288
|
+
let selection = new $c5f55c1d1f0007fc$export$52baac22726c72bf();
|
|
289
289
|
for (let key of keys){
|
|
290
290
|
key = this.getKey(key);
|
|
291
291
|
if (key != null) {
|
|
@@ -321,7 +321,7 @@ class $124dcf7158c33c89$export$6c8a5aaad13c9852 {
|
|
|
321
321
|
/**
|
|
322
322
|
* Removes all keys from the selection.
|
|
323
323
|
*/ clearSelection() {
|
|
324
|
-
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $
|
|
324
|
+
if (!this.disallowEmptySelection && (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0)) this.state.setSelectedKeys(new $c5f55c1d1f0007fc$export$52baac22726c72bf());
|
|
325
325
|
}
|
|
326
326
|
/**
|
|
327
327
|
* Toggles between select all and an empty selection.
|
|
@@ -362,10 +362,10 @@ class $124dcf7158c33c89$export$6c8a5aaad13c9852 {
|
|
|
362
362
|
}
|
|
363
363
|
|
|
364
364
|
|
|
365
|
-
var $
|
|
365
|
+
var $39bbcc3a62d931fe$exports = {};
|
|
366
366
|
|
|
367
367
|
|
|
368
368
|
|
|
369
369
|
|
|
370
|
-
export {$
|
|
370
|
+
export {$e961bd55a24935c9$export$253fe78d46329472 as useMultipleSelectionState, $2f812fb5fa7ad073$export$6c8a5aaad13c9852 as SelectionManager};
|
|
371
371
|
//# sourceMappingURL=module.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-stately/selection",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.1400+2815eea07",
|
|
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.0.0-nightly.
|
|
22
|
-
"@react-stately/utils": "3.0.0-nightly.
|
|
23
|
-
"@react-types/shared": "3.0.0-nightly.
|
|
21
|
+
"@react-stately/collections": "3.0.0-nightly.1400+2815eea07",
|
|
22
|
+
"@react-stately/utils": "3.0.0-nightly.1400+2815eea07",
|
|
23
|
+
"@react-types/shared": "3.0.0-nightly.1400+2815eea07"
|
|
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": "2815eea077010e5490ff9df3c5d79fa1588ca689"
|
|
32
32
|
}
|