@y14e/accordion 1.4.15 → 1.4.17

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.
@@ -1,12 +1,586 @@
1
1
  'use strict';
2
2
 
3
- var attributesUtils = require('@y14e/attributes-utils');
4
- var Button = require('@y14e/button');
5
- var rovingTabindex = require('@y14e/roving-tabindex');
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
- function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
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
- var Button__default = /*#__PURE__*/_interopDefault(Button);
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
+ try {
347
+ const roving = new RovingTabIndex(container, options);
348
+ return () => roving.destroy();
349
+ } catch (error) {
350
+ error instanceof Error && console.warn(error.message || error);
351
+ return () => {
352
+ };
353
+ }
354
+ }
355
+ var RovingTabIndex = class _RovingTabIndex {
356
+ static #initialized = /* @__PURE__ */ new Set();
357
+ #container;
358
+ #settings;
359
+ #focusables = /* @__PURE__ */ new Set();
360
+ #focusablesByFirstChar = /* @__PURE__ */ new Map();
361
+ #selectorFilter;
362
+ #controller = null;
363
+ #isDestroyed = false;
364
+ constructor(container, options = {}) {
365
+ this.#container = container;
366
+ let {
367
+ direction,
368
+ navigationOnly = false,
369
+ noMemory = false,
370
+ noStart = false,
371
+ selector,
372
+ typeahead = false,
373
+ wrap = false
374
+ } = options;
375
+ if (typeof direction !== "undefined" && !["horizontal", "vertical"].includes(direction)) {
376
+ console.warn("Invalid direction option. Fallback: both (undefined).");
377
+ direction = void 0;
378
+ }
379
+ if (typeof navigationOnly !== "boolean") {
380
+ console.warn("Invalid navigationOnly option. Fallback: false.");
381
+ navigationOnly = false;
382
+ }
383
+ if (typeof noMemory !== "boolean") {
384
+ console.warn("Invalid noMemory option. Fallback: false.");
385
+ noMemory = false;
386
+ }
387
+ if (typeof noStart !== "boolean") {
388
+ console.warn("Invalid noStart option. Fallback: false.");
389
+ noStart = false;
390
+ }
391
+ if (typeof selector !== "undefined" && (typeof selector !== "string" || !selector.trim())) {
392
+ console.warn(
393
+ "Invalid selector. Fallback: all focusable elements (undefined)."
394
+ );
395
+ selector = void 0;
396
+ }
397
+ if (typeof typeahead !== "boolean") {
398
+ console.warn("Invalid typeahead option. Fallback: false.");
399
+ typeahead = false;
400
+ }
401
+ if (typeof wrap !== "boolean") {
402
+ console.warn("Invalid wrap option. Fallback: false.");
403
+ wrap = false;
404
+ }
405
+ this.#settings = {
406
+ navigationOnly,
407
+ noMemory,
408
+ noStart,
409
+ typeahead,
410
+ wrap
411
+ };
412
+ direction && Object.assign(this.#settings, { direction });
413
+ selector && Object.assign(this.#settings, { selector });
414
+ this.#selectorFilter = this.#createSelectorFilter();
415
+ this.#initialize();
416
+ }
417
+ destroy() {
418
+ if (this.#isDestroyed) {
419
+ return;
420
+ }
421
+ this.#isDestroyed = true;
422
+ this.#controller?.abort();
423
+ this.#controller = null;
424
+ restoreAttributes([...this.#focusables]);
425
+ this.#focusables.clear();
426
+ this.#focusablesByFirstChar.clear();
427
+ }
428
+ #initialize() {
429
+ this.#update(getActiveElement());
430
+ if (!(this.#container instanceof HTMLElement)) {
431
+ return;
432
+ }
433
+ this.#controller = new AbortController();
434
+ const { signal } = this.#controller;
435
+ document.addEventListener("focusin", this.#onFocusIn, { signal });
436
+ this.#settings.noMemory && document.addEventListener("focusout", this.#onFocusOut, { signal });
437
+ this.#container.addEventListener("keydown", this.#onKeyDown, { signal });
438
+ }
439
+ #onFocusIn = (event) => {
440
+ const { target } = event;
441
+ if (!(target instanceof Element)) {
442
+ return;
443
+ }
444
+ const isFocusable2 = this.#focusables.has(target);
445
+ this.#settings.noMemory && !isFocusable2 ? this.#update() : isFocusable2 && this.#update(target);
446
+ };
447
+ #onFocusOut = (event) => {
448
+ if (!event.relatedTarget) {
449
+ this.#update();
450
+ }
451
+ };
452
+ #onKeyDown = (event) => {
453
+ const { key, altKey, ctrlKey, metaKey, shiftKey } = event;
454
+ if (altKey || ctrlKey || metaKey || shiftKey) {
455
+ return;
456
+ }
457
+ const { direction, typeahead, wrap } = this.#settings;
458
+ const isBoth = !direction;
459
+ const isHorizontal = direction === "horizontal";
460
+ if (![
461
+ "End",
462
+ "Home",
463
+ ...isBoth ? ["ArrowLeft", "ArrowUp"] : [`Arrow${isHorizontal ? "Left" : "Up"}`],
464
+ ...isBoth ? ["ArrowRight", "ArrowDown"] : [`Arrow${isHorizontal ? "Right" : "Down"}`]
465
+ ].includes(key)) {
466
+ if (!typeahead || !/^\S$/i.test(key) || !this.#focusablesByFirstChar.has(key.toUpperCase())) {
467
+ return;
468
+ }
469
+ }
470
+ const active = getActiveElement();
471
+ if (!(active instanceof HTMLElement)) {
472
+ return;
473
+ }
474
+ const current = this.#getFocusables();
475
+ if (!current.includes(active)) {
476
+ return;
477
+ }
478
+ event.preventDefault();
479
+ const currentIndex = current.indexOf(active);
480
+ let newIndex;
481
+ let target = current;
482
+ switch (key) {
483
+ case "End":
484
+ newIndex = -1;
485
+ break;
486
+ case "Home":
487
+ newIndex = 0;
488
+ break;
489
+ case "ArrowLeft":
490
+ case "ArrowUp": {
491
+ const rawIndex = currentIndex - 1;
492
+ newIndex = wrap ? rawIndex : Math.max(rawIndex, 0);
493
+ break;
494
+ }
495
+ case "ArrowRight":
496
+ case "ArrowDown": {
497
+ const rawIndex = currentIndex + 1;
498
+ newIndex = wrap ? rawIndex % current.length : Math.min(rawIndex, current.length - 1);
499
+ break;
500
+ }
501
+ default: {
502
+ target = this.#focusablesByFirstChar.get(key.toUpperCase()) ?? [];
503
+ const foundIndex = target.findIndex(
504
+ (focusable2) => current.indexOf(focusable2) > currentIndex
505
+ );
506
+ newIndex = foundIndex >= 0 ? foundIndex : 0;
507
+ }
508
+ }
509
+ const focusable = target.at(newIndex);
510
+ focusable && focusElement(focusable);
511
+ };
512
+ #update(active) {
513
+ const current = new Set(this.#getFocusables());
514
+ for (const focusable of this.#focusables) {
515
+ if (!current.has(focusable)) {
516
+ focusable.isConnected && restoreAttributes([focusable]);
517
+ this.#focusables.delete(focusable);
518
+ this.#focusablesByFirstChar.forEach((focusables) => {
519
+ const index = focusables.indexOf(focusable);
520
+ index >= 0 && focusables.splice(index, 1);
521
+ });
522
+ }
523
+ }
524
+ const { navigationOnly, noStart, typeahead } = this.#settings;
525
+ for (const focusable of current) {
526
+ if (this.#focusables.has(focusable)) {
527
+ continue;
528
+ }
529
+ if (_RovingTabIndex.#initialized.has(focusable)) {
530
+ throw new TypeError("Already initialized");
531
+ }
532
+ this.#focusables.add(focusable);
533
+ _RovingTabIndex.#initialized.add(focusable);
534
+ if (!navigationOnly) {
535
+ saveAttributes([focusable], ["tabindex"]);
536
+ focusable.setAttribute("tabindex", "-1");
537
+ }
538
+ if (!typeahead) {
539
+ continue;
540
+ }
541
+ const char = focusable.textContent?.trim()?.at(0)?.toUpperCase();
542
+ const value = focusable.ariaKeyShortcuts?.trim();
543
+ const keys = new Set(
544
+ value ? value.split(/\s+/).filter((key) => /^\S$/i.test(key)).map((key) => key.toUpperCase()) : []
545
+ );
546
+ if (char) {
547
+ keys.add(char);
548
+ saveAttributes([focusable], ["aria-keyshortcuts"]);
549
+ addTokenToAttribute(focusable, "aria-keyshortcuts", char, {
550
+ caseInsensitive: true
551
+ });
552
+ }
553
+ keys.forEach((key) => {
554
+ const focusables = this.#focusablesByFirstChar.get(key) ?? [];
555
+ focusables.push(focusable);
556
+ this.#focusablesByFirstChar.set(key, focusables);
557
+ });
558
+ }
559
+ if (!navigationOnly) {
560
+ if (active && this.#focusables.has(active)) {
561
+ this.#focusables.forEach((focusable) => {
562
+ focusable.setAttribute("tabindex", focusable === active ? "0" : "-1");
563
+ });
564
+ } else {
565
+ [...this.#focusables].forEach((focusable, i) => {
566
+ focusable.setAttribute("tabindex", i || noStart ? "-1" : "0");
567
+ });
568
+ }
569
+ }
570
+ }
571
+ #createSelectorFilter() {
572
+ const { selector } = this.#settings;
573
+ return (element) => !selector || [...this.#container.querySelectorAll(selector)].includes(element);
574
+ }
575
+ #getFocusables() {
576
+ return getFocusables(this.#container, {
577
+ composed: true,
578
+ filter: this.#selectorFilter,
579
+ skipNegativeTabIndexCheck: !this.#settings.navigationOnly,
580
+ skipVisibilityCheck: true
581
+ });
582
+ }
583
+ };
10
584
 
