@y14e/accordion 1.4.14 → 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.
@@ -0,0 +1,910 @@
1
+ 'use strict';
2
+
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
+ }
51
+
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
+ }
289
+
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
+ };
578
+
579
+ // src/index.ts
580
+ var Accordion = class _Accordion {
581
+ static defaults = {};
582
+ #rootElement;
583
+ #defaults = {
584
+ animation: { duration: 300, easing: "ease" },
585
+ selector: {
586
+ content: ":has(> [data-accordion-trigger]) + *",
587
+ trigger: "[data-accordion-trigger]"
588
+ }
589
+ };
590
+ #settings;
591
+ #triggerElements;
592
+ #contentElements;
593
+ #bindings = /* @__PURE__ */ new WeakMap();
594
+ #eventController = null;
595
+ #animationController = null;
596
+ #cleanupRovingTabIndex = null;
597
+ #buttons = [];
598
+ #isDestroyed = false;
599
+ constructor(root, options = {}) {
600
+ if (!(root instanceof HTMLElement)) {
601
+ throw new TypeError("Invalid root element");
602
+ }
603
+ if (root.hasAttribute("data-accordion-initialized")) {
604
+ console.warn("Already initialized");
605
+ return;
606
+ }
607
+ this.#rootElement = root;
608
+ this.#defaults = this.#mergeOptions(this.#defaults, _Accordion.defaults);
609
+ this.#settings = this.#mergeOptions(this.#defaults, options);
610
+ matchMedia("(prefers-reduced-motion: reduce)").matches && Object.assign(this.#settings.animation, { duration: 0 });
611
+ const { trigger, content } = this.#settings.selector;
612
+ const NOT_NESTED = `:not(:scope ${content} *)`;
613
+ this.#triggerElements = [
614
+ ...this.#rootElement.querySelectorAll(
615
+ `${trigger}${NOT_NESTED}`
616
+ )
617
+ ];
618
+ if (!this.#triggerElements.length) {
619
+ console.warn("Missing trigger elements");
620
+ return;
621
+ }
622
+ this.#contentElements = [
623
+ ...this.#rootElement.querySelectorAll(
624
+ `${content}${NOT_NESTED}`
625
+ )
626
+ ];
627
+ if (!this.#contentElements.length) {
628
+ console.warn("Missing content elements");
629
+ return;
630
+ }
631
+ this.#triggerElements.forEach((trigger2, i) => {
632
+ const content2 = this.#contentElements[i];
633
+ if (!content2) {
634
+ return;
635
+ }
636
+ const binding = createBinding(trigger2, content2);
637
+ this.#bindings.set(trigger2, binding);
638
+ this.#bindings.set(content2, binding);
639
+ });
640
+ this.#initialize();
641
+ }
642
+ close(trigger) {
643
+ if (this.#isDestroyed) {
644
+ return;
645
+ }
646
+ if (!(trigger instanceof HTMLElement) || !this.#bindings.has(trigger)) {
647
+ console.warn("Invalid trigger element");
648
+ return;
649
+ }
650
+ this.#toggle(trigger, false);
651
+ }
652
+ async destroy(force = false) {
653
+ if (this.#isDestroyed) {
654
+ return;
655
+ }
656
+ this.#isDestroyed = true;
657
+ this.#eventController?.abort();
658
+ this.#eventController = null;
659
+ this.#cleanupRovingTabIndex?.();
660
+ this.#cleanupRovingTabIndex = null;
661
+ this.#buttons.forEach((button) => {
662
+ button.destroy();
663
+ });
664
+ this.#buttons.length = 0;
665
+ !force && await this.#waitAnimationsFinish();
666
+ this.#contentElements.forEach((content) => {
667
+ force && this.#bindings.get(content)?.animation?.finish();
668
+ this.#onAnimationFinish(content);
669
+ });
670
+ this.#animationController?.abort();
671
+ this.#animationController = null;
672
+ restoreAttributes([...this.#triggerElements, ...this.#contentElements]);
673
+ this.#triggerElements.length = 0;
674
+ this.#contentElements.length = 0;
675
+ this.#rootElement.removeAttribute("data-accordion-initialized");
676
+ }
677
+ open(trigger) {
678
+ if (this.#isDestroyed) {
679
+ return;
680
+ }
681
+ if (!(trigger instanceof HTMLElement) || !this.#bindings.has(trigger)) {
682
+ console.warn("Invalid trigger element");
683
+ return;
684
+ }
685
+ this.#toggle(trigger, true);
686
+ }
687
+ #initialize() {
688
+ saveAttributes(this.#triggerElements, [
689
+ "aria-controls",
690
+ "aria-disabled",
691
+ "id",
692
+ "style",
693
+ "tabindex"
694
+ ]);
695
+ saveAttributes(this.#contentElements, ["aria-labelledby", "id", "role"]);
696
+ this.#eventController = new AbortController();
697
+ const { signal } = this.#eventController;
698
+ this.#triggerElements.forEach((trigger2, i) => {
699
+ const id = Math.random().toString(36).slice(-8);
700
+ const content2 = this.#contentElements[i];
701
+ if (!content2) {
702
+ return;
703
+ }
704
+ content2.id ||= `accordion-content-${id}`;
705
+ addTokenToAttribute(trigger2, "aria-controls", content2.id);
706
+ trigger2.setAttribute(
707
+ "aria-expanded",
708
+ String(trigger2.ariaExpanded === "true")
709
+ );
710
+ trigger2.id ||= `accordion-trigger-${id}`;
711
+ if (!isFocusable2(trigger2)) {
712
+ trigger2.setAttribute("aria-disabled", "true");
713
+ trigger2.setAttribute("tabindex", "-1");
714
+ trigger2.style.setProperty("pointer-events", "none");
715
+ }
716
+ trigger2.addEventListener("click", this.#onTriggerClick, { signal });
717
+ addTokenToAttribute(content2, "aria-labelledby", trigger2.id);
718
+ content2.setAttribute("role", "region");
719
+ content2.addEventListener("beforematch", this.#onContentBeforeMatch, {
720
+ signal
721
+ });
722
+ this.#buttons.push(new Button(trigger2));
723
+ });
724
+ const { trigger, content } = this.#settings.selector;
725
+ this.#cleanupRovingTabIndex = createRovingTabIndex(this.#rootElement, {
726
+ direction: "vertical",
727
+ navigationOnly: true,
728
+ selector: `${trigger}:not(:scope ${content} *)`,
729
+ wrap: true
730
+ });
731
+ this.#rootElement.setAttribute("data-accordion-initialized", "");
732
+ }
733
+ #onTriggerClick = (event) => {
734
+ event.preventDefault();
735
+ const trigger = event.currentTarget;
736
+ if (!(trigger instanceof HTMLElement)) {
737
+ return;
738
+ }
739
+ this.#toggle(trigger, trigger.ariaExpanded === "false");
740
+ };
741
+ #onContentBeforeMatch = (event) => {
742
+ const content = event.currentTarget;
743
+ if (!(content instanceof HTMLElement)) {
744
+ return;
745
+ }
746
+ const binding = this.#bindings.get(content);
747
+ if (!binding) {
748
+ return;
749
+ }
750
+ binding.trigger.ariaExpanded === "false" && this.#toggle(binding.trigger, true, true);
751
+ };
752
+ #toggle(trigger, isOpen, isMatch = false) {
753
+ if (trigger.ariaExpanded === String(isOpen)) {
754
+ return;
755
+ }
756
+ const name = trigger.getAttribute("data-accordion-name");
757
+ if (name && isOpen) {
758
+ const opened = this.#triggerElements.find(
759
+ (t) => t !== trigger && t.getAttribute("data-accordion-name") === name && t.ariaExpanded === "true"
760
+ );
761
+ opened && this.#toggle(opened, false, isMatch);
762
+ }
763
+ trigger.setAttribute(
764
+ "aria-label",
765
+ trigger.getAttribute(
766
+ `data-accordion-${isOpen ? "expanded" : "collapsed"}-label`
767
+ ) ?? trigger.ariaLabel ?? ""
768
+ );
769
+ const binding = this.#bindings.get(trigger);
770
+ if (!binding) {
771
+ return;
772
+ }
773
+ const { content } = binding;
774
+ const startSize = content.hidden ? 0 : content.offsetHeight;
775
+ if (content.hidden) {
776
+ content.hidden = false;
777
+ }
778
+ const endSize = isOpen ? content.scrollHeight : 0;
779
+ binding.animation?.cancel();
780
+ content.style.setProperty("overflow", "clip");
781
+ const { duration, easing } = this.#settings.animation;
782
+ const animation = content.animate(
783
+ { blockSize: [`${startSize}px`, `${endSize}px`] },
784
+ { duration: isMatch ? 0 : duration, easing }
785
+ );
786
+ binding.animation = animation;
787
+ trigger.setAttribute("aria-expanded", String(isOpen));
788
+ function cleanup() {
789
+ if (binding?.animation === animation) {
790
+ binding.animation = null;
791
+ }
792
+ }
793
+ this.#animationController = new AbortController();
794
+ const { signal } = this.#animationController;
795
+ animation.addEventListener("cancel", cleanup, { once: true, signal });
796
+ animation.addEventListener(
797
+ "finish",
798
+ () => {
799
+ if (binding?.animation === animation) {
800
+ this.#onAnimationFinish(content);
801
+ cleanup();
802
+ }
803
+ },
804
+ { once: true, signal }
805
+ );
806
+ }
807
+ #mergeOptions(target, source) {
808
+ return {
809
+ animation: { ...target.animation, ...source.animation ?? {} },
810
+ selector: { ...target.selector, ...source.selector ?? {} }
811
+ };
812
+ }
813
+ #onAnimationFinish(content) {
814
+ const trigger = this.#bindings.get(content)?.trigger;
815
+ if (!trigger) {
816
+ return;
817
+ }
818
+ if (trigger.ariaExpanded === "false") {
819
+ content.setAttribute("hidden", "until-found");
820
+ }
821
+ ["block-size", "overflow"].forEach((name) => {
822
+ content.style.removeProperty(name);
823
+ });
824
+ }
825
+ async #waitAnimationsFinish() {
826
+ const promises = [];
827
+ this.#contentElements.forEach((content) => {
828
+ const animation = this.#bindings.get(content)?.animation;
829
+ animation && promises.push(waitAnimationFinish(animation));
830
+ });
831
+ await Promise.allSettled(promises);
832
+ }
833
+ };
834
+ function createBinding(trigger, content) {
835
+ return { trigger, content, animation: null };
836
+ }
837
+ function isFocusable2(element) {
838
+ return !element.hasAttribute("disabled") && element.tabIndex >= 0;
839
+ }
840
+ function waitAnimationFinish(animation) {
841
+ if (["idle", "finished"].includes(animation.playState)) {
842
+ return Promise.resolve();
843
+ } else {
844
+ return new Promise(
845
+ (resolve) => animation.addEventListener("finish", () => resolve(), { once: true })
846
+ );
847
+ }
848
+ }
849
+ /**
850
+ * Accordion
851
+ * WAI-ARIA compliant accordion pattern implementation in TypeScript.
852
+ *
853
+ * @version 1.4.16
854
+ * @author Yusuke Kamiyamane
855
+ * @license MIT
856
+ * @copyright Copyright (c) Yusuke Kamiyamane
857
+ * @see {@link https://github.com/y14e/accordion}
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
+ */
909
+
910
+ module.exports = Accordion;