@okam/stack-ui 1.43.0 → 1.44.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/CHANGELOG.md +23 -0
- package/index180.js +1 -1
- package/index180.mjs +3 -3
- package/index181.js +1 -1
- package/index181.mjs +1 -1
- package/index182.js +1 -1
- package/index182.mjs +1 -1
- package/index183.js +1 -1
- package/index183.mjs +2 -2
- package/index282.js +1 -1
- package/index282.mjs +9 -31
- package/index283.js +1 -1
- package/index283.mjs +133 -9
- package/index284.js +1 -1
- package/index284.mjs +43 -133
- package/index285.js +1 -1
- package/index285.mjs +231 -43
- package/index286.js +1 -1
- package/index286.mjs +27 -227
- package/index341.js +1 -1
- package/index341.mjs +20 -65
- package/index342.js +1 -1
- package/index342.mjs +29 -54
- package/index343.js +1 -1
- package/index343.mjs +63 -51
- package/index344.js +1 -1
- package/index344.mjs +44 -271
- package/index345.js +1 -1
- package/index345.mjs +52 -18
- package/index346.js +1 -1
- package/index346.mjs +281 -21
- package/index347.js +1 -1
- package/index347.mjs +20 -29
- package/index8.js +1 -1
- package/index8.mjs +1 -1
- package/package.json +1 -1
package/index344.mjs
CHANGED
|
@@ -1,284 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* The type of selection that is allowed in the collection.
|
|
6
|
-
*/
|
|
7
|
-
get selectionMode() {
|
|
8
|
-
return this.state.selectionMode;
|
|
1
|
+
class a {
|
|
2
|
+
*[Symbol.iterator]() {
|
|
3
|
+
yield* this.iterable;
|
|
9
4
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
*/
|
|
13
|
-
get disallowEmptySelection() {
|
|
14
|
-
return this.state.disallowEmptySelection;
|
|
5
|
+
get size() {
|
|
6
|
+
return this._size;
|
|
15
7
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
*/
|
|
19
|
-
get selectionBehavior() {
|
|
20
|
-
return this.state.selectionBehavior;
|
|
8
|
+
getKeys() {
|
|
9
|
+
return this.keyMap.keys();
|
|
21
10
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
this.state.setSelectionBehavior(t);
|
|
11
|
+
getKeyBefore(i) {
|
|
12
|
+
let e = this.keyMap.get(i);
|
|
13
|
+
var t;
|
|
14
|
+
return e && (t = e.prevKey) !== null && t !== void 0 ? t : null;
|
|
27
15
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
return this.state.isFocused;
|
|
16
|
+
getKeyAfter(i) {
|
|
17
|
+
let e = this.keyMap.get(i);
|
|
18
|
+
var t;
|
|
19
|
+
return e && (t = e.nextKey) !== null && t !== void 0 ? t : null;
|
|
33
20
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
*/
|
|
37
|
-
setFocused(t) {
|
|
38
|
-
this.state.setFocused(t);
|
|
21
|
+
getFirstKey() {
|
|
22
|
+
return this.firstKey;
|
|
39
23
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*/
|
|
43
|
-
get focusedKey() {
|
|
44
|
-
return this.state.focusedKey;
|
|
24
|
+
getLastKey() {
|
|
25
|
+
return this.lastKey;
|
|
45
26
|
}
|
|
46
|
-
|
|
47
|
-
get childFocusStrategy() {
|
|
48
|
-
return this.state.childFocusStrategy;
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* Sets the focused key.
|
|
52
|
-
*/
|
|
53
|
-
setFocusedKey(t, e) {
|
|
54
|
-
(t == null || this.collection.getItem(t)) && this.state.setFocusedKey(t, e);
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* The currently selected keys in the collection.
|
|
58
|
-
*/
|
|
59
|
-
get selectedKeys() {
|
|
60
|
-
return this.state.selectedKeys === "all" ? new Set(this.getSelectAllKeys()) : this.state.selectedKeys;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* The raw selection value for the collection.
|
|
64
|
-
* Either 'all' for select all, or a set of keys.
|
|
65
|
-
*/
|
|
66
|
-
get rawSelection() {
|
|
67
|
-
return this.state.selectedKeys;
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* Returns whether a key is selected.
|
|
71
|
-
*/
|
|
72
|
-
isSelected(t) {
|
|
73
|
-
if (this.state.selectionMode === "none") return !1;
|
|
74
|
-
let e = this.getKey(t);
|
|
75
|
-
return e == null ? !1 : this.state.selectedKeys === "all" ? this.canSelectItem(e) : this.state.selectedKeys.has(e);
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
* Whether the selection is empty.
|
|
79
|
-
*/
|
|
80
|
-
get isEmpty() {
|
|
81
|
-
return this.state.selectedKeys !== "all" && this.state.selectedKeys.size === 0;
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* Whether all items in the collection are selected.
|
|
85
|
-
*/
|
|
86
|
-
get isSelectAll() {
|
|
87
|
-
if (this.isEmpty) return !1;
|
|
88
|
-
if (this.state.selectedKeys === "all") return !0;
|
|
89
|
-
if (this._isSelectAll != null) return this._isSelectAll;
|
|
90
|
-
let t = this.getSelectAllKeys(), e = this.state.selectedKeys;
|
|
91
|
-
return this._isSelectAll = t.every((l) => e.has(l)), this._isSelectAll;
|
|
92
|
-
}
|
|
93
|
-
get firstSelectedKey() {
|
|
94
|
-
let t = null;
|
|
95
|
-
for (let l of this.state.selectedKeys) {
|
|
96
|
-
let s = this.collection.getItem(l);
|
|
97
|
-
(!t || s && r(this.collection, s, t) < 0) && (t = s);
|
|
98
|
-
}
|
|
99
|
-
var e;
|
|
100
|
-
return (e = t == null ? void 0 : t.key) !== null && e !== void 0 ? e : null;
|
|
101
|
-
}
|
|
102
|
-
get lastSelectedKey() {
|
|
103
|
-
let t = null;
|
|
104
|
-
for (let l of this.state.selectedKeys) {
|
|
105
|
-
let s = this.collection.getItem(l);
|
|
106
|
-
(!t || s && r(this.collection, s, t) > 0) && (t = s);
|
|
107
|
-
}
|
|
27
|
+
getItem(i) {
|
|
108
28
|
var e;
|
|
109
|
-
return (e =
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
return this.
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
}
|
|
126
|
-
let e = this.getKey(t);
|
|
127
|
-
if (e == null) return;
|
|
128
|
-
let l;
|
|
129
|
-
if (this.state.selectedKeys === "all") l = new n([
|
|
130
|
-
e
|
|
131
|
-
], e, e);
|
|
132
|
-
else {
|
|
133
|
-
let i = this.state.selectedKeys;
|
|
134
|
-
var s;
|
|
135
|
-
let a = (s = i.anchorKey) !== null && s !== void 0 ? s : e;
|
|
136
|
-
l = new n(i, a, e);
|
|
137
|
-
var o;
|
|
138
|
-
for (let c of this.getKeyRange(a, (o = i.currentKey) !== null && o !== void 0 ? o : e)) l.delete(c);
|
|
139
|
-
for (let c of this.getKeyRange(e, a)) this.canSelectItem(c) && l.add(c);
|
|
140
|
-
}
|
|
141
|
-
this.state.setSelectedKeys(l);
|
|
142
|
-
}
|
|
143
|
-
getKeyRange(t, e) {
|
|
144
|
-
let l = this.collection.getItem(t), s = this.collection.getItem(e);
|
|
145
|
-
return l && s ? r(this.collection, l, s) <= 0 ? this.getKeyRangeInternal(t, e) : this.getKeyRangeInternal(e, t) : [];
|
|
146
|
-
}
|
|
147
|
-
getKeyRangeInternal(t, e) {
|
|
148
|
-
var l;
|
|
149
|
-
if (!((l = this.layoutDelegate) === null || l === void 0) && l.getKeyRange) return this.layoutDelegate.getKeyRange(t, e);
|
|
150
|
-
let s = [], o = t;
|
|
151
|
-
for (; o != null; ) {
|
|
152
|
-
let i = this.collection.getItem(o);
|
|
153
|
-
if (i && (i.type === "item" || i.type === "cell" && this.allowsCellSelection) && s.push(o), o === e) return s;
|
|
154
|
-
o = this.collection.getKeyAfter(o);
|
|
155
|
-
}
|
|
156
|
-
return [];
|
|
157
|
-
}
|
|
158
|
-
getKey(t) {
|
|
159
|
-
let e = this.collection.getItem(t);
|
|
160
|
-
if (!e || e.type === "cell" && this.allowsCellSelection) return t;
|
|
161
|
-
for (; e && e.type !== "item" && e.parentKey != null; ) e = this.collection.getItem(e.parentKey);
|
|
162
|
-
return !e || e.type !== "item" ? null : e.key;
|
|
163
|
-
}
|
|
164
|
-
/**
|
|
165
|
-
* Toggles whether the given key is selected.
|
|
166
|
-
*/
|
|
167
|
-
toggleSelection(t) {
|
|
168
|
-
if (this.selectionMode === "none") return;
|
|
169
|
-
if (this.selectionMode === "single" && !this.isSelected(t)) {
|
|
170
|
-
this.replaceSelection(t);
|
|
171
|
-
return;
|
|
172
|
-
}
|
|
173
|
-
let e = this.getKey(t);
|
|
174
|
-
if (e == null) return;
|
|
175
|
-
let l = new n(this.state.selectedKeys === "all" ? this.getSelectAllKeys() : this.state.selectedKeys);
|
|
176
|
-
l.has(e) ? l.delete(e) : this.canSelectItem(e) && (l.add(e), l.anchorKey = e, l.currentKey = e), !(this.disallowEmptySelection && l.size === 0) && this.state.setSelectedKeys(l);
|
|
177
|
-
}
|
|
178
|
-
/**
|
|
179
|
-
* Replaces the selection with only the given key.
|
|
180
|
-
*/
|
|
181
|
-
replaceSelection(t) {
|
|
182
|
-
if (this.selectionMode === "none") return;
|
|
183
|
-
let e = this.getKey(t);
|
|
184
|
-
if (e == null) return;
|
|
185
|
-
let l = this.canSelectItem(e) ? new n([
|
|
186
|
-
e
|
|
187
|
-
], e, e) : new n();
|
|
188
|
-
this.state.setSelectedKeys(l);
|
|
189
|
-
}
|
|
190
|
-
/**
|
|
191
|
-
* Replaces the selection with the given keys.
|
|
192
|
-
*/
|
|
193
|
-
setSelectedKeys(t) {
|
|
194
|
-
if (this.selectionMode === "none") return;
|
|
195
|
-
let e = new n();
|
|
196
|
-
for (let l of t) {
|
|
197
|
-
let s = this.getKey(l);
|
|
198
|
-
if (s != null && (e.add(s), this.selectionMode === "single"))
|
|
199
|
-
break;
|
|
200
|
-
}
|
|
201
|
-
this.state.setSelectedKeys(e);
|
|
202
|
-
}
|
|
203
|
-
getSelectAllKeys() {
|
|
204
|
-
let t = [], e = (l) => {
|
|
205
|
-
for (; l != null; ) {
|
|
206
|
-
if (this.canSelectItem(l)) {
|
|
207
|
-
var s;
|
|
208
|
-
let i = this.collection.getItem(l);
|
|
209
|
-
(i == null ? void 0 : i.type) === "item" && t.push(l);
|
|
210
|
-
var o;
|
|
211
|
-
i != null && i.hasChildNodes && (this.allowsCellSelection || i.type !== "item") && e((o = (s = d(u(i, this.collection))) === null || s === void 0 ? void 0 : s.key) !== null && o !== void 0 ? o : null);
|
|
212
|
-
}
|
|
213
|
-
l = this.collection.getKeyAfter(l);
|
|
214
|
-
}
|
|
29
|
+
return (e = this.keyMap.get(i)) !== null && e !== void 0 ? e : null;
|
|
30
|
+
}
|
|
31
|
+
at(i) {
|
|
32
|
+
const e = [
|
|
33
|
+
...this.getKeys()
|
|
34
|
+
];
|
|
35
|
+
return this.getItem(e[i]);
|
|
36
|
+
}
|
|
37
|
+
getChildren(i) {
|
|
38
|
+
let e = this.keyMap.get(i);
|
|
39
|
+
return (e == null ? void 0 : e.childNodes) || [];
|
|
40
|
+
}
|
|
41
|
+
constructor(i) {
|
|
42
|
+
this.keyMap = /* @__PURE__ */ new Map(), this.firstKey = null, this.lastKey = null, this.iterable = i;
|
|
43
|
+
let e = (l) => {
|
|
44
|
+
if (this.keyMap.set(l.key, l), l.childNodes && l.type === "section") for (let s of l.childNodes) e(s);
|
|
215
45
|
};
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
}
|
|
224
|
-
/**
|
|
225
|
-
* Removes all keys from the selection.
|
|
226
|
-
*/
|
|
227
|
-
clearSelection() {
|
|
228
|
-
!this.disallowEmptySelection && (this.state.selectedKeys === "all" || this.state.selectedKeys.size > 0) && this.state.setSelectedKeys(new n());
|
|
229
|
-
}
|
|
230
|
-
/**
|
|
231
|
-
* Toggles between select all and an empty selection.
|
|
232
|
-
*/
|
|
233
|
-
toggleSelectAll() {
|
|
234
|
-
this.isSelectAll ? this.clearSelection() : this.selectAll();
|
|
235
|
-
}
|
|
236
|
-
select(t, e) {
|
|
237
|
-
this.selectionMode !== "none" && (this.selectionMode === "single" ? this.isSelected(t) && !this.disallowEmptySelection ? this.toggleSelection(t) : this.replaceSelection(t) : this.selectionBehavior === "toggle" || e && (e.pointerType === "touch" || e.pointerType === "virtual") ? this.toggleSelection(t) : this.replaceSelection(t));
|
|
238
|
-
}
|
|
239
|
-
/**
|
|
240
|
-
* Returns whether the current selection is equal to the given selection.
|
|
241
|
-
*/
|
|
242
|
-
isSelectionEqual(t) {
|
|
243
|
-
if (t === this.state.selectedKeys) return !0;
|
|
244
|
-
let e = this.selectedKeys;
|
|
245
|
-
if (t.size !== e.size) return !1;
|
|
246
|
-
for (let l of t)
|
|
247
|
-
if (!e.has(l)) return !1;
|
|
248
|
-
for (let l of e)
|
|
249
|
-
if (!t.has(l)) return !1;
|
|
250
|
-
return !0;
|
|
251
|
-
}
|
|
252
|
-
canSelectItem(t) {
|
|
253
|
-
var e;
|
|
254
|
-
if (this.state.selectionMode === "none" || this.state.disabledKeys.has(t)) return !1;
|
|
255
|
-
let l = this.collection.getItem(t);
|
|
256
|
-
return !(!l || !(l == null || (e = l.props) === null || e === void 0) && e.isDisabled || l.type === "cell" && !this.allowsCellSelection);
|
|
257
|
-
}
|
|
258
|
-
isDisabled(t) {
|
|
259
|
-
var e, l;
|
|
260
|
-
return this.state.disabledBehavior === "all" && (this.state.disabledKeys.has(t) || !!(!((l = this.collection.getItem(t)) === null || l === void 0 || (e = l.props) === null || e === void 0) && e.isDisabled));
|
|
261
|
-
}
|
|
262
|
-
isLink(t) {
|
|
263
|
-
var e, l;
|
|
264
|
-
return !!(!((l = this.collection.getItem(t)) === null || l === void 0 || (e = l.props) === null || e === void 0) && e.href);
|
|
265
|
-
}
|
|
266
|
-
getItemProps(t) {
|
|
267
|
-
var e;
|
|
268
|
-
return (e = this.collection.getItem(t)) === null || e === void 0 ? void 0 : e.props;
|
|
269
|
-
}
|
|
270
|
-
withCollection(t) {
|
|
271
|
-
return new h(t, this.state, {
|
|
272
|
-
allowsCellSelection: this.allowsCellSelection,
|
|
273
|
-
layoutDelegate: this.layoutDelegate || void 0
|
|
274
|
-
});
|
|
275
|
-
}
|
|
276
|
-
constructor(t, e, l) {
|
|
277
|
-
this.collection = t, this.state = e;
|
|
278
|
-
var s;
|
|
279
|
-
this.allowsCellSelection = (s = l == null ? void 0 : l.allowsCellSelection) !== null && s !== void 0 ? s : !1, this._isSelectAll = null, this.layoutDelegate = (l == null ? void 0 : l.layoutDelegate) || null;
|
|
46
|
+
for (let l of i) e(l);
|
|
47
|
+
let t = null, y = 0, n = 0;
|
|
48
|
+
for (let [l, s] of this.keyMap)
|
|
49
|
+
t ? (t.nextKey = l, s.prevKey = t.key) : (this.firstKey = l, s.prevKey = void 0), s.type === "item" && (s.index = y++), (s.type === "section" || s.type === "item") && n++, t = s, t.nextKey = void 0;
|
|
50
|
+
this._size = n;
|
|
51
|
+
var r;
|
|
52
|
+
this.lastKey = (r = t == null ? void 0 : t.key) !== null && r !== void 0 ? r : null;
|
|
280
53
|
}
|
|
281
54
|
}
|
|
282
55
|
export {
|
|
283
|
-
|
|
56
|
+
a as ListCollection
|
|
284
57
|
};
|
package/index345.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("./index351.js"),F=require("./index271.js"),t=require("react");function M(e,o){if(e.size!==o.size)return!1;for(let c of e)if(!o.has(c))return!1;return!0}function R(e){let{selectionMode:o="none",disallowEmptySelection:c=!1,allowDuplicateSelectionEvents:K,selectionBehavior:s="toggle",disabledBehavior:b="all"}=e,r=t.useRef(!1),[,v]=t.useState(!1),u=t.useRef(null),a=t.useRef(null),[,h]=t.useState(null),g=t.useMemo(()=>S(e.selectedKeys),[e.selectedKeys]),w=t.useMemo(()=>S(e.defaultSelectedKeys,new y.Selection),[e.defaultSelectedKeys]),[i,B]=F.useControlledState(g,w,e.onSelectionChange),$=t.useMemo(()=>e.disabledKeys?new Set(e.disabledKeys):new Set,[e.disabledKeys]),[d,n]=t.useState(s);s==="replace"&&d==="toggle"&&typeof i=="object"&&i.size===0&&n("replace");let f=t.useRef(s);return t.useEffect(()=>{s!==f.current&&(n(s),f.current=s)},[s]),{selectionMode:o,disallowEmptySelection:c,selectionBehavior:d,setSelectionBehavior:n,get isFocused(){return r.current},setFocused(l){r.current=l,v(l)},get focusedKey(){return u.current},get childFocusStrategy(){return a.current},setFocusedKey(l,m="first"){u.current=l,a.current=m,h(l)},selectedKeys:i,setSelectedKeys(l){(K||!M(l,i))&&B(l)},disabledKeys:$,disabledBehavior:b}}function S(e,o){return e?e==="all"?"all":new y.Selection(e):o}exports.useMultipleSelectionState=R;
|
package/index345.mjs
CHANGED
|
@@ -1,23 +1,57 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { Selection as K } from "./index351.mjs";
|
|
2
|
+
import { useControlledState as M } from "./index271.mjs";
|
|
3
|
+
import { useRef as a, useState as r, useMemo as n, useEffect as x } from "react";
|
|
4
|
+
function R(e, s) {
|
|
5
|
+
if (e.size !== s.size) return !1;
|
|
6
|
+
for (let c of e)
|
|
7
|
+
if (!s.has(c)) return !1;
|
|
8
|
+
return !0;
|
|
9
|
+
}
|
|
10
|
+
function C(e) {
|
|
11
|
+
let { selectionMode: s = "none", disallowEmptySelection: c = !1, allowDuplicateSelectionEvents: v, selectionBehavior: l = "toggle", disabledBehavior: $ = "all" } = e, d = a(!1), [, h] = r(!1), u = a(null), f = a(null), [, m] = r(null), g = n(() => b(e.selectedKeys), [
|
|
12
|
+
e.selectedKeys
|
|
13
|
+
]), w = n(() => b(e.defaultSelectedKeys, new K()), [
|
|
14
|
+
e.defaultSelectedKeys
|
|
15
|
+
]), [o, B] = M(g, w, e.onSelectionChange), F = n(() => e.disabledKeys ? new Set(e.disabledKeys) : /* @__PURE__ */ new Set(), [
|
|
16
|
+
e.disabledKeys
|
|
17
|
+
]), [S, i] = r(l);
|
|
18
|
+
l === "replace" && S === "toggle" && typeof o == "object" && o.size === 0 && i("replace");
|
|
19
|
+
let y = a(l);
|
|
20
|
+
return x(() => {
|
|
21
|
+
l !== y.current && (i(l), y.current = l);
|
|
12
22
|
}, [
|
|
13
|
-
t,
|
|
14
|
-
i,
|
|
15
|
-
o,
|
|
16
|
-
e,
|
|
17
|
-
r,
|
|
18
23
|
l
|
|
19
|
-
])
|
|
24
|
+
]), {
|
|
25
|
+
selectionMode: s,
|
|
26
|
+
disallowEmptySelection: c,
|
|
27
|
+
selectionBehavior: S,
|
|
28
|
+
setSelectionBehavior: i,
|
|
29
|
+
get isFocused() {
|
|
30
|
+
return d.current;
|
|
31
|
+
},
|
|
32
|
+
setFocused(t) {
|
|
33
|
+
d.current = t, h(t);
|
|
34
|
+
},
|
|
35
|
+
get focusedKey() {
|
|
36
|
+
return u.current;
|
|
37
|
+
},
|
|
38
|
+
get childFocusStrategy() {
|
|
39
|
+
return f.current;
|
|
40
|
+
},
|
|
41
|
+
setFocusedKey(t, E = "first") {
|
|
42
|
+
u.current = t, f.current = E, m(t);
|
|
43
|
+
},
|
|
44
|
+
selectedKeys: o,
|
|
45
|
+
setSelectedKeys(t) {
|
|
46
|
+
(v || !R(t, o)) && B(t);
|
|
47
|
+
},
|
|
48
|
+
disabledKeys: F,
|
|
49
|
+
disabledBehavior: $
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
function b(e, s) {
|
|
53
|
+
return e ? e === "all" ? "all" : new K(e) : s;
|
|
20
54
|
}
|
|
21
55
|
export {
|
|
22
|
-
|
|
56
|
+
C as useMultipleSelectionState
|
|
23
57
|
};
|
package/index346.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("./index351.js"),c=require("./index352.js");class h{get selectionMode(){return this.state.selectionMode}get disallowEmptySelection(){return this.state.disallowEmptySelection}get selectionBehavior(){return this.state.selectionBehavior}setSelectionBehavior(t){this.state.setSelectionBehavior(t)}get isFocused(){return this.state.isFocused}setFocused(t){this.state.setFocused(t)}get focusedKey(){return this.state.focusedKey}get childFocusStrategy(){return this.state.childFocusStrategy}setFocusedKey(t,e){(t==null||this.collection.getItem(t))&&this.state.setFocusedKey(t,e)}get selectedKeys(){return this.state.selectedKeys==="all"?new Set(this.getSelectAllKeys()):this.state.selectedKeys}get rawSelection(){return this.state.selectedKeys}isSelected(t){if(this.state.selectionMode==="none")return!1;let e=this.getKey(t);return e==null?!1:this.state.selectedKeys==="all"?this.canSelectItem(e):this.state.selectedKeys.has(e)}get isEmpty(){return this.state.selectedKeys!=="all"&&this.state.selectedKeys.size===0}get isSelectAll(){if(this.isEmpty)return!1;if(this.state.selectedKeys==="all")return!0;if(this._isSelectAll!=null)return this._isSelectAll;let t=this.getSelectAllKeys(),e=this.state.selectedKeys;return this._isSelectAll=t.every(l=>e.has(l)),this._isSelectAll}get firstSelectedKey(){let t=null;for(let l of this.state.selectedKeys){let i=this.collection.getItem(l);(!t||i&&c.compareNodeOrder(this.collection,i,t)<0)&&(t=i)}var e;return(e=t==null?void 0:t.key)!==null&&e!==void 0?e:null}get lastSelectedKey(){let t=null;for(let l of this.state.selectedKeys){let i=this.collection.getItem(l);(!t||i&&c.compareNodeOrder(this.collection,i,t)>0)&&(t=i)}var e;return(e=t==null?void 0:t.key)!==null&&e!==void 0?e:null}get disabledKeys(){return this.state.disabledKeys}get disabledBehavior(){return this.state.disabledBehavior}extendSelection(t){if(this.selectionMode==="none")return;if(this.selectionMode==="single"){this.replaceSelection(t);return}let e=this.getKey(t);if(e==null)return;let l;if(this.state.selectedKeys==="all")l=new n.Selection([e],e,e);else{let s=this.state.selectedKeys;var i;let a=(i=s.anchorKey)!==null&&i!==void 0?i:e;l=new n.Selection(s,a,e);var o;for(let r of this.getKeyRange(a,(o=s.currentKey)!==null&&o!==void 0?o:e))l.delete(r);for(let r of this.getKeyRange(e,a))this.canSelectItem(r)&&l.add(r)}this.state.setSelectedKeys(l)}getKeyRange(t,e){let l=this.collection.getItem(t),i=this.collection.getItem(e);return l&&i?c.compareNodeOrder(this.collection,l,i)<=0?this.getKeyRangeInternal(t,e):this.getKeyRangeInternal(e,t):[]}getKeyRangeInternal(t,e){var l;if(!((l=this.layoutDelegate)===null||l===void 0)&&l.getKeyRange)return this.layoutDelegate.getKeyRange(t,e);let i=[],o=t;for(;o!=null;){let s=this.collection.getItem(o);if(s&&(s.type==="item"||s.type==="cell"&&this.allowsCellSelection)&&i.push(o),o===e)return i;o=this.collection.getKeyAfter(o)}return[]}getKey(t){let e=this.collection.getItem(t);if(!e||e.type==="cell"&&this.allowsCellSelection)return t;for(;e&&e.type!=="item"&&e.parentKey!=null;)e=this.collection.getItem(e.parentKey);return!e||e.type!=="item"?null:e.key}toggleSelection(t){if(this.selectionMode==="none")return;if(this.selectionMode==="single"&&!this.isSelected(t)){this.replaceSelection(t);return}let e=this.getKey(t);if(e==null)return;let l=new n.Selection(this.state.selectedKeys==="all"?this.getSelectAllKeys():this.state.selectedKeys);l.has(e)?l.delete(e):this.canSelectItem(e)&&(l.add(e),l.anchorKey=e,l.currentKey=e),!(this.disallowEmptySelection&&l.size===0)&&this.state.setSelectedKeys(l)}replaceSelection(t){if(this.selectionMode==="none")return;let e=this.getKey(t);if(e==null)return;let l=this.canSelectItem(e)?new n.Selection([e],e,e):new n.Selection;this.state.setSelectedKeys(l)}setSelectedKeys(t){if(this.selectionMode==="none")return;let e=new n.Selection;for(let l of t){let i=this.getKey(l);if(i!=null&&(e.add(i),this.selectionMode==="single"))break}this.state.setSelectedKeys(e)}getSelectAllKeys(){let t=[],e=l=>{for(;l!=null;){if(this.canSelectItem(l)){var i;let s=this.collection.getItem(l);(s==null?void 0:s.type)==="item"&&t.push(l);var o;s!=null&&s.hasChildNodes&&(this.allowsCellSelection||s.type!=="item")&&e((o=(i=c.getFirstItem(c.getChildNodes(s,this.collection)))===null||i===void 0?void 0:i.key)!==null&&o!==void 0?o:null)}l=this.collection.getKeyAfter(l)}};return e(this.collection.getFirstKey()),t}selectAll(){!this.isSelectAll&&this.selectionMode==="multiple"&&this.state.setSelectedKeys("all")}clearSelection(){!this.disallowEmptySelection&&(this.state.selectedKeys==="all"||this.state.selectedKeys.size>0)&&this.state.setSelectedKeys(new n.Selection)}toggleSelectAll(){this.isSelectAll?this.clearSelection():this.selectAll()}select(t,e){this.selectionMode!=="none"&&(this.selectionMode==="single"?this.isSelected(t)&&!this.disallowEmptySelection?this.toggleSelection(t):this.replaceSelection(t):this.selectionBehavior==="toggle"||e&&(e.pointerType==="touch"||e.pointerType==="virtual")?this.toggleSelection(t):this.replaceSelection(t))}isSelectionEqual(t){if(t===this.state.selectedKeys)return!0;let e=this.selectedKeys;if(t.size!==e.size)return!1;for(let l of t)if(!e.has(l))return!1;for(let l of e)if(!t.has(l))return!1;return!0}canSelectItem(t){var e;if(this.state.selectionMode==="none"||this.state.disabledKeys.has(t))return!1;let l=this.collection.getItem(t);return!(!l||!(l==null||(e=l.props)===null||e===void 0)&&e.isDisabled||l.type==="cell"&&!this.allowsCellSelection)}isDisabled(t){var e,l;return this.state.disabledBehavior==="all"&&(this.state.disabledKeys.has(t)||!!(!((l=this.collection.getItem(t))===null||l===void 0||(e=l.props)===null||e===void 0)&&e.isDisabled))}isLink(t){var e,l;return!!(!((l=this.collection.getItem(t))===null||l===void 0||(e=l.props)===null||e===void 0)&&e.href)}getItemProps(t){var e;return(e=this.collection.getItem(t))===null||e===void 0?void 0:e.props}withCollection(t){return new h(t,this.state,{allowsCellSelection:this.allowsCellSelection,layoutDelegate:this.layoutDelegate||void 0})}constructor(t,e,l){this.collection=t,this.state=e;var i;this.allowsCellSelection=(i=l==null?void 0:l.allowsCellSelection)!==null&&i!==void 0?i:!1,this._isSelectAll=null,this.layoutDelegate=(l==null?void 0:l.layoutDelegate)||null}}exports.SelectionManager=h;
|