11
585
  // src/index.ts
12
586
  var Accordion = class _Accordion {
@@ -65,7 +639,7 @@ var Accordion = class _Accordion {
65
639
  if (!content2) {
66
640
  return;
67
641
  }
68
- const binding = createBinding(trigger2, content2);
642
+ const binding = this.#createBinding(trigger2, content2);
69
643
  this.#bindings.set(trigger2, binding);
70
644
  this.#bindings.set(content2, binding);
71
645
  });
@@ -97,11 +671,11 @@ var Accordion = class _Accordion {
97
671
  !force && await this.#waitAnimationsFinish();
98
672
  this.#contentElements.forEach((content) => {
99
673
  force && this.#bindings.get(content)?.animation?.finish();
100
- this.#onAnimationFinish(content);
674
+ this.#onContentAnimationFinish(content);
101
675
  });
102
676
  this.#animationController?.abort();
103
677
  this.#animationController = null;
104
- attributesUtils.restoreAttributes([...this.#triggerElements, ...this.#contentElements]);
678
+ restoreAttributes([...this.#triggerElements, ...this.#contentElements]);
105
679
  this.#triggerElements.length = 0;
106
680
  this.#contentElements.length = 0;
107
681
  this.#rootElement.removeAttribute("data-accordion-initialized");
@@ -117,14 +691,14 @@ var Accordion = class _Accordion {
117
691
  this.#toggle(trigger, true);
118
692
  }
119
693
  #initialize() {
120
- attributesUtils.saveAttributes(this.#triggerElements, [
694
+ saveAttributes(this.#triggerElements, [
121
695
  "aria-controls",
122
696
  "aria-disabled",
123
697
  "id",
124
698
  "style",
125
699
  "tabindex"
126
700
  ]);
127
- attributesUtils.saveAttributes(this.#contentElements, ["aria-labelledby", "id", "role"]);
701
+ saveAttributes(this.#contentElements, ["aria-labelledby", "id", "role"]);
128
702
  this.#eventController = new AbortController();
129
703
  const { signal } = this.#eventController;
130
704
  this.#triggerElements.forEach((trigger2, i) => {
@@ -134,27 +708,27 @@ var Accordion = class _Accordion {
134
708
  return;
135
709
  }
136
710
  content2.id ||= `accordion-content-${id}`;
137
- attributesUtils.addTokenToAttribute(trigger2, "aria-controls", content2.id);
711
+ addTokenToAttribute(trigger2, "aria-controls", content2.id);
138
712
  trigger2.setAttribute(
139
713
  "aria-expanded",
140
714
  String(trigger2.ariaExpanded === "true")
141
715
  );
142
716
  trigger2.id ||= `accordion-trigger-${id}`;
143
- if (!isFocusable(trigger2)) {
717
+ if (!this.#isFocusable(trigger2)) {
144
718
  trigger2.setAttribute("aria-disabled", "true");
145
719
  trigger2.setAttribute("tabindex", "-1");
146
720
  trigger2.style.setProperty("pointer-events", "none");
147
721
  }
148
722
  trigger2.addEventListener("click", this.#onTriggerClick, { signal });
149
- attributesUtils.addTokenToAttribute(content2, "aria-labelledby", trigger2.id);
723
+ addTokenToAttribute(content2, "aria-labelledby", trigger2.id);
150
724
  content2.setAttribute("role", "region");
151
725
  content2.addEventListener("beforematch", this.#onContentBeforeMatch, {
152
726
  signal
153
727
  });
154
- this.#buttons.push(new Button__default.default(trigger2));
728
+ this.#buttons.push(new Button(trigger2));
155
729
  });
156
730
  const { trigger, content } = this.#settings.selector;
157
- this.#cleanupRovingTabIndex = rovingTabindex.createRovingTabIndex(this.#rootElement, {
731
+ this.#cleanupRovingTabIndex = createRovingTabIndex(this.#rootElement, {
158
732
  direction: "vertical",
159
733
  navigationOnly: true,
160
734
  selector: `${trigger}:not(:scope ${content} *)`,
@@ -170,6 +744,16 @@ var Accordion = class _Accordion {
170
744
  }
171
745
  this.#toggle(trigger, trigger.ariaExpanded === "false");
172
746
  };
747
+ #onContentAnimationFinish(content) {
748
+ const trigger = this.#bindings.get(content)?.trigger;
749
+ if (!trigger) {
750
+ return;
751
+ }
752
+ trigger.ariaExpanded === "false" && content.setAttribute("hidden", "until-found");
753
+ ["block-size", "overflow"].forEach((name) => {
754
+ content.style.removeProperty(name);
755
+ });
756
+ }
173
757
  #onContentBeforeMatch = (event) => {
174
758
  const content = event.currentTarget;
175
759
  if (!(content instanceof HTMLElement)) {
@@ -187,10 +771,10 @@ var Accordion = class _Accordion {
187
771
  }
188
772
  const name = trigger.getAttribute("data-accordion-name");
189
773
  if (name && isOpen) {
190
- const opened = this.#triggerElements.find(
774
+ const open = this.#triggerElements.find(
191
775
  (t) => t !== trigger && t.getAttribute("data-accordion-name") === name && t.ariaExpanded === "true"
192
776
  );
193
- opened && this.#toggle(opened, false, isMatch);
777
+ open && this.#toggle(open, false, isMatch);
194
778
  }
195
779
  trigger.setAttribute(
196
780
  "aria-label",
@@ -229,31 +813,25 @@ var Accordion = class _Accordion {
229
813
  "finish",
230
814
  () => {
231
815
  if (binding?.animation === animation) {
232
- this.#onAnimationFinish(content);
816
+ this.#onContentAnimationFinish(content);
233
817
  cleanup();
234
818
  }
235
819
  },
236
820
  { once: true, signal }
237
821
  );
238
822
  }
823
+ #createBinding(trigger, content) {
824
+ return { trigger, content, animation: null };
825
+ }
826
+ #isFocusable(element) {
827
+ return !element.hasAttribute("disabled") && element.tabIndex >= 0;
828
+ }
239
829
  #mergeOptions(target, source) {
240
830
  return {
241
831
  animation: { ...target.animation, ...source.animation ?? {} },
242
832
  selector: { ...target.selector, ...source.selector ?? {} }
243
833
  };
244
834
  }
