@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/index346.mjs
CHANGED
|
@@ -1,24 +1,284 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Selection as n } from "./index351.mjs";
|
|
2
|
+
import { compareNodeOrder as r, getFirstItem as d, getChildNodes as u } from "./index352.mjs";
|
|
3
|
+
class h {
|
|
4
|
+
/**
|
|
5
|
+
* The type of selection that is allowed in the collection.
|
|
6
|
+
*/
|
|
7
|
+
get selectionMode() {
|
|
8
|
+
return this.state.selectionMode;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Whether the collection allows empty selection.
|
|
12
|
+
*/
|
|
13
|
+
get disallowEmptySelection() {
|
|
14
|
+
return this.state.disallowEmptySelection;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* The selection behavior for the collection.
|
|
18
|
+
*/
|
|
19
|
+
get selectionBehavior() {
|
|
20
|
+
return this.state.selectionBehavior;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Sets the selection behavior for the collection.
|
|
24
|
+
*/
|
|
25
|
+
setSelectionBehavior(t) {
|
|
26
|
+
this.state.setSelectionBehavior(t);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Whether the collection is currently focused.
|
|
30
|
+
*/
|
|
31
|
+
get isFocused() {
|
|
32
|
+
return this.state.isFocused;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Sets whether the collection is focused.
|
|
36
|
+
*/
|
|
37
|
+
setFocused(t) {
|
|
38
|
+
this.state.setFocused(t);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* The current focused key in the collection.
|
|
42
|
+
*/
|
|
43
|
+
get focusedKey() {
|
|
44
|
+
return this.state.focusedKey;
|
|
45
|
+
}
|
|
46
|
+
/** Whether the first or last child of the focused key should receive focus. */
|
|
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
|
+
}
|
|
108
|
+
var e;
|
|
109
|
+
return (e = t == null ? void 0 : t.key) !== null && e !== void 0 ? e : null;
|
|
110
|
+
}
|
|
111
|
+
get disabledKeys() {
|
|
112
|
+
return this.state.disabledKeys;
|
|
113
|
+
}
|
|
114
|
+
get disabledBehavior() {
|
|
115
|
+
return this.state.disabledBehavior;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Extends the selection to the given key.
|
|
119
|
+
*/
|
|
120
|
+
extendSelection(t) {
|
|
121
|
+
if (this.selectionMode === "none") return;
|
|
122
|
+
if (this.selectionMode === "single") {
|
|
123
|
+
this.replaceSelection(t);
|
|
124
|
+
return;
|
|
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
|
+
}
|
|
215
|
+
};
|
|
216
|
+
return e(this.collection.getFirstKey()), t;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Selects all items in the collection.
|
|
220
|
+
*/
|
|
221
|
+
selectAll() {
|
|
222
|
+
!this.isSelectAll && this.selectionMode === "multiple" && this.state.setSelectedKeys("all");
|
|
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;
|
|
280
|
+
}
|
|
18
281
|
}
|
|
19
282
|
export {
|
|
20
|
-
|
|
21
|
-
u as getItemElement,
|
|
22
|
-
d as isNonContiguousSelectionModifier,
|
|
23
|
-
b as useCollectionId
|
|
283
|
+
h as SelectionManager
|
|
24
284
|
};
|
package/index347.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 d=require("./index353.js"),n=require("react");function s(u,l,t){let i=n.useMemo(()=>new d.CollectionBuilder,[]),{children:r,items:o,collection:e}=u;return n.useMemo(()=>{if(e)return e;let c=i.build({children:r,items:o},t);return l(c)},[i,r,o,e,t,l])}exports.useCollection=s;
|
package/index347.mjs
CHANGED
|
@@ -1,32 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
function
|
|
4
|
-
let {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
typeSelectProps: {
|
|
21
|
-
// Using a capturing listener to catch the keydown event before
|
|
22
|
-
// other hooks in order to handle the Spacebar event.
|
|
23
|
-
onKeyDownCapture: o.getKeyForSearch ? l : void 0
|
|
24
|
-
}
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
function s(r) {
|
|
28
|
-
return r.length === 1 || !/^[A-Z]/i.test(r) ? r : "";
|
|
1
|
+
import { CollectionBuilder as u } from "./index353.mjs";
|
|
2
|
+
import { useMemo as n } from "react";
|
|
3
|
+
function b(d, l, r) {
|
|
4
|
+
let t = n(() => new u(), []), { children: i, items: o, collection: e } = d;
|
|
5
|
+
return n(() => {
|
|
6
|
+
if (e) return e;
|
|
7
|
+
let c = t.build({
|
|
8
|
+
children: i,
|
|
9
|
+
items: o
|
|
10
|
+
}, r);
|
|
11
|
+
return l(c);
|
|
12
|
+
}, [
|
|
13
|
+
t,
|
|
14
|
+
i,
|
|
15
|
+
o,
|
|
16
|
+
e,
|
|
17
|
+
r,
|
|
18
|
+
l
|
|
19
|
+
]);
|
|
29
20
|
}
|
|
30
21
|
export {
|
|
31
|
-
|
|
22
|
+
b as useCollection
|
|
32
23
|
};
|
package/index8.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const u=require("react/jsx-runtime"),M=require("react"),p=require("react-aria"),f=require("./index37.js"),x=require("./index6.js"),l=({href:e="#main",themeName:a="skipToMain",tokens:i,customTheme:n,children:r,ariaLabel:t,...s})=>u.jsx(x.default,{as:"a",href:e,themeName:a,tokens:i,customTheme:n,"aria-label":t,...s,children:r}),c=({as:e="main",id:a="main",tabIndex:i=-1,themeName:n="main",tokens:r,customTheme:t,children:s,...d})=>{const o=M.useRef(null),{landmarkProps:m}=p.useLandmark({role:"main"},o);return u.jsx(f.BoxWithForwardRef,{as:e,id:a,
|
|
2
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const u=require("react/jsx-runtime"),M=require("react"),p=require("react-aria"),f=require("./index37.js"),x=require("./index6.js"),l=({href:e="#main",themeName:a="skipToMain",tokens:i,customTheme:n,children:r,ariaLabel:t,...s})=>u.jsx(x.default,{as:"a",href:e,themeName:a,tokens:i,customTheme:n,"aria-label":t,...s,children:r}),c=({as:e="main",id:a="main",tabIndex:i=-1,themeName:n="main",tokens:r,customTheme:t,children:s,...d})=>{const o=M.useRef(null),{landmarkProps:m}=p.useLandmark({role:"main"},o);return u.jsx(f.BoxWithForwardRef,{as:e,id:a,themeName:n,tokens:r,customTheme:t,ref:o,...d,...m,tabIndex:i,children:s})};l.displayName="SkipToMain";c.displayName="Main";exports.Main=c;exports.default=l;
|
package/index8.mjs
CHANGED