@y14e/accordion 1.4.15 → 1.4.16
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/README.md +4 -4
- package/dist/index.bundle.cjs +633 -15
- package/dist/index.bundle.js +628 -6
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.bundle.cjs
CHANGED
|
@@ -1,12 +1,580 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
var
|
|
5
|
-
var
|
|
3
|
+
// node_modules/@y14e/attributes-utils/dist/index.js
|
|
4
|
+
var DEFAULT_PARSER = (value) => value.split(/\s+/);
|
|
5
|
+
var DEFAULT_SERIALIZER = (tokens) => tokens.join(" ");
|
|
6
|
+
function addTokenToAttribute(element, attribute, token, options = {}) {
|
|
7
|
+
const {
|
|
8
|
+
caseInsensitive = false,
|
|
9
|
+
parse = DEFAULT_PARSER,
|
|
10
|
+
serialize = DEFAULT_SERIALIZER
|
|
11
|
+
} = options;
|
|
12
|
+
const value = element.getAttribute(attribute)?.trim();
|
|
13
|
+
const tokens = value ? parse(value).filter(Boolean) : [];
|
|
14
|
+
if (caseInsensitive) {
|
|
15
|
+
const lower = token.toLowerCase();
|
|
16
|
+
if (tokens.every((token2) => token2.toLowerCase() !== lower)) {
|
|
17
|
+
tokens.push(token);
|
|
18
|
+
element.setAttribute(attribute, serialize(tokens));
|
|
19
|
+
}
|
|
20
|
+
} else {
|
|
21
|
+
const set = new Set(tokens);
|
|
22
|
+
set.add(token);
|
|
23
|
+
element.setAttribute(attribute, serialize([...set]));
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
var snapshots = /* @__PURE__ */ new WeakMap();
|
|
27
|
+
function restoreAttributes(elements) {
|
|
28
|
+
for (const element of elements) {
|
|
29
|
+
const snapshot = snapshots.get(element);
|
|
30
|
+
if (!snapshot) {
|
|
31
|
+
continue;
|
|
32
|
+
}
|
|
33
|
+
for (const [attribute, value] of snapshot.entries()) {
|
|
34
|
+
value === null ? element.removeAttribute(attribute) : element.setAttribute(attribute, value);
|
|
35
|
+
}
|
|
36
|
+
snapshots.delete(element);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
function saveAttributes(elements, attributes) {
|
|
40
|
+
elements.forEach((element) => {
|
|
41
|
+
let snapshot = snapshots.get(element);
|
|
42
|
+
if (!snapshot) {
|
|
43
|
+
snapshot = /* @__PURE__ */ new Map();
|
|
44
|
+
snapshots.set(element, snapshot);
|
|
45
|
+
}
|
|
46
|
+
attributes.forEach((attribute) => {
|
|
47
|
+
snapshot.set(attribute, element.getAttribute(attribute));
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
}
|
|
6
51
|
|
|
7
|
-
|
|
52
|
+
// node_modules/power-focusable/dist/index.js
|
|
53
|
+
var FOCUSABLE_SELECTOR = `:is(a[href], area[href], button, embed, iframe, input:not([type="hidden" i]), object, select, details > summary:first-of-type, textarea, [contenteditable]:not([contenteditable="false" i]), [controls], [tabindex]):not(:disabled, [hidden], [inert], [tabindex="-1"])`;
|
|
54
|
+
function getFocusables(container = document.body, options = {}) {
|
|
55
|
+
if (!(container instanceof Element)) {
|
|
56
|
+
console.warn("Invalid container element. Fallback: <body> element.");
|
|
57
|
+
container = document.body;
|
|
58
|
+
}
|
|
59
|
+
let {
|
|
60
|
+
composed = false,
|
|
61
|
+
filter,
|
|
62
|
+
include,
|
|
63
|
+
skipNegativeTabIndexCheck = false,
|
|
64
|
+
skipVisibilityCheck = false
|
|
65
|
+
} = options;
|
|
66
|
+
if (typeof composed !== "boolean") {
|
|
67
|
+
console.warn("Invalid composed option. Fallback: false.");
|
|
68
|
+
composed = false;
|
|
69
|
+
}
|
|
70
|
+
if (typeof filter !== "undefined" && typeof filter !== "function") {
|
|
71
|
+
console.warn(
|
|
72
|
+
"Invalid filter function. Fallback: no filter function (undefined)."
|
|
73
|
+
);
|
|
74
|
+
filter = void 0;
|
|
75
|
+
}
|
|
76
|
+
if (typeof include !== "undefined" && typeof include !== "function") {
|
|
77
|
+
console.warn(
|
|
78
|
+
"Invalid include function. Fallback: no include function (undefined)."
|
|
79
|
+
);
|
|
80
|
+
include = void 0;
|
|
81
|
+
}
|
|
82
|
+
if (typeof skipNegativeTabIndexCheck !== "boolean") {
|
|
83
|
+
console.warn("Invalid skipNegativeTabIndexCheck option. Fallback: false.");
|
|
84
|
+
skipNegativeTabIndexCheck = false;
|
|
85
|
+
}
|
|
86
|
+
if (typeof skipVisibilityCheck !== "boolean") {
|
|
87
|
+
console.warn("Invalid skipVisibilityCheck option. Fallback: false.");
|
|
88
|
+
skipVisibilityCheck = false;
|
|
89
|
+
}
|
|
90
|
+
const elements = [];
|
|
91
|
+
if (composed || include) {
|
|
92
|
+
let traverse2 = function(node) {
|
|
93
|
+
if (!(node instanceof Element)) {
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
if (isFocusable(node, { skipNegativeTabIndexCheck, skipVisibilityCheck }) || include?.(node)) {
|
|
97
|
+
elements[elements.length] = node;
|
|
98
|
+
}
|
|
99
|
+
const children = getComposedChildren(node);
|
|
100
|
+
for (let i = 0, l = children.length; i < l; i++) {
|
|
101
|
+
const child = children[i];
|
|
102
|
+
child && traverse2(child);
|
|
103
|
+
}
|
|
104
|
+
};
|
|
105
|
+
traverse2(container);
|
|
106
|
+
} else {
|
|
107
|
+
const candidates = container.querySelectorAll(FOCUSABLE_SELECTOR);
|
|
108
|
+
for (let i = 0, l = candidates.length; i < l; i++) {
|
|
109
|
+
const candidate = candidates[i];
|
|
110
|
+
if (candidate && isFocusable(candidate, {
|
|
111
|
+
skipNegativeTabIndexCheck,
|
|
112
|
+
skipVisibilityCheck
|
|
113
|
+
})) {
|
|
114
|
+
elements[elements.length] = candidate;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
const unfiltered = normalizeRadioGroup(sortByTabIndex(elements));
|
|
119
|
+
return filter ? unfiltered.filter(filter) : unfiltered;
|
|
120
|
+
}
|
|
121
|
+
function isFocusable(element, options = {}) {
|
|
122
|
+
if (!(element instanceof Element)) {
|
|
123
|
+
console.warn("Invalid element");
|
|
124
|
+
return false;
|
|
125
|
+
}
|
|
126
|
+
let { skipNegativeTabIndexCheck = false, skipVisibilityCheck = false } = options;
|
|
127
|
+
if (typeof skipNegativeTabIndexCheck !== "boolean") {
|
|
128
|
+
console.warn("Invalid skipNegativeTabIndexCheck option. Fallback: false.");
|
|
129
|
+
skipNegativeTabIndexCheck = false;
|
|
130
|
+
}
|
|
131
|
+
if (typeof skipVisibilityCheck !== "boolean") {
|
|
132
|
+
console.warn("Invalid skipVisibilityCheck option. Fallback: false.");
|
|
133
|
+
skipVisibilityCheck = false;
|
|
134
|
+
}
|
|
135
|
+
if (element.hasAttribute("hidden") || isInert(element)) {
|
|
136
|
+
return false;
|
|
137
|
+
}
|
|
138
|
+
if (!skipNegativeTabIndexCheck && getTabIndex(element) < 0) {
|
|
139
|
+
return false;
|
|
140
|
+
}
|
|
141
|
+
if (!element.matches(
|
|
142
|
+
skipNegativeTabIndexCheck ? FOCUSABLE_SELECTOR.replace(/(,\s*)?\[tabindex="-1"\]/g, "") : FOCUSABLE_SELECTOR
|
|
143
|
+
)) {
|
|
144
|
+
return false;
|
|
145
|
+
}
|
|
146
|
+
if (isDisabledDeep(element)) {
|
|
147
|
+
return false;
|
|
148
|
+
}
|
|
149
|
+
if (!skipVisibilityCheck && !element.checkVisibility({
|
|
150
|
+
contentVisibilityAuto: true,
|
|
151
|
+
opacityProperty: true,
|
|
152
|
+
visibilityProperty: true
|
|
153
|
+
})) {
|
|
154
|
+
return false;
|
|
155
|
+
}
|
|
156
|
+
return true;
|
|
157
|
+
}
|
|
158
|
+
function isDisabledDeep(element) {
|
|
159
|
+
let current = element;
|
|
160
|
+
while (current) {
|
|
161
|
+
if (current instanceof ShadowRoot) {
|
|
162
|
+
if (current.mode !== "open") {
|
|
163
|
+
return false;
|
|
164
|
+
}
|
|
165
|
+
current = current.host;
|
|
166
|
+
continue;
|
|
167
|
+
}
|
|
168
|
+
if (!(current instanceof Element)) {
|
|
169
|
+
current = current.parentNode;
|
|
170
|
+
continue;
|
|
171
|
+
}
|
|
172
|
+
if (current === element && isFormControl(current) && isDisabled(current)) {
|
|
173
|
+
return true;
|
|
174
|
+
}
|
|
175
|
+
if (isInert(current)) {
|
|
176
|
+
return true;
|
|
177
|
+
}
|
|
178
|
+
if (isFormControl(element) && current.tagName === "FIELDSET" && isDisabled(current)) {
|
|
179
|
+
if (!current.querySelector(":scope > legend:first-of-type")?.contains(element)) {
|
|
180
|
+
return true;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
current = current.parentNode;
|
|
184
|
+
}
|
|
185
|
+
return false;
|
|
186
|
+
}
|
|
187
|
+
function normalizeRadioGroup(elements) {
|
|
188
|
+
let map = null;
|
|
189
|
+
for (let i = 0, l = elements.length; i < l; i++) {
|
|
190
|
+
const element = elements[i];
|
|
191
|
+
if (!(element instanceof HTMLInputElement)) {
|
|
192
|
+
continue;
|
|
193
|
+
}
|
|
194
|
+
if (!isUngroupedRadio(element)) {
|
|
195
|
+
continue;
|
|
196
|
+
}
|
|
197
|
+
if (!map) {
|
|
198
|
+
map = /* @__PURE__ */ new Map();
|
|
199
|
+
}
|
|
200
|
+
const key = `${element.form?.id ?? "no-form"}::${element.name}`;
|
|
201
|
+
const group = map.get(key) ?? map.set(key, []).get(key);
|
|
202
|
+
if (group) {
|
|
203
|
+
group[group.length] = element;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
if (!map) {
|
|
207
|
+
return elements;
|
|
208
|
+
}
|
|
209
|
+
const placeholder = /* @__PURE__ */ new Set();
|
|
210
|
+
for (const group of map.values()) {
|
|
211
|
+
placeholder.add(group.find((radio) => radio.checked) ?? group[0]);
|
|
212
|
+
}
|
|
213
|
+
return elements.filter(
|
|
214
|
+
(element) => isUngroupedRadio(element) ? placeholder.has(element) : true
|
|
215
|
+
);
|
|
216
|
+
}
|
|
217
|
+
function sortByTabIndex(elements) {
|
|
218
|
+
const ordered = [];
|
|
219
|
+
const natural = [];
|
|
220
|
+
for (let i = 0, l = elements.length; i < l; i++) {
|
|
221
|
+
const element = elements[i];
|
|
222
|
+
if (element) {
|
|
223
|
+
const target = getTabIndex(element) > 0 ? ordered : natural;
|
|
224
|
+
target[target.length] = element;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
ordered.sort((a, b) => getTabIndex(a) - getTabIndex(b));
|
|
228
|
+
let count = 0;
|
|
229
|
+
const sorted = new Array(ordered.length + natural.length);
|
|
230
|
+
for (let i = 0, l = ordered.length; i < l; i++) {
|
|
231
|
+
sorted[count++] = ordered[i];
|
|
232
|
+
}
|
|
233
|
+
for (let i = 0, l = natural.length; i < l; i++) {
|
|
234
|
+
sorted[count++] = natural[i];
|
|
235
|
+
}
|
|
236
|
+
return sorted;
|
|
237
|
+
}
|
|
238
|
+
function getComposedChildren(node) {
|
|
239
|
+
if (node instanceof ShadowRoot) {
|
|
240
|
+
return getChildren(node);
|
|
241
|
+
}
|
|
242
|
+
if (!(node instanceof Element)) {
|
|
243
|
+
return [];
|
|
244
|
+
}
|
|
245
|
+
if (node instanceof HTMLSlotElement) {
|
|
246
|
+
const assigned = node.assignedElements({ flatten: true });
|
|
247
|
+
if (assigned.length) {
|
|
248
|
+
return assigned;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
if (node instanceof HTMLElement && node.shadowRoot?.mode === "open") {
|
|
252
|
+
return getChildren(node.shadowRoot);
|
|
253
|
+
}
|
|
254
|
+
return getChildren(node);
|
|
255
|
+
}
|
|
256
|
+
function focusElement(element) {
|
|
257
|
+
"focus" in element && typeof element.focus === "function" && element.focus();
|
|
258
|
+
}
|
|
259
|
+
function getActiveElement() {
|
|
260
|
+
let current = document.activeElement;
|
|
261
|
+
while (current?.shadowRoot?.activeElement) {
|
|
262
|
+
current = current.shadowRoot.activeElement;
|
|
263
|
+
}
|
|
264
|
+
return current;
|
|
265
|
+
}
|
|
266
|
+
function getChildren(node) {
|
|
267
|
+
const elements = [];
|
|
268
|
+
for (let child = node.firstElementChild; child; child = child.nextElementSibling) {
|
|
269
|
+
elements[elements.length] = child;
|
|
270
|
+
}
|
|
271
|
+
return elements;
|
|
272
|
+
}
|
|
273
|
+
function getTabIndex(element) {
|
|
274
|
+
return "tabIndex" in element ? Number(element.tabIndex) : 0;
|
|
275
|
+
}
|
|
276
|
+
function isDisabled(element) {
|
|
277
|
+
return "disabled" in element && !!element.disabled;
|
|
278
|
+
}
|
|
279
|
+
function isFormControl(element) {
|
|
280
|
+
const name = element.tagName;
|
|
281
|
+
return name === "BUTTON" || name === "INPUT" || name === "SELECT" || name === "TEXTAREA";
|
|
282
|
+
}
|
|
283
|
+
function isInert(element) {
|
|
284
|
+
return "inert" in element && !!element.inert;
|
|
285
|
+
}
|
|
286
|
+
function isUngroupedRadio(element) {
|
|
287
|
+
return element instanceof HTMLInputElement && element.type === "radio" && !!element.name;
|
|
288
|
+
}
|
|
8
289
|
|
|
9
|
-
|
|
290
|
+
// node_modules/@y14e/button/dist/index.js
|
|
291
|
+
var Button = class {
|
|
292
|
+
#element;
|
|
293
|
+
#controller = null;
|
|
294
|
+
#isDestroyed = false;
|
|
295
|
+
constructor(element) {
|
|
296
|
+
if (!(element instanceof HTMLElement)) {
|
|
297
|
+
throw new TypeError("Invalid element");
|
|
298
|
+
}
|
|
299
|
+
if (element.hasAttribute("data-button-initialized")) {
|
|
300
|
+
console.warn("Already initialized");
|
|
301
|
+
return;
|
|
302
|
+
}
|
|
303
|
+
this.#element = element;
|
|
304
|
+
this.#initialize();
|
|
305
|
+
}
|
|
306
|
+
destroy() {
|
|
307
|
+
if (this.#isDestroyed) {
|
|
308
|
+
return;
|
|
309
|
+
}
|
|
310
|
+
this.#isDestroyed = true;
|
|
311
|
+
this.#controller?.abort();
|
|
312
|
+
this.#controller = null;
|
|
313
|
+
this.#element.removeAttribute("data-button-initialized");
|
|
314
|
+
}
|
|
315
|
+
#initialize() {
|
|
316
|
+
this.#controller = new AbortController();
|
|
317
|
+
this.#element.addEventListener("keydown", this.#onKeyDown, {
|
|
318
|
+
signal: this.#controller.signal
|
|
319
|
+
});
|
|
320
|
+
this.#element.setAttribute("data-button-initialized", "");
|
|
321
|
+
}
|
|
322
|
+
#onKeyDown = (event) => {
|
|
323
|
+
const { key, altKey, ctrlKey, metaKey, shiftKey } = event;
|
|
324
|
+
if (altKey || ctrlKey || metaKey || shiftKey) {
|
|
325
|
+
return;
|
|
326
|
+
}
|
|
327
|
+
if (!["Enter", " "].includes(key)) {
|
|
328
|
+
return;
|
|
329
|
+
}
|
|
330
|
+
const active = getActiveElement();
|
|
331
|
+
if (!(active instanceof HTMLElement)) {
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
334
|
+
event.preventDefault();
|
|
335
|
+
active.click();
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
// node_modules/@y14e/roving-tabindex/dist/index.js
|
|
340
|
+
function createRovingTabIndex(container, options = {}) {
|
|
341
|
+
if (!(container instanceof Element)) {
|
|
342
|
+
console.warn("Invalid container element");
|
|
343
|
+
return () => {
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
const roving = new RovingTabIndex(container, options);
|
|
347
|
+
return () => roving.destroy();
|
|
348
|
+
}
|
|
349
|
+
var RovingTabIndex = class _RovingTabIndex {
|
|
350
|
+
static #initialized = /* @__PURE__ */ new Set();
|
|
351
|
+
#container;
|
|
352
|
+
#settings;
|
|
353
|
+
#focusables = /* @__PURE__ */ new Set();
|
|
354
|
+
#focusablesByFirstChar = /* @__PURE__ */ new Map();
|
|
355
|
+
#selectorFilter;
|
|
356
|
+
#controller = null;
|
|
357
|
+
#isDestroyed = false;
|
|
358
|
+
constructor(container, options = {}) {
|
|
359
|
+
this.#container = container;
|
|
360
|
+
let {
|
|
361
|
+
direction,
|
|
362
|
+
navigationOnly = false,
|
|
363
|
+
noMemory = false,
|
|
364
|
+
noStart = false,
|
|
365
|
+
selector,
|
|
366
|
+
typeahead = false,
|
|
367
|
+
wrap = false
|
|
368
|
+
} = options;
|
|
369
|
+
if (typeof direction !== "undefined" && !["horizontal", "vertical"].includes(direction)) {
|
|
370
|
+
console.warn("Invalid direction option. Fallback: both (undefined).");
|
|
371
|
+
direction = void 0;
|
|
372
|
+
}
|
|
373
|
+
if (typeof navigationOnly !== "boolean") {
|
|
374
|
+
console.warn("Invalid navigationOnly option. Fallback: false.");
|
|
375
|
+
navigationOnly = false;
|
|
376
|
+
}
|
|
377
|
+
if (typeof noMemory !== "boolean") {
|
|
378
|
+
console.warn("Invalid noMemory option. Fallback: false.");
|
|
379
|
+
noMemory = false;
|
|
380
|
+
}
|
|
381
|
+
if (typeof noStart !== "boolean") {
|
|
382
|
+
console.warn("Invalid noStart option. Fallback: false.");
|
|
383
|
+
noStart = false;
|
|
384
|
+
}
|
|
385
|
+
if (typeof selector !== "undefined" && (typeof selector !== "string" || !selector.trim())) {
|
|
386
|
+
console.warn(
|
|
387
|
+
"Invalid selector. Fallback: all focusable elements (undefined)."
|
|
388
|
+
);
|
|
389
|
+
selector = void 0;
|
|
390
|
+
}
|
|
391
|
+
if (typeof typeahead !== "boolean") {
|
|
392
|
+
console.warn("Invalid typeahead option. Fallback: false.");
|
|
393
|
+
typeahead = false;
|
|
394
|
+
}
|
|
395
|
+
if (typeof wrap !== "boolean") {
|
|
396
|
+
console.warn("Invalid wrap option. Fallback: false.");
|
|
397
|
+
wrap = false;
|
|
398
|
+
}
|
|
399
|
+
this.#settings = {
|
|
400
|
+
navigationOnly,
|
|
401
|
+
noMemory,
|
|
402
|
+
noStart,
|
|
403
|
+
typeahead,
|
|
404
|
+
wrap
|
|
405
|
+
};
|
|
406
|
+
direction && Object.assign(this.#settings, { direction });
|
|
407
|
+
selector && Object.assign(this.#settings, { selector });
|
|
408
|
+
this.#selectorFilter = this.#createSelectorFilter();
|
|
409
|
+
this.#initialize();
|
|
410
|
+
}
|
|
411
|
+
destroy() {
|
|
412
|
+
if (this.#isDestroyed) {
|
|
413
|
+
return;
|
|
414
|
+
}
|
|
415
|
+
this.#isDestroyed = true;
|
|
416
|
+
this.#controller?.abort();
|
|
417
|
+
this.#controller = null;
|
|
418
|
+
restoreAttributes([...this.#focusables]);
|
|
419
|
+
this.#focusables.clear();
|
|
420
|
+
this.#focusablesByFirstChar.clear();
|
|
421
|
+
}
|
|
422
|
+
#initialize() {
|
|
423
|
+
this.#update(document.activeElement);
|
|
424
|
+
if (!(this.#container instanceof HTMLElement)) {
|
|
425
|
+
return;
|
|
426
|
+
}
|
|
427
|
+
this.#controller = new AbortController();
|
|
428
|
+
const { signal } = this.#controller;
|
|
429
|
+
this.#container.addEventListener("focusin", this.#onFocusIn, {
|
|
430
|
+
capture: true,
|
|
431
|
+
signal
|
|
432
|
+
});
|
|
433
|
+
this.#container.addEventListener("keydown", this.#onKeyDown, {
|
|
434
|
+
capture: true,
|
|
435
|
+
signal
|
|
436
|
+
});
|
|
437
|
+
}
|
|
438
|
+
#onFocusIn = (event) => {
|
|
439
|
+
const { target } = event;
|
|
440
|
+
if (!(target instanceof Element)) {
|
|
441
|
+
return;
|
|
442
|
+
}
|
|
443
|
+
const isFocusable3 = this.#focusables.has(target);
|
|
444
|
+
this.#settings.noMemory && !isFocusable3 ? this.#update(null) : isFocusable3 && this.#update(target);
|
|
445
|
+
};
|
|
446
|
+
#onKeyDown = (event) => {
|
|
447
|
+
const { key, altKey, ctrlKey, metaKey, shiftKey } = event;
|
|
448
|
+
if (altKey || ctrlKey || metaKey || shiftKey) {
|
|
449
|
+
return;
|
|
450
|
+
}
|
|
451
|
+
const { direction, typeahead, wrap } = this.#settings;
|
|
452
|
+
const isBoth = !direction;
|
|
453
|
+
const isHorizontal = direction === "horizontal";
|
|
454
|
+
if (![
|
|
455
|
+
"End",
|
|
456
|
+
"Home",
|
|
457
|
+
...isBoth ? ["ArrowLeft", "ArrowUp"] : [`Arrow${isHorizontal ? "Left" : "Up"}`],
|
|
458
|
+
...isBoth ? ["ArrowRight", "ArrowDown"] : [`Arrow${isHorizontal ? "Right" : "Down"}`]
|
|
459
|
+
].includes(key)) {
|
|
460
|
+
if (!typeahead || !/^\S$/i.test(key) || !this.#focusablesByFirstChar.has(key.toUpperCase())) {
|
|
461
|
+
return;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
const active = getActiveElement();
|
|
465
|
+
if (!(active instanceof HTMLElement)) {
|
|
466
|
+
return;
|
|
467
|
+
}
|
|
468
|
+
const current = this.#getFocusables();
|
|
469
|
+
if (!current.includes(active)) {
|
|
470
|
+
return;
|
|
471
|
+
}
|
|
472
|
+
event.preventDefault();
|
|
473
|
+
const currentIndex = current.indexOf(active);
|
|
474
|
+
let newIndex;
|
|
475
|
+
let target = current;
|
|
476
|
+
switch (key) {
|
|
477
|
+
case "End":
|
|
478
|
+
newIndex = -1;
|
|
479
|
+
break;
|
|
480
|
+
case "Home":
|
|
481
|
+
newIndex = 0;
|
|
482
|
+
break;
|
|
483
|
+
case "ArrowLeft":
|
|
484
|
+
case "ArrowUp": {
|
|
485
|
+
const rawIndex = currentIndex - 1;
|
|
486
|
+
newIndex = wrap ? rawIndex : Math.max(rawIndex, 0);
|
|
487
|
+
break;
|
|
488
|
+
}
|
|
489
|
+
case "ArrowRight":
|
|
490
|
+
case "ArrowDown": {
|
|
491
|
+
const rawIndex = currentIndex + 1;
|
|
492
|
+
newIndex = wrap ? rawIndex % current.length : Math.min(rawIndex, current.length - 1);
|
|
493
|
+
break;
|
|
494
|
+
}
|
|
495
|
+
default: {
|
|
496
|
+
target = this.#focusablesByFirstChar.get(key.toUpperCase()) ?? [];
|
|
497
|
+
const foundIndex = target.findIndex(
|
|
498
|
+
(focusable2) => current.indexOf(focusable2) > currentIndex
|
|
499
|
+
);
|
|
500
|
+
newIndex = foundIndex >= 0 ? foundIndex : 0;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
const focusable = target.at(newIndex);
|
|
504
|
+
focusable && focusElement(focusable);
|
|
505
|
+
};
|
|
506
|
+
#update(active) {
|
|
507
|
+
const current = new Set(this.#getFocusables());
|
|
508
|
+
for (const focusable of this.#focusables) {
|
|
509
|
+
if (!current.has(focusable)) {
|
|
510
|
+
focusable.isConnected && restoreAttributes([focusable]);
|
|
511
|
+
this.#focusables.delete(focusable);
|
|
512
|
+
this.#focusablesByFirstChar.forEach((focusables) => {
|
|
513
|
+
const index = focusables.indexOf(focusable);
|
|
514
|
+
index >= 0 && focusables.splice(index, 1);
|
|
515
|
+
});
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
const { navigationOnly, noStart, typeahead } = this.#settings;
|
|
519
|
+
for (const focusable of current) {
|
|
520
|
+
if (this.#focusables.has(focusable)) {
|
|
521
|
+
continue;
|
|
522
|
+
}
|
|
523
|
+
if (_RovingTabIndex.#initialized.has(focusable)) {
|
|
524
|
+
throw new TypeError("Already initialized");
|
|
525
|
+
}
|
|
526
|
+
this.#focusables.add(focusable);
|
|
527
|
+
_RovingTabIndex.#initialized.add(focusable);
|
|
528
|
+
if (!navigationOnly) {
|
|
529
|
+
saveAttributes([focusable], ["tabindex"]);
|
|
530
|
+
focusable.setAttribute("tabindex", "-1");
|
|
531
|
+
}
|
|
532
|
+
if (!typeahead) {
|
|
533
|
+
continue;
|
|
534
|
+
}
|
|
535
|
+
const char = focusable.textContent?.trim()?.at(0)?.toUpperCase();
|
|
536
|
+
const value = focusable.ariaKeyShortcuts?.trim();
|
|
537
|
+
const keys = new Set(
|
|
538
|
+
value ? value.split(/\s+/).filter((key) => /^\S$/i.test(key)).map((key) => key.toUpperCase()) : []
|
|
539
|
+
);
|
|
540
|
+
if (char) {
|
|
541
|
+
keys.add(char);
|
|
542
|
+
saveAttributes([focusable], ["aria-keyshortcuts"]);
|
|
543
|
+
addTokenToAttribute(focusable, "aria-keyshortcuts", char, {
|
|
544
|
+
caseInsensitive: true
|
|
545
|
+
});
|
|
546
|
+
}
|
|
547
|
+
keys.forEach((key) => {
|
|
548
|
+
const focusables = this.#focusablesByFirstChar.get(key) ?? [];
|
|
549
|
+
focusables.push(focusable);
|
|
550
|
+
this.#focusablesByFirstChar.set(key, focusables);
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
if (!navigationOnly) {
|
|
554
|
+
if (active && this.#focusables.has(active)) {
|
|
555
|
+
this.#focusables.forEach((focusable) => {
|
|
556
|
+
focusable.setAttribute("tabindex", focusable === active ? "0" : "-1");
|
|
557
|
+
});
|
|
558
|
+
} else {
|
|
559
|
+
[...this.#focusables].forEach((focusable, i) => {
|
|
560
|
+
focusable.setAttribute("tabindex", i || noStart ? "-1" : "0");
|
|
561
|
+
});
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
#createSelectorFilter() {
|
|
566
|
+
const { selector } = this.#settings;
|
|
567
|
+
return (element) => !selector || [...this.#container.querySelectorAll(selector)].includes(element);
|
|
568
|
+
}
|
|
569
|
+
#getFocusables() {
|
|
570
|
+
return getFocusables(this.#container, {
|
|
571
|
+
composed: true,
|
|
572
|
+
filter: this.#selectorFilter,
|
|
573
|
+
skipNegativeTabIndexCheck: !this.#settings.navigationOnly,
|
|
574
|
+
skipVisibilityCheck: true
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
};
|
|
10
578
|
|
|
11
579
|
// src/index.ts
|
|
12
580
|
var Accordion = class _Accordion {
|
|
@@ -101,7 +669,7 @@ var Accordion = class _Accordion {
|
|
|
101
669
|
});
|
|
102
670
|
this.#animationController?.abort();
|
|
103
671
|
this.#animationController = null;
|
|
104
|
-
|
|
672
|
+
restoreAttributes([...this.#triggerElements, ...this.#contentElements]);
|
|
105
673
|
this.#triggerElements.length = 0;
|
|
106
674
|
this.#contentElements.length = 0;
|
|
107
675
|
this.#rootElement.removeAttribute("data-accordion-initialized");
|
|
@@ -117,14 +685,14 @@ var Accordion = class _Accordion {
|
|
|
117
685
|
this.#toggle(trigger, true);
|
|
118
686
|
}
|
|
119
687
|
#initialize() {
|
|
120
|
-
|
|
688
|
+
saveAttributes(this.#triggerElements, [
|
|
121
689
|
"aria-controls",
|
|
122
690
|
"aria-disabled",
|
|
123
691
|
"id",
|
|
124
692
|
"style",
|
|
125
693
|
"tabindex"
|
|
126
694
|
]);
|
|
127
|
-
|
|
695
|
+
saveAttributes(this.#contentElements, ["aria-labelledby", "id", "role"]);
|
|
128
696
|
this.#eventController = new AbortController();
|
|
129
697
|
const { signal } = this.#eventController;
|
|
130
698
|
this.#triggerElements.forEach((trigger2, i) => {
|
|
@@ -134,27 +702,27 @@ var Accordion = class _Accordion {
|
|
|
134
702
|
return;
|
|
135
703
|
}
|
|
136
704
|
content2.id ||= `accordion-content-${id}`;
|
|
137
|
-
|
|
705
|
+
addTokenToAttribute(trigger2, "aria-controls", content2.id);
|
|
138
706
|
trigger2.setAttribute(
|
|
139
707
|
"aria-expanded",
|
|
140
708
|
String(trigger2.ariaExpanded === "true")
|
|
141
709
|
);
|
|
142
710
|
trigger2.id ||= `accordion-trigger-${id}`;
|
|
143
|
-
if (!
|
|
711
|
+
if (!isFocusable2(trigger2)) {
|
|
144
712
|
trigger2.setAttribute("aria-disabled", "true");
|
|
145
713
|
trigger2.setAttribute("tabindex", "-1");
|
|
146
714
|
trigger2.style.setProperty("pointer-events", "none");
|
|
147
715
|
}
|
|
148
716
|
trigger2.addEventListener("click", this.#onTriggerClick, { signal });
|
|
149
|
-
|
|
717
|
+
addTokenToAttribute(content2, "aria-labelledby", trigger2.id);
|
|
150
718
|
content2.setAttribute("role", "region");
|
|
151
719
|
content2.addEventListener("beforematch", this.#onContentBeforeMatch, {
|
|
152
720
|
signal
|
|
153
721
|
});
|
|
154
|
-
this.#buttons.push(new
|
|
722
|
+
this.#buttons.push(new Button(trigger2));
|
|
155
723
|
});
|
|
156
724
|
const { trigger, content } = this.#settings.selector;
|
|
157
|
-
this.#cleanupRovingTabIndex =
|
|
725
|
+
this.#cleanupRovingTabIndex = createRovingTabIndex(this.#rootElement, {
|
|
158
726
|
direction: "vertical",
|
|
159
727
|
navigationOnly: true,
|
|
160
728
|
selector: `${trigger}:not(:scope ${content} *)`,
|
|
@@ -266,7 +834,7 @@ var Accordion = class _Accordion {
|
|
|
266
834
|
function createBinding(trigger, content) {
|
|
267
835
|
return { trigger, content, animation: null };
|
|
268
836
|
}
|
|
269
|
-
function
|
|
837
|
+
function isFocusable2(element) {
|
|
270
838
|
return !element.hasAttribute("disabled") && element.tabIndex >= 0;
|
|
271
839
|
}
|
|
272
840
|
function waitAnimationFinish(animation) {
|
|
@@ -282,11 +850,61 @@ function waitAnimationFinish(animation) {
|
|
|
282
850
|
* Accordion
|
|
283
851
|
* WAI-ARIA compliant accordion pattern implementation in TypeScript.
|
|
284
852
|
*
|
|
285
|
-
* @version 1.4.
|
|
853
|
+
* @version 1.4.16
|
|
286
854
|
* @author Yusuke Kamiyamane
|
|
287
855
|
* @license MIT
|
|
288
856
|
* @copyright Copyright (c) Yusuke Kamiyamane
|
|
289
857
|
* @see {@link https://github.com/y14e/accordion}
|
|
290
858
|
*/
|
|
859
|
+
/*! Bundled license information:
|
|
860
|
+
|
|
861
|
+
@y14e/attributes-utils/dist/index.js:
|
|
862
|
+
(**
|
|
863
|
+
* Attributes Utils
|
|
864
|
+
*
|
|
865
|
+
* @version 1.1.2
|
|
866
|
+
* @author Yusuke Kamiyamane
|
|
867
|
+
* @license MIT
|
|
868
|
+
* @copyright Copyright (c) Yusuke Kamiyamane
|
|
869
|
+
* @see {@link https://github.com/y14e/attributes-utils}
|
|
870
|
+
*)
|
|
871
|
+
|
|
872
|
+
power-focusable/dist/index.js:
|
|
873
|
+
(**
|
|
874
|
+
* Power Focusable
|
|
875
|
+
* High-precision focus management utility with full composed tree support.
|
|
876
|
+
* Handles complex focus rules including tabindex ordering, radio groups, inert.
|
|
877
|
+
*
|
|
878
|
+
* @version 4.3.3
|
|
879
|
+
* @author Yusuke Kamiyamane
|
|
880
|
+
* @license MIT
|
|
881
|
+
* @copyright Copyright (c) Yusuke Kamiyamane
|
|
882
|
+
* @see {@link https://github.com/y14e/power-focusable}
|
|
883
|
+
*)
|
|
884
|
+
|
|
885
|
+
@y14e/button/dist/index.js:
|
|
886
|
+
(**
|
|
887
|
+
* Button
|
|
888
|
+
*
|
|
889
|
+
* @version 1.0.6
|
|
890
|
+
* @author Yusuke Kamiyamane
|
|
891
|
+
* @license MIT
|
|
892
|
+
* @copyright Copyright (c) Yusuke Kamiyamane
|
|
893
|
+
* @see {@link https://github.com/y14e/button}
|
|
894
|
+
*)
|
|
895
|
+
|
|
896
|
+
@y14e/roving-tabindex/dist/index.js:
|
|
897
|
+
(**
|
|
898
|
+
* Roving Tabindex
|
|
899
|
+
* Lightweight roving tabindex utility with fully focus management.
|
|
900
|
+
* Designed for accessible menus, tabs, toolbars, and composite widgets.
|
|
901
|
+
*
|
|
902
|
+
* @version 3.0.12
|
|
903
|
+
* @author Yusuke Kamiyamane
|
|
904
|
+
* @license MIT
|
|
905
|
+
* @copyright Copyright (c) Yusuke Kamiyamane
|
|
906
|
+
* @see {@link https://github.com/y14e/roving-tabindex}
|
|
907
|
+
*)
|
|
908
|
+
*/
|
|
291
909
|
|
|
292
910
|
module.exports = Accordion;
|