245
- #onAnimationFinish(content) {
246
- const trigger = this.#bindings.get(content)?.trigger;
247
- if (!trigger) {
248
- return;
249
- }
250
- if (trigger.ariaExpanded === "false") {
251
- content.setAttribute("hidden", "until-found");
252
- }
253
- ["block-size", "overflow"].forEach((name) => {
254
- content.style.removeProperty(name);
255
- });
256
- }
257
835
  async #waitAnimationsFinish() {
258
836
  const promises = [];
259
837
  this.#contentElements.forEach((content) => {
@@ -263,30 +841,70 @@ var Accordion = class _Accordion {
263
841
  await Promise.allSettled(promises);
264
842
  }
265
843
  };
266
- function createBinding(trigger, content) {
267
- return { trigger, content, animation: null };
268
- }
269
- function isFocusable(element) {
270
- return !element.hasAttribute("disabled") && element.tabIndex >= 0;
271
- }
272
844
  function waitAnimationFinish(animation) {
273
- if (["idle", "finished"].includes(animation.playState)) {
274
- return Promise.resolve();
275
- } else {
276
- return new Promise(
277
- (resolve) => animation.addEventListener("finish", () => resolve(), { once: true })
278
- );
279
- }
845
+ return ["idle", "finished"].includes(animation.playState) ? Promise.resolve() : new Promise(
846
+ (resolve) => animation.addEventListener("finish", () => resolve(), { once: true })
847
+ );
280
848
  }
281
849
  /**
282
850
  * Accordion
283
851
  * WAI-ARIA compliant accordion pattern implementation in TypeScript.
284
852
  *
285
- * @version 1.4.15
853
+ * @version 1.4.17
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.5
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.1.2
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;