@aurodesignsystem-dev/auro-formkit 0.0.0-pr1400.1 → 0.0.0-pr1400.3

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.
Files changed (36) hide show
  1. package/components/checkbox/demo/api.min.js +1 -1
  2. package/components/checkbox/demo/index.min.js +1 -1
  3. package/components/checkbox/dist/index.js +1 -1
  4. package/components/checkbox/dist/registered.js +1 -1
  5. package/components/combobox/demo/api.min.js +9 -21
  6. package/components/combobox/demo/index.min.js +9 -21
  7. package/components/combobox/dist/index.js +9 -21
  8. package/components/combobox/dist/registered.js +9 -21
  9. package/components/counter/demo/api.min.js +2 -2
  10. package/components/counter/demo/index.min.js +2 -2
  11. package/components/counter/dist/index.js +2 -2
  12. package/components/counter/dist/registered.js +2 -2
  13. package/components/datepicker/demo/api.min.js +6 -21
  14. package/components/datepicker/demo/index.min.js +6 -21
  15. package/components/datepicker/dist/index.js +6 -21
  16. package/components/datepicker/dist/registered.js +6 -21
  17. package/components/dropdown/demo/api.min.js +1 -1
  18. package/components/dropdown/demo/index.min.js +1 -1
  19. package/components/dropdown/dist/index.js +1 -1
  20. package/components/dropdown/dist/registered.js +1 -1
  21. package/components/form/demo/api.min.js +25 -67
  22. package/components/form/demo/index.min.js +25 -67
  23. package/components/input/demo/api.min.js +1 -1
  24. package/components/input/demo/index.min.js +1 -1
  25. package/components/input/dist/index.js +1 -1
  26. package/components/input/dist/registered.js +1 -1
  27. package/components/radio/demo/api.min.js +1 -1
  28. package/components/radio/demo/index.min.js +1 -1
  29. package/components/radio/dist/index.js +1 -1
  30. package/components/radio/dist/registered.js +1 -1
  31. package/components/select/demo/api.min.js +5 -20
  32. package/components/select/demo/index.min.js +5 -20
  33. package/components/select/dist/index.js +5 -20
  34. package/components/select/dist/registered.js +5 -20
  35. package/custom-elements.json +1402 -1402
  36. package/package.json +1 -1
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
- var formkitVersion = '202603262343';
1690
+ var formkitVersion = '202603270007';
1691
1691
 
1692
1692
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1693
1693
  // See LICENSE in the project root for license information.
@@ -1679,7 +1679,7 @@ class AuroHelpText extends i$2 {
1679
1679
  }
1680
1680
  }
1681
1681
 
1682
- var formkitVersion = '202603262343';
1682
+ var formkitVersion = '202603270007';
1683
1683
 
1684
1684
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1685
1685
  // See LICENSE in the project root for license information.
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202603262343';
1635
+ var formkitVersion = '202603270007';
1636
1636
 
1637
1637
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1638
1638
  // See LICENSE in the project root for license information.
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202603262343';
1635
+ var formkitVersion = '202603270007';
1636
1636
 
1637
1637
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1638
1638
  // See LICENSE in the project root for license information.
@@ -1214,28 +1214,13 @@ function guardTouchPassthrough(element) {
1214
1214
  *
1215
1215
  * @param {HTMLElement} dropdown - The `auro-dropdown` element.
1216
1216
  * @param {HTMLElement} focusTarget - The element to focus (e.g. trigger or input).
1217
- * @param {Function} [onAfterRestore] - Optional callback invoked instead of focusing
1218
- * `focusTarget`. Use when the caller needs a custom post-close focus target while
1219
- * still delegating all trigger-restoration cleanup to this function.
1220
- * When provided, `inert` removal is deferred to inside the rAF so that
1221
- * `dialog.close()`'s synchronous focus restoration (which runs in a Lit
1222
- * microtask before the rAF) cannot move focus back to the trigger and
1223
- * trigger a spurious VoiceOver announcement before the callback's custom
1224
- * focus target takes over.
1225
1217
  */
1226
- function restoreTriggerAfterClose(dropdown, focusTarget, onAfterRestore) {
1227
- // Default path: clear inert immediately so the trigger is focusable when
1228
- // the rAF fires. With no callback there is no custom focus target, so
1229
- // dialog.close() restoring focus to the trigger is fine.
1230
- {
1231
- dropdown.trigger.inert = false;
1232
- }
1218
+ function restoreTriggerAfterClose(dropdown, focusTarget) {
1219
+ dropdown.trigger.inert = false;
1233
1220
 
1234
1221
  requestAnimationFrame(() => {
1235
1222
  if (!dropdown.isPopoverVisible) {
1236
- {
1237
- focusTarget.focus();
1238
- }
1223
+ focusTarget.focus();
1239
1224
  }
1240
1225
  });
1241
1226
  }
@@ -1414,10 +1399,12 @@ const comboboxKeyboardStrategy = {
1414
1399
  // No active option, input has a value, clear button not focused →
1415
1400
  // move focus to the dialog's clear button.
1416
1401
  if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) {
1402
+
1417
1403
  // Force clear button container visible to work around Safari not
1418
1404
  // propagating :focus-within through shadow DOM boundaries, which
1419
1405
  // causes .wrapper:not(:focus-within) to hide .notification.clear.
1420
1406
  const clearContainer = clearBtn.closest('.clear');
1407
+
1421
1408
  if (clearContainer) {
1422
1409
  clearContainer.style.display = 'flex';
1423
1410
  clearBtn.addEventListener('focusout', () => {
@@ -5101,7 +5088,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
5101
5088
  }
5102
5089
  };
5103
5090
 
5104
- var formkitVersion$2 = '202603262343';
5091
+ var formkitVersion$2 = '202603270007';
5105
5092
 
5106
5093
  let AuroElement$2 = class AuroElement extends i$4 {
5107
5094
  static get properties() {
@@ -12865,7 +12852,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12865
12852
  }
12866
12853
  };
12867
12854
 
12868
- var formkitVersion$1 = '202603262343';
12855
+ var formkitVersion$1 = '202603270007';
12869
12856
 
12870
12857
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12871
12858
  // See LICENSE in the project root for license information.
@@ -13904,7 +13891,7 @@ class AuroBibtemplate extends i$4 {
13904
13891
  }
13905
13892
  }
13906
13893
 
13907
- var formkitVersion = '202603262343';
13894
+ var formkitVersion = '202603270007';
13908
13895
 
13909
13896
  var styleCss$3 = i$7`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
13910
13897
 
@@ -15116,6 +15103,7 @@ class AuroCombobox extends AuroElement {
15116
15103
  // the CSS rule `.wrapper:not(:focus-within) .notification.clear`
15117
15104
  // hides the container with display:none, preventing focus.
15118
15105
  const clearContainer = clearBtn.closest('.clear');
15106
+
15119
15107
  if (clearContainer) {
15120
15108
  clearContainer.style.display = 'flex';
15121
15109
  clearBtn.addEventListener('focusout', () => {
@@ -1137,28 +1137,13 @@ function guardTouchPassthrough(element) {
1137
1137
  *
1138
1138
  * @param {HTMLElement} dropdown - The `auro-dropdown` element.
1139
1139
  * @param {HTMLElement} focusTarget - The element to focus (e.g. trigger or input).
1140
- * @param {Function} [onAfterRestore] - Optional callback invoked instead of focusing
1141
- * `focusTarget`. Use when the caller needs a custom post-close focus target while
1142
- * still delegating all trigger-restoration cleanup to this function.
1143
- * When provided, `inert` removal is deferred to inside the rAF so that
1144
- * `dialog.close()`'s synchronous focus restoration (which runs in a Lit
1145
- * microtask before the rAF) cannot move focus back to the trigger and
1146
- * trigger a spurious VoiceOver announcement before the callback's custom
1147
- * focus target takes over.
1148
1140
  */
1149
- function restoreTriggerAfterClose(dropdown, focusTarget, onAfterRestore) {
1150
- // Default path: clear inert immediately so the trigger is focusable when
1151
- // the rAF fires. With no callback there is no custom focus target, so
1152
- // dialog.close() restoring focus to the trigger is fine.
1153
- {
1154
- dropdown.trigger.inert = false;
1155
- }
1141
+ function restoreTriggerAfterClose(dropdown, focusTarget) {
1142
+ dropdown.trigger.inert = false;
1156
1143
 
1157
1144
  requestAnimationFrame(() => {
1158
1145
  if (!dropdown.isPopoverVisible) {
1159
- {
1160
- focusTarget.focus();
1161
- }
1146
+ focusTarget.focus();
1162
1147
  }
1163
1148
  });
1164
1149
  }
@@ -1337,10 +1322,12 @@ const comboboxKeyboardStrategy = {
1337
1322
  // No active option, input has a value, clear button not focused →
1338
1323
  // move focus to the dialog's clear button.
1339
1324
  if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) {
1325
+
1340
1326
  // Force clear button container visible to work around Safari not
1341
1327
  // propagating :focus-within through shadow DOM boundaries, which
1342
1328
  // causes .wrapper:not(:focus-within) to hide .notification.clear.
1343
1329
  const clearContainer = clearBtn.closest('.clear');
1330
+
1344
1331
  if (clearContainer) {
1345
1332
  clearContainer.style.display = 'flex';
1346
1333
  clearBtn.addEventListener('focusout', () => {
@@ -5024,7 +5011,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
5024
5011
  }
5025
5012
  };
5026
5013
 
5027
- var formkitVersion$2 = '202603262343';
5014
+ var formkitVersion$2 = '202603270007';
5028
5015
 
5029
5016
  let AuroElement$2 = class AuroElement extends i$4 {
5030
5017
  static get properties() {
@@ -12788,7 +12775,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12788
12775
  }
12789
12776
  };
12790
12777
 
12791
- var formkitVersion$1 = '202603262343';
12778
+ var formkitVersion$1 = '202603270007';
12792
12779
 
12793
12780
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12794
12781
  // See LICENSE in the project root for license information.
@@ -13827,7 +13814,7 @@ class AuroBibtemplate extends i$4 {
13827
13814
  }
13828
13815
  }
13829
13816
 
13830
- var formkitVersion = '202603262343';
13817
+ var formkitVersion = '202603270007';
13831
13818
 
13832
13819
  var styleCss$3 = i$7`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
13833
13820
 
@@ -15039,6 +15026,7 @@ class AuroCombobox extends AuroElement {
15039
15026
  // the CSS rule `.wrapper:not(:focus-within) .notification.clear`
15040
15027
  // hides the container with display:none, preventing focus.
15041
15028
  const clearContainer = clearBtn.closest('.clear');
15029
+
15042
15030
  if (clearContainer) {
15043
15031
  clearContainer.style.display = 'flex';
15044
15032
  clearBtn.addEventListener('focusout', () => {
@@ -1100,28 +1100,13 @@ function guardTouchPassthrough(element) {
1100
1100
  *
1101
1101
  * @param {HTMLElement} dropdown - The `auro-dropdown` element.
1102
1102
  * @param {HTMLElement} focusTarget - The element to focus (e.g. trigger or input).
1103
- * @param {Function} [onAfterRestore] - Optional callback invoked instead of focusing
1104
- * `focusTarget`. Use when the caller needs a custom post-close focus target while
1105
- * still delegating all trigger-restoration cleanup to this function.
1106
- * When provided, `inert` removal is deferred to inside the rAF so that
1107
- * `dialog.close()`'s synchronous focus restoration (which runs in a Lit
1108
- * microtask before the rAF) cannot move focus back to the trigger and
1109
- * trigger a spurious VoiceOver announcement before the callback's custom
1110
- * focus target takes over.
1111
1103
  */
1112
- function restoreTriggerAfterClose(dropdown, focusTarget, onAfterRestore) {
1113
- // Default path: clear inert immediately so the trigger is focusable when
1114
- // the rAF fires. With no callback there is no custom focus target, so
1115
- // dialog.close() restoring focus to the trigger is fine.
1116
- {
1117
- dropdown.trigger.inert = false;
1118
- }
1104
+ function restoreTriggerAfterClose(dropdown, focusTarget) {
1105
+ dropdown.trigger.inert = false;
1119
1106
 
1120
1107
  requestAnimationFrame(() => {
1121
1108
  if (!dropdown.isPopoverVisible) {
1122
- {
1123
- focusTarget.focus();
1124
- }
1109
+ focusTarget.focus();
1125
1110
  }
1126
1111
  });
1127
1112
  }
@@ -1294,10 +1279,12 @@ const comboboxKeyboardStrategy = {
1294
1279
  // No active option, input has a value, clear button not focused →
1295
1280
  // move focus to the dialog's clear button.
1296
1281
  if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) {
1282
+
1297
1283
  // Force clear button container visible to work around Safari not
1298
1284
  // propagating :focus-within through shadow DOM boundaries, which
1299
1285
  // causes .wrapper:not(:focus-within) to hide .notification.clear.
1300
1286
  const clearContainer = clearBtn.closest('.clear');
1287
+
1301
1288
  if (clearContainer) {
1302
1289
  clearContainer.style.display = 'flex';
1303
1290
  clearBtn.addEventListener('focusout', () => {
@@ -4957,7 +4944,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4957
4944
  }
4958
4945
  };
4959
4946
 
4960
- var formkitVersion$2 = '202603262343';
4947
+ var formkitVersion$2 = '202603270007';
4961
4948
 
4962
4949
  let AuroElement$2 = class AuroElement extends LitElement {
4963
4950
  static get properties() {
@@ -12714,7 +12701,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12714
12701
  }
12715
12702
  };
12716
12703
 
12717
- var formkitVersion$1 = '202603262343';
12704
+ var formkitVersion$1 = '202603270007';
12718
12705
 
12719
12706
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12720
12707
  // See LICENSE in the project root for license information.
@@ -13753,7 +13740,7 @@ class AuroBibtemplate extends LitElement {
13753
13740
  }
13754
13741
  }
13755
13742
 
13756
- var formkitVersion = '202603262343';
13743
+ var formkitVersion = '202603270007';
13757
13744
 
13758
13745
  var styleCss$1 = css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
13759
13746
 
@@ -14965,6 +14952,7 @@ class AuroCombobox extends AuroElement {
14965
14952
  // the CSS rule `.wrapper:not(:focus-within) .notification.clear`
14966
14953
  // hides the container with display:none, preventing focus.
14967
14954
  const clearContainer = clearBtn.closest('.clear');
14955
+
14968
14956
  if (clearContainer) {
14969
14957
  clearContainer.style.display = 'flex';
14970
14958
  clearBtn.addEventListener('focusout', () => {
@@ -1100,28 +1100,13 @@ function guardTouchPassthrough(element) {
1100
1100
  *
1101
1101
  * @param {HTMLElement} dropdown - The `auro-dropdown` element.
1102
1102
  * @param {HTMLElement} focusTarget - The element to focus (e.g. trigger or input).
1103
- * @param {Function} [onAfterRestore] - Optional callback invoked instead of focusing
1104
- * `focusTarget`. Use when the caller needs a custom post-close focus target while
1105
- * still delegating all trigger-restoration cleanup to this function.
1106
- * When provided, `inert` removal is deferred to inside the rAF so that
1107
- * `dialog.close()`'s synchronous focus restoration (which runs in a Lit
1108
- * microtask before the rAF) cannot move focus back to the trigger and
1109
- * trigger a spurious VoiceOver announcement before the callback's custom
1110
- * focus target takes over.
1111
1103
  */
1112
- function restoreTriggerAfterClose(dropdown, focusTarget, onAfterRestore) {
1113
- // Default path: clear inert immediately so the trigger is focusable when
1114
- // the rAF fires. With no callback there is no custom focus target, so
1115
- // dialog.close() restoring focus to the trigger is fine.
1116
- {
1117
- dropdown.trigger.inert = false;
1118
- }
1104
+ function restoreTriggerAfterClose(dropdown, focusTarget) {
1105
+ dropdown.trigger.inert = false;
1119
1106
 
1120
1107
  requestAnimationFrame(() => {
1121
1108
  if (!dropdown.isPopoverVisible) {
1122
- {
1123
- focusTarget.focus();
1124
- }
1109
+ focusTarget.focus();
1125
1110
  }
1126
1111
  });
1127
1112
  }
@@ -1294,10 +1279,12 @@ const comboboxKeyboardStrategy = {
1294
1279
  // No active option, input has a value, clear button not focused →
1295
1280
  // move focus to the dialog's clear button.
1296
1281
  if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) {
1282
+
1297
1283
  // Force clear button container visible to work around Safari not
1298
1284
  // propagating :focus-within through shadow DOM boundaries, which
1299
1285
  // causes .wrapper:not(:focus-within) to hide .notification.clear.
1300
1286
  const clearContainer = clearBtn.closest('.clear');
1287
+
1301
1288
  if (clearContainer) {
1302
1289
  clearContainer.style.display = 'flex';
1303
1290
  clearBtn.addEventListener('focusout', () => {
@@ -4957,7 +4944,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4957
4944
  }
4958
4945
  };
4959
4946
 
4960
- var formkitVersion$2 = '202603262343';
4947
+ var formkitVersion$2 = '202603270007';
4961
4948
 
4962
4949
  let AuroElement$2 = class AuroElement extends LitElement {
4963
4950
  static get properties() {
@@ -12714,7 +12701,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12714
12701
  }
12715
12702
  };
12716
12703
 
12717
- var formkitVersion$1 = '202603262343';
12704
+ var formkitVersion$1 = '202603270007';
12718
12705
 
12719
12706
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12720
12707
  // See LICENSE in the project root for license information.
@@ -13753,7 +13740,7 @@ class AuroBibtemplate extends LitElement {
13753
13740
  }
13754
13741
  }
13755
13742
 
13756
- var formkitVersion = '202603262343';
13743
+ var formkitVersion = '202603270007';
13757
13744
 
13758
13745
  var styleCss$1 = css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
13759
13746
 
@@ -14965,6 +14952,7 @@ class AuroCombobox extends AuroElement {
14965
14952
  // the CSS rule `.wrapper:not(:focus-within) .notification.clear`
14966
14953
  // hides the container with display:none, preventing focus.
14967
14954
  const clearContainer = clearBtn.closest('.clear');
14955
+
14968
14956
  if (clearContainer) {
14969
14957
  clearContainer.style.display = 'flex';
14970
14958
  clearBtn.addEventListener('focusout', () => {
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1470
1470
  }
1471
1471
  };
1472
1472
 
1473
- var formkitVersion$1 = '202603262343';
1473
+ var formkitVersion$1 = '202603270007';
1474
1474
 
1475
1475
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1476
1476
  // See LICENSE in the project root for license information.
@@ -5517,7 +5517,7 @@ class AuroHelpText extends i$2 {
5517
5517
  }
5518
5518
  }
5519
5519
 
5520
- var formkitVersion = '202603262343';
5520
+ var formkitVersion = '202603270007';
5521
5521
 
5522
5522
  let AuroElement$1 = class AuroElement extends i$2 {
5523
5523
  static get properties() {
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1470
1470
  }
1471
1471
  };
1472
1472
 
1473
- var formkitVersion$1 = '202603262343';
1473
+ var formkitVersion$1 = '202603270007';
1474
1474
 
1475
1475
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1476
1476
  // See LICENSE in the project root for license information.
@@ -5517,7 +5517,7 @@ class AuroHelpText extends i$2 {
5517
5517
  }
5518
5518
  }
5519
5519
 
5520
- var formkitVersion = '202603262343';
5520
+ var formkitVersion = '202603270007';
5521
5521
 
5522
5522
  let AuroElement$1 = class AuroElement extends i$2 {
5523
5523
  static get properties() {
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1420
1420
  }
1421
1421
  };
1422
1422
 
1423
- var formkitVersion$1 = '202603262343';
1423
+ var formkitVersion$1 = '202603270007';
1424
1424
 
1425
1425
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1426
1426
  // See LICENSE in the project root for license information.
@@ -5449,7 +5449,7 @@ class AuroHelpText extends LitElement {
5449
5449
  }
5450
5450
  }
5451
5451
 
5452
- var formkitVersion = '202603262343';
5452
+ var formkitVersion = '202603270007';
5453
5453
 
5454
5454
  let AuroElement$1 = class AuroElement extends LitElement {
5455
5455
  static get properties() {
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1420
1420
  }
1421
1421
  };
1422
1422
 
1423
- var formkitVersion$1 = '202603262343';
1423
+ var formkitVersion$1 = '202603270007';
1424
1424
 
1425
1425
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1426
1426
  // See LICENSE in the project root for license information.
@@ -5449,7 +5449,7 @@ class AuroHelpText extends LitElement {
5449
5449
  }
5450
5450
  }
5451
5451
 
5452
- var formkitVersion = '202603262343';
5452
+ var formkitVersion = '202603270007';
5453
5453
 
5454
5454
  let AuroElement$1 = class AuroElement extends LitElement {
5455
5455
  static get properties() {
@@ -9549,7 +9549,7 @@ class AuroBibtemplate extends i$1 {
9549
9549
  }
9550
9550
  }
9551
9551
 
9552
- var formkitVersion$2 = '202603262343';
9552
+ var formkitVersion$2 = '202603270007';
9553
9553
 
9554
9554
  let l$1 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$4 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$3=i$3`:host{color:var(--ds-auro-loader-color)}:host>span{background-color:var(--ds-auro-loader-background-color);border-color:var(--ds-auro-loader-border-color)}:host([onlight]),:host([appearance=brand]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]),:host([appearance=inverse]){--ds-auro-loader-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([orbit])>span{--ds-auro-loader-background-color: transparent}:host([orbit])>span:nth-child(1){--ds-auro-loader-border-color: currentcolor;opacity:.25}:host([orbit])>span:nth-child(2){--ds-auro-loader-border-color: currentcolor;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
9555
9555
  `,u$6=i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:focus:not(:focus-visible){outline:3px solid transparent}:host,:host>span{position:relative}:host{width:2rem;height:2rem;display:inline-block;font-size:0}:host>span{position:absolute;display:inline-block;float:none;top:0;left:0;width:2rem;height:2rem;border-radius:100%;border-style:solid;border-width:0;box-sizing:border-box}:host([xs]),:host([xs])>span{width:1.2rem;height:1.2rem}:host([sm]),:host([sm])>span{width:3rem;height:3rem}:host([md]),:host([md])>span{width:5rem;height:5rem}:host([lg]),:host([lg])>span{width:8rem;height:8rem}:host{--margin: .375rem;--margin-xs: .2rem;--margin-sm: .5rem;--margin-md: .75rem;--margin-lg: 1rem}:host([pulse]),:host([pulse])>span{position:relative}:host([pulse]){width:calc(3rem + var(--margin) * 6);height:calc(1rem + var(--margin) * 2)}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(1.95rem + var(--margin-xs) * 6);height:calc(.65rem + var(--margin-xs) * 2)}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:calc(2rem + var(--margin-sm) * 2)}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:calc(3rem + var(--margin-md) * 2)}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:calc(5rem + var(--margin-lg) * 2)}:host([pulse][lg])>span{margin:var(--margin-lg);width:5rem;height:5rem}:host([pulse])>span:nth-child(1){animation-delay:-.4s}:host([pulse])>span:nth-child(2){animation-delay:-.2s}:host([pulse])>span:nth-child(3){animation-delay:0ms}@keyframes pulse{0%,to{opacity:.1;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}:host([orbit]),:host([orbit])>span{opacity:1}:host([orbit])>span{border-width:5px}:host([orbit])>span:nth-child(2){animation:orbit 2s linear infinite}:host([orbit][sm])>span{border-width:8px}:host([orbit][md])>span{border-width:13px}:host([orbit][lg])>span{border-width:21px}@keyframes orbit{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host([ringworm])>svg{animation:rotate 2s linear infinite;height:100%;width:100%;stroke:currentcolor;stroke-width:8}:host([ringworm]) .path{stroke-dashoffset:0;animation:ringworm 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes ringworm{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}:host([laser]){position:static;width:100%;display:block;height:0;overflow:hidden;font-size:unset}:host([laser])>span{position:fixed;width:100%;height:.25rem;border-radius:0;z-index:100}:host([laser])>span:nth-child(1){border-color:currentcolor;opacity:.25}:host([laser])>span:nth-child(2){border-color:currentcolor;animation:laser 2s linear infinite;opacity:1;width:50%}:host([laser][sm])>span:nth-child(2){width:20%}:host([laser][md])>span:nth-child(2){width:30%}:host([laser][lg])>span:nth-child(2){width:50%;animation-duration:1.5s}:host([laser][xl])>span:nth-child(2){width:80%;animation-duration:1.5s}@keyframes laser{0%{left:-100%}to{left:110%}}:host>.no-animation{display:none}@media (prefers-reduced-motion: reduce){:host{display:flex;align-items:center;justify-content:center}:host>span{opacity:1}:host>.loader{display:none}:host>svg{display:none}:host>.no-animation{display:block}}
@@ -13630,7 +13630,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13630
13630
  }
13631
13631
  };
13632
13632
 
13633
- var formkitVersion$1 = '202603262343';
13633
+ var formkitVersion$1 = '202603270007';
13634
13634
 
13635
13635
  let AuroElement$2 = class AuroElement extends i$1 {
13636
13636
  static get properties() {
@@ -21394,7 +21394,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21394
21394
  }
21395
21395
  };
21396
21396
 
21397
- var formkitVersion = '202603262343';
21397
+ var formkitVersion = '202603270007';
21398
21398
 
21399
21399
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21400
21400
  // See LICENSE in the project root for license information.
@@ -22578,28 +22578,13 @@ function guardTouchPassthrough(element) {
22578
22578
  *
22579
22579
  * @param {HTMLElement} dropdown - The `auro-dropdown` element.
22580
22580
  * @param {HTMLElement} focusTarget - The element to focus (e.g. trigger or input).
22581
- * @param {Function} [onAfterRestore] - Optional callback invoked instead of focusing
22582
- * `focusTarget`. Use when the caller needs a custom post-close focus target while
22583
- * still delegating all trigger-restoration cleanup to this function.
22584
- * When provided, `inert` removal is deferred to inside the rAF so that
22585
- * `dialog.close()`'s synchronous focus restoration (which runs in a Lit
22586
- * microtask before the rAF) cannot move focus back to the trigger and
22587
- * trigger a spurious VoiceOver announcement before the callback's custom
22588
- * focus target takes over.
22589
22581
  */
22590
- function restoreTriggerAfterClose(dropdown, focusTarget, onAfterRestore) {
22591
- // Default path: clear inert immediately so the trigger is focusable when
22592
- // the rAF fires. With no callback there is no custom focus target, so
22593
- // dialog.close() restoring focus to the trigger is fine.
22594
- {
22595
- dropdown.trigger.inert = false;
22596
- }
22582
+ function restoreTriggerAfterClose(dropdown, focusTarget) {
22583
+ dropdown.trigger.inert = false;
22597
22584
 
22598
22585
  requestAnimationFrame(() => {
22599
22586
  if (!dropdown.isPopoverVisible) {
22600
- {
22601
- focusTarget.focus();
22602
- }
22587
+ focusTarget.focus();
22603
22588
  }
22604
22589
  });
22605
22590
  }
@@ -9290,7 +9290,7 @@ class AuroBibtemplate extends i$1 {
9290
9290
  }
9291
9291
  }
9292
9292
 
9293
- var formkitVersion$2 = '202603262343';
9293
+ var formkitVersion$2 = '202603270007';
9294
9294
 
9295
9295
  let l$1 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$4 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$3=i$3`:host{color:var(--ds-auro-loader-color)}:host>span{background-color:var(--ds-auro-loader-background-color);border-color:var(--ds-auro-loader-border-color)}:host([onlight]),:host([appearance=brand]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]),:host([appearance=inverse]){--ds-auro-loader-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([orbit])>span{--ds-auro-loader-background-color: transparent}:host([orbit])>span:nth-child(1){--ds-auro-loader-border-color: currentcolor;opacity:.25}:host([orbit])>span:nth-child(2){--ds-auro-loader-border-color: currentcolor;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
9296
9296
  `,u$6=i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:focus:not(:focus-visible){outline:3px solid transparent}:host,:host>span{position:relative}:host{width:2rem;height:2rem;display:inline-block;font-size:0}:host>span{position:absolute;display:inline-block;float:none;top:0;left:0;width:2rem;height:2rem;border-radius:100%;border-style:solid;border-width:0;box-sizing:border-box}:host([xs]),:host([xs])>span{width:1.2rem;height:1.2rem}:host([sm]),:host([sm])>span{width:3rem;height:3rem}:host([md]),:host([md])>span{width:5rem;height:5rem}:host([lg]),:host([lg])>span{width:8rem;height:8rem}:host{--margin: .375rem;--margin-xs: .2rem;--margin-sm: .5rem;--margin-md: .75rem;--margin-lg: 1rem}:host([pulse]),:host([pulse])>span{position:relative}:host([pulse]){width:calc(3rem + var(--margin) * 6);height:calc(1rem + var(--margin) * 2)}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(1.95rem + var(--margin-xs) * 6);height:calc(.65rem + var(--margin-xs) * 2)}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:calc(2rem + var(--margin-sm) * 2)}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:calc(3rem + var(--margin-md) * 2)}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:calc(5rem + var(--margin-lg) * 2)}:host([pulse][lg])>span{margin:var(--margin-lg);width:5rem;height:5rem}:host([pulse])>span:nth-child(1){animation-delay:-.4s}:host([pulse])>span:nth-child(2){animation-delay:-.2s}:host([pulse])>span:nth-child(3){animation-delay:0ms}@keyframes pulse{0%,to{opacity:.1;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}:host([orbit]),:host([orbit])>span{opacity:1}:host([orbit])>span{border-width:5px}:host([orbit])>span:nth-child(2){animation:orbit 2s linear infinite}:host([orbit][sm])>span{border-width:8px}:host([orbit][md])>span{border-width:13px}:host([orbit][lg])>span{border-width:21px}@keyframes orbit{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host([ringworm])>svg{animation:rotate 2s linear infinite;height:100%;width:100%;stroke:currentcolor;stroke-width:8}:host([ringworm]) .path{stroke-dashoffset:0;animation:ringworm 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes ringworm{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}:host([laser]){position:static;width:100%;display:block;height:0;overflow:hidden;font-size:unset}:host([laser])>span{position:fixed;width:100%;height:.25rem;border-radius:0;z-index:100}:host([laser])>span:nth-child(1){border-color:currentcolor;opacity:.25}:host([laser])>span:nth-child(2){border-color:currentcolor;animation:laser 2s linear infinite;opacity:1;width:50%}:host([laser][sm])>span:nth-child(2){width:20%}:host([laser][md])>span:nth-child(2){width:30%}:host([laser][lg])>span:nth-child(2){width:50%;animation-duration:1.5s}:host([laser][xl])>span:nth-child(2){width:80%;animation-duration:1.5s}@keyframes laser{0%{left:-100%}to{left:110%}}:host>.no-animation{display:none}@media (prefers-reduced-motion: reduce){:host{display:flex;align-items:center;justify-content:center}:host>span{opacity:1}:host>.loader{display:none}:host>svg{display:none}:host>.no-animation{display:block}}
@@ -13371,7 +13371,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13371
13371
  }
13372
13372
  };
13373
13373
 
13374
- var formkitVersion$1 = '202603262343';
13374
+ var formkitVersion$1 = '202603270007';
13375
13375
 
13376
13376
  let AuroElement$2 = class AuroElement extends i$1 {
13377
13377
  static get properties() {
@@ -21135,7 +21135,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21135
21135
  }
21136
21136
  };
21137
21137
 
21138
- var formkitVersion = '202603262343';
21138
+ var formkitVersion = '202603270007';
21139
21139
 
21140
21140
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21141
21141
  // See LICENSE in the project root for license information.
@@ -22319,28 +22319,13 @@ function guardTouchPassthrough(element) {
22319
22319
  *
22320
22320
  * @param {HTMLElement} dropdown - The `auro-dropdown` element.
22321
22321
  * @param {HTMLElement} focusTarget - The element to focus (e.g. trigger or input).
22322
- * @param {Function} [onAfterRestore] - Optional callback invoked instead of focusing
22323
- * `focusTarget`. Use when the caller needs a custom post-close focus target while
22324
- * still delegating all trigger-restoration cleanup to this function.
22325
- * When provided, `inert` removal is deferred to inside the rAF so that
22326
- * `dialog.close()`'s synchronous focus restoration (which runs in a Lit
22327
- * microtask before the rAF) cannot move focus back to the trigger and
22328
- * trigger a spurious VoiceOver announcement before the callback's custom
22329
- * focus target takes over.
22330
22322
  */
22331
- function restoreTriggerAfterClose(dropdown, focusTarget, onAfterRestore) {
22332
- // Default path: clear inert immediately so the trigger is focusable when
22333
- // the rAF fires. With no callback there is no custom focus target, so
22334
- // dialog.close() restoring focus to the trigger is fine.
22335
- {
22336
- dropdown.trigger.inert = false;
22337
- }
22323
+ function restoreTriggerAfterClose(dropdown, focusTarget) {
22324
+ dropdown.trigger.inert = false;
22338
22325
 
22339
22326
  requestAnimationFrame(() => {
22340
22327
  if (!dropdown.isPopoverVisible) {
22341
- {
22342
- focusTarget.focus();
22343
- }
22328
+ focusTarget.focus();
22344
22329
  }
22345
22330
  });
22346
22331
  }