@aurodesignsystem-dev/auro-formkit 0.0.0-pr1389.0 → 0.0.0-pr1389.2

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 (39) 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 +100 -38
  6. package/components/combobox/demo/index.min.js +100 -38
  7. package/components/combobox/dist/comboboxKeyboardStrategy.d.ts +4 -4
  8. package/components/combobox/dist/index.js +100 -38
  9. package/components/combobox/dist/registered.js +100 -38
  10. package/components/counter/demo/api.min.js +2 -2
  11. package/components/counter/demo/index.min.js +2 -2
  12. package/components/counter/dist/index.js +2 -2
  13. package/components/counter/dist/registered.js +2 -2
  14. package/components/datepicker/demo/api.min.js +3 -3
  15. package/components/datepicker/demo/index.min.js +3 -3
  16. package/components/datepicker/dist/index.js +3 -3
  17. package/components/datepicker/dist/registered.js +3 -3
  18. package/components/dropdown/demo/api.min.js +1 -1
  19. package/components/dropdown/demo/index.min.js +1 -1
  20. package/components/dropdown/dist/index.js +1 -1
  21. package/components/dropdown/dist/registered.js +1 -1
  22. package/components/form/demo/api.min.js +164 -58
  23. package/components/form/demo/index.min.js +164 -58
  24. package/components/input/demo/api.min.js +1 -1
  25. package/components/input/demo/index.min.js +1 -1
  26. package/components/input/dist/index.js +1 -1
  27. package/components/input/dist/registered.js +1 -1
  28. package/components/radio/demo/api.min.js +1 -1
  29. package/components/radio/demo/index.min.js +1 -1
  30. package/components/radio/dist/index.js +1 -1
  31. package/components/radio/dist/registered.js +1 -1
  32. package/components/select/demo/api.min.js +56 -12
  33. package/components/select/demo/index.min.js +56 -12
  34. package/components/select/dist/index.js +56 -12
  35. package/components/select/dist/registered.js +56 -12
  36. package/components/select/dist/selectKeyboardStrategy.d.ts +3 -3
  37. package/custom-elements.json +1395 -1470
  38. package/package.json +1 -1
  39. package/components/dropdown/dist/keyboardUtils.d.ts +0 -18
@@ -1111,17 +1111,53 @@ function restoreTriggerAfterClose(dropdown, focusTarget) {
1111
1111
  });
1112
1112
  }
1113
1113
 
1114
+ /**
1115
+ * Computes display state once per keydown event.
1116
+ * Centralizes null-safety checks and makes the shared/modal/popover branching explicit.
1117
+ *
1118
+ * @param {HTMLElement} component - The component with a dropdown reference.
1119
+ * @param {Object} [options] - Optional config.
1120
+ * @param {HTMLElement} [options.dropdown] - Explicit dropdown reference. Falls back to component.dropdown.
1121
+ * @param {Function} [options.inputResolver] - Called with (component, ctx) to resolve the active input element.
1122
+ * @returns {{isExpanded: boolean, isModal: boolean, isPopover: boolean, activeInput: HTMLElement|null}}
1123
+ * isModal and isPopover reflect the display mode (fullscreen vs not) regardless of expanded state.
1124
+ */
1125
+ function createDisplayContext(component, options = {}) {
1126
+ const dd = options.dropdown || component.dropdown;
1127
+ // isPopoverVisible reflects as the `open` attribute.
1128
+ // It reports whether the bib is open in any mode (popover or modal).
1129
+ const isExpanded = Boolean(dd && dd.isPopoverVisible);
1130
+ const isFullscreen = Boolean(dd && dd.isBibFullscreen);
1131
+
1132
+ const ctx = {
1133
+ isExpanded,
1134
+ isModal: isFullscreen,
1135
+ isPopover: !isFullscreen,
1136
+ activeInput: null,
1137
+ };
1138
+
1139
+ if (options.inputResolver) {
1140
+ const resolvedInput = options.inputResolver(component, ctx);
1141
+ // Guard against resolvers returning undefined or non-HTMLElement values.
1142
+ ctx.activeInput = resolvedInput instanceof HTMLElement ? resolvedInput : null;
1143
+ }
1144
+
1145
+ return ctx;
1146
+ }
1147
+
1114
1148
  /**
1115
1149
  * Wires up a keydown listener that dispatches to strategy[evt.key] or strategy.default.
1116
1150
  * Handles both sync and async handlers.
1117
1151
  * @param {HTMLElement} component - The component to attach the listener to.
1118
1152
  * @param {Object} strategy - Map of key names to handler functions.
1153
+ * @param {Object} [options] - Optional config passed to createDisplayContext.
1119
1154
  */
1120
- function applyKeyboardStrategy(component, strategy) {
1155
+ function applyKeyboardStrategy(component, strategy, options = {}) {
1121
1156
  component.addEventListener('keydown', async (evt) => {
1122
1157
  const handler = strategy[evt.key] || strategy.default;
1123
- if (handler) {
1124
- await handler(component, evt);
1158
+ if (typeof handler === 'function') {
1159
+ const ctx = createDisplayContext(component, options);
1160
+ await handler(component, evt, ctx);
1125
1161
  }
1126
1162
  });
1127
1163
  }
@@ -1133,39 +1169,58 @@ function applyKeyboardStrategy(component, strategy) {
1133
1169
  * @param {string} direction - 'up' or 'down'.
1134
1170
  * @param {Object} [options] - Optional config.
1135
1171
  * @param {Function} [options.showFn] - Called to open the dropdown when closed.
1172
+ * @param {Object} [options.ctx] - Display context to avoid re-checking visibility.
1136
1173
  */
1137
1174
  function navigateArrow(component, direction, options = {}) {
1138
- if (component.dropdown.isPopoverVisible) {
1175
+ const visible = options.ctx ? options.ctx.isExpanded : component.dropdown.isPopoverVisible;
1176
+ if (visible) {
1139
1177
  component.menu.navigateOptions(direction);
1140
1178
  } else if (options.showFn) {
1141
1179
  options.showFn();
1142
1180
  }
1143
1181
  }
1144
1182
 
1183
+ /**
1184
+ * Returns the clear button element from the active input's shadow
1185
+ * DOM, if available.
1186
+ * @param {Object} ctx - Display context with activeInput.
1187
+ * @returns {Element|null}
1188
+ */
1189
+ function getClearBtn(ctx) {
1190
+ const root = ctx && ctx.activeInput && ctx.activeInput.shadowRoot;
1191
+ if (!root) {
1192
+ return null;
1193
+ }
1194
+ return root.querySelector('.clearBtn');
1195
+ }
1196
+
1197
+ /**
1198
+ * Returns true when the clear button inside the active input's shadow DOM has focus.
1199
+ * Uses shadowRoot.activeElement to detect focus inside auro-button,
1200
+ * since Safari does not propagate :focus-within through shadow DOM.
1201
+ * @param {Object} ctx - Display context with activeInput.
1202
+ * @param {Element} [clearBtn=getClearBtn(ctx)] - Pre-fetched clear button element.
1203
+ * @returns {boolean}
1204
+ */
1205
+ function isClearBtnFocused(ctx, clearBtn = getClearBtn(ctx)) {
1206
+ if (!clearBtn) {
1207
+ return false;
1208
+ }
1209
+ return Boolean(clearBtn.shadowRoot && clearBtn.shadowRoot.activeElement !== null);
1210
+ }
1211
+
1145
1212
  const comboboxKeyboardStrategy = {
1146
- async Enter(component, evt) {
1213
+ async Enter(component, evt, ctx) {
1147
1214
  // If the clear button has focus, let the browser activate it normally.
1148
1215
  // stopPropagation prevents parent containers (e.g., forms) from treating
1149
1216
  // Enter as a submit, but we must NOT call preventDefault — that would
1150
1217
  // block the browser's built-in "Enter activates focused button" behavior.
1151
- const isBibFullscreenActive =
1152
- component.dropdown &&
1153
- component.dropdown.isBibFullscreen &&
1154
- component.dropdown.isPopoverVisible;
1155
- const activeInput =
1156
- isBibFullscreenActive && component.inputInBib
1157
- ? component.inputInBib
1158
- : component.input;
1159
- const clearBtn =
1160
- activeInput && activeInput.shadowRoot
1161
- ? activeInput.shadowRoot.querySelector('.clearBtn')
1162
- : null;
1163
- if (clearBtn && clearBtn.shadowRoot && clearBtn.shadowRoot.activeElement !== null) {
1218
+ if (isClearBtnFocused(ctx)) {
1164
1219
  evt.stopPropagation();
1165
1220
  return;
1166
1221
  }
1167
1222
 
1168
- if (component.dropdown.isPopoverVisible && component.optionActive) {
1223
+ if (ctx.isExpanded && component.optionActive) {
1169
1224
  component.menu.makeSelection();
1170
1225
  await component.updateComplete;
1171
1226
  evt.preventDefault();
@@ -1182,20 +1237,20 @@ const comboboxKeyboardStrategy = {
1182
1237
  }
1183
1238
  },
1184
1239
 
1185
- Tab(component) {
1186
- if (!component.dropdown.isPopoverVisible) {
1240
+ Tab(component, _evt, ctx) {
1241
+ if (!ctx.isExpanded) {
1187
1242
  return;
1188
1243
  }
1189
1244
 
1190
- if (component.dropdown.isBibFullscreen) {
1191
- const clearBtn = component.inputInBib.shadowRoot.querySelector('.clearBtn');
1192
-
1193
- // Use shadowRoot.activeElement to detect focus inside auro-button,
1194
- // since Safari does not propagate :focus-within through shadow DOM.
1195
- const clearBtnHasFocus = clearBtn && clearBtn.shadowRoot && clearBtn.shadowRoot.activeElement !== null;
1245
+ if (ctx.isModal) {
1246
+ if (!ctx.activeInput) {
1247
+ return;
1248
+ }
1249
+ const clearBtn = getClearBtn(ctx);
1250
+ const clearBtnHasFocus = isClearBtnFocused(ctx, clearBtn);
1196
1251
 
1197
1252
  // Tab from input: if clear button exists and doesn't have focus, focus it
1198
- if (clearBtn && !clearBtnHasFocus && component.inputInBib.value) {
1253
+ if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) {
1199
1254
  // Force clear button container visible to work around Safari not
1200
1255
  // propagating :focus-within through shadow DOM boundaries, which
1201
1256
  // causes .wrapper:not(:focus-within) to hide .notification.clear.
@@ -1238,30 +1293,34 @@ const comboboxKeyboardStrategy = {
1238
1293
  component.hideBib();
1239
1294
  },
1240
1295
 
1241
- ArrowUp(component, evt) {
1242
- // If the clear button has focus, let the browser handle ArrowUp normally
1243
- if (component.clearBtnFocused) {
1296
+ ArrowUp(component, evt, ctx) {
1297
+ // If the clear button has focus, let the browser handle ArrowUp normally.
1298
+ if (isClearBtnFocused(ctx)) {
1244
1299
  return;
1245
1300
  }
1246
1301
 
1247
1302
  if (component.availableOptions.length > 0) {
1248
1303
  component.showBib();
1249
1304
  }
1305
+ // Read live visibility — ctx.isExpanded was computed before showBib() above,
1306
+ // so it wouldn't reflect the state change.
1250
1307
  if (component.dropdown.isPopoverVisible) {
1251
1308
  evt.preventDefault();
1252
1309
  navigateArrow(component, 'up');
1253
1310
  }
1254
1311
  },
1255
1312
 
1256
- ArrowDown(component, evt) {
1257
- // If the clear button has focus, let the browser handle ArrowDown normally
1258
- if (component.clearBtnFocused) {
1313
+ ArrowDown(component, evt, ctx) {
1314
+ // If the clear button has focus, let the browser handle ArrowDown normally.
1315
+ if (isClearBtnFocused(ctx)) {
1259
1316
  return;
1260
1317
  }
1261
1318
 
1262
1319
  if (component.availableOptions.length > 0) {
1263
1320
  component.showBib();
1264
1321
  }
1322
+ // Read live visibility — ctx.isExpanded was computed before showBib() above,
1323
+ // so it wouldn't reflect the state change.
1265
1324
  if (component.dropdown.isPopoverVisible) {
1266
1325
  evt.preventDefault();
1267
1326
  navigateArrow(component, 'down');
@@ -4833,7 +4892,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4833
4892
  }
4834
4893
  };
4835
4894
 
4836
- var formkitVersion$2 = '202603191747';
4895
+ var formkitVersion$2 = '202603201823';
4837
4896
 
4838
4897
  let AuroElement$2 = class AuroElement extends LitElement {
4839
4898
  static get properties() {
@@ -12581,7 +12640,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12581
12640
  }
12582
12641
  };
12583
12642
 
12584
- var formkitVersion$1 = '202603191747';
12643
+ var formkitVersion$1 = '202603201823';
12585
12644
 
12586
12645
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12587
12646
  // See LICENSE in the project root for license information.
@@ -13620,7 +13679,7 @@ class AuroBibtemplate extends LitElement {
13620
13679
  }
13621
13680
  }
13622
13681
 
13623
- var formkitVersion = '202603191747';
13682
+ var formkitVersion = '202603201823';
13624
13683
 
13625
13684
  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}`;
13626
13685
 
@@ -15098,7 +15157,10 @@ class AuroCombobox extends AuroElement {
15098
15157
  * @returns {void}
15099
15158
  */
15100
15159
  configureCombobox() {
15101
- applyKeyboardStrategy(this, comboboxKeyboardStrategy);
15160
+ applyKeyboardStrategy(this, comboboxKeyboardStrategy, {
15161
+ // In modal mode the input moves into the bib; route keyboard events to that element instead.
15162
+ inputResolver: (comp, ctx) => (ctx.isModal && comp.inputInBib ? comp.inputInBib : comp.input),
15163
+ });
15102
15164
 
15103
15165
  this.addEventListener('focusin', () => {
15104
15166
  this.touched = true;
@@ -1111,17 +1111,53 @@ function restoreTriggerAfterClose(dropdown, focusTarget) {
1111
1111
  });
1112
1112
  }
1113
1113
 
1114
+ /**
1115
+ * Computes display state once per keydown event.
1116
+ * Centralizes null-safety checks and makes the shared/modal/popover branching explicit.
1117
+ *
1118
+ * @param {HTMLElement} component - The component with a dropdown reference.
1119
+ * @param {Object} [options] - Optional config.
1120
+ * @param {HTMLElement} [options.dropdown] - Explicit dropdown reference. Falls back to component.dropdown.
1121
+ * @param {Function} [options.inputResolver] - Called with (component, ctx) to resolve the active input element.
1122
+ * @returns {{isExpanded: boolean, isModal: boolean, isPopover: boolean, activeInput: HTMLElement|null}}
1123
+ * isModal and isPopover reflect the display mode (fullscreen vs not) regardless of expanded state.
1124
+ */
1125
+ function createDisplayContext(component, options = {}) {
1126
+ const dd = options.dropdown || component.dropdown;
1127
+ // isPopoverVisible reflects as the `open` attribute.
1128
+ // It reports whether the bib is open in any mode (popover or modal).
1129
+ const isExpanded = Boolean(dd && dd.isPopoverVisible);
1130
+ const isFullscreen = Boolean(dd && dd.isBibFullscreen);
1131
+
1132
+ const ctx = {
1133
+ isExpanded,
1134
+ isModal: isFullscreen,
1135
+ isPopover: !isFullscreen,
1136
+ activeInput: null,
1137
+ };
1138
+
1139
+ if (options.inputResolver) {
1140
+ const resolvedInput = options.inputResolver(component, ctx);
1141
+ // Guard against resolvers returning undefined or non-HTMLElement values.
1142
+ ctx.activeInput = resolvedInput instanceof HTMLElement ? resolvedInput : null;
1143
+ }
1144
+
1145
+ return ctx;
1146
+ }
1147
+
1114
1148
  /**
1115
1149
  * Wires up a keydown listener that dispatches to strategy[evt.key] or strategy.default.
1116
1150
  * Handles both sync and async handlers.
1117
1151
  * @param {HTMLElement} component - The component to attach the listener to.
1118
1152
  * @param {Object} strategy - Map of key names to handler functions.
1153
+ * @param {Object} [options] - Optional config passed to createDisplayContext.
1119
1154
  */
1120
- function applyKeyboardStrategy(component, strategy) {
1155
+ function applyKeyboardStrategy(component, strategy, options = {}) {
1121
1156
  component.addEventListener('keydown', async (evt) => {
1122
1157
  const handler = strategy[evt.key] || strategy.default;
1123
- if (handler) {
1124
- await handler(component, evt);
1158
+ if (typeof handler === 'function') {
1159
+ const ctx = createDisplayContext(component, options);
1160
+ await handler(component, evt, ctx);
1125
1161
  }
1126
1162
  });
1127
1163
  }
@@ -1133,39 +1169,58 @@ function applyKeyboardStrategy(component, strategy) {
1133
1169
  * @param {string} direction - 'up' or 'down'.
1134
1170
  * @param {Object} [options] - Optional config.
1135
1171
  * @param {Function} [options.showFn] - Called to open the dropdown when closed.
1172
+ * @param {Object} [options.ctx] - Display context to avoid re-checking visibility.
1136
1173
  */
1137
1174
  function navigateArrow(component, direction, options = {}) {
1138
- if (component.dropdown.isPopoverVisible) {
1175
+ const visible = options.ctx ? options.ctx.isExpanded : component.dropdown.isPopoverVisible;
1176
+ if (visible) {
1139
1177
  component.menu.navigateOptions(direction);
1140
1178
  } else if (options.showFn) {
1141
1179
  options.showFn();
1142
1180
  }
1143
1181
  }
1144
1182
 
1183
+ /**
1184
+ * Returns the clear button element from the active input's shadow
1185
+ * DOM, if available.
1186
+ * @param {Object} ctx - Display context with activeInput.
1187
+ * @returns {Element|null}
1188
+ */
1189
+ function getClearBtn(ctx) {
1190
+ const root = ctx && ctx.activeInput && ctx.activeInput.shadowRoot;
1191
+ if (!root) {
1192
+ return null;
1193
+ }
1194
+ return root.querySelector('.clearBtn');
1195
+ }
1196
+
1197
+ /**
1198
+ * Returns true when the clear button inside the active input's shadow DOM has focus.
1199
+ * Uses shadowRoot.activeElement to detect focus inside auro-button,
1200
+ * since Safari does not propagate :focus-within through shadow DOM.
1201
+ * @param {Object} ctx - Display context with activeInput.
1202
+ * @param {Element} [clearBtn=getClearBtn(ctx)] - Pre-fetched clear button element.
1203
+ * @returns {boolean}
1204
+ */
1205
+ function isClearBtnFocused(ctx, clearBtn = getClearBtn(ctx)) {
1206
+ if (!clearBtn) {
1207
+ return false;
1208
+ }
1209
+ return Boolean(clearBtn.shadowRoot && clearBtn.shadowRoot.activeElement !== null);
1210
+ }
1211
+
1145
1212
  const comboboxKeyboardStrategy = {
1146
- async Enter(component, evt) {
1213
+ async Enter(component, evt, ctx) {
1147
1214
  // If the clear button has focus, let the browser activate it normally.
1148
1215
  // stopPropagation prevents parent containers (e.g., forms) from treating
1149
1216
  // Enter as a submit, but we must NOT call preventDefault — that would
1150
1217
  // block the browser's built-in "Enter activates focused button" behavior.
1151
- const isBibFullscreenActive =
1152
- component.dropdown &&
1153
- component.dropdown.isBibFullscreen &&
1154
- component.dropdown.isPopoverVisible;
1155
- const activeInput =
1156
- isBibFullscreenActive && component.inputInBib
1157
- ? component.inputInBib
1158
- : component.input;
1159
- const clearBtn =
1160
- activeInput && activeInput.shadowRoot
1161
- ? activeInput.shadowRoot.querySelector('.clearBtn')
1162
- : null;
1163
- if (clearBtn && clearBtn.shadowRoot && clearBtn.shadowRoot.activeElement !== null) {
1218
+ if (isClearBtnFocused(ctx)) {
1164
1219
  evt.stopPropagation();
1165
1220
  return;
1166
1221
  }
1167
1222
 
1168
- if (component.dropdown.isPopoverVisible && component.optionActive) {
1223
+ if (ctx.isExpanded && component.optionActive) {
1169
1224
  component.menu.makeSelection();
1170
1225
  await component.updateComplete;
1171
1226
  evt.preventDefault();
@@ -1182,20 +1237,20 @@ const comboboxKeyboardStrategy = {
1182
1237
  }
1183
1238
  },
1184
1239
 
1185
- Tab(component) {
1186
- if (!component.dropdown.isPopoverVisible) {
1240
+ Tab(component, _evt, ctx) {
1241
+ if (!ctx.isExpanded) {
1187
1242
  return;
1188
1243
  }
1189
1244
 
1190
- if (component.dropdown.isBibFullscreen) {
1191
- const clearBtn = component.inputInBib.shadowRoot.querySelector('.clearBtn');
1192
-
1193
- // Use shadowRoot.activeElement to detect focus inside auro-button,
1194
- // since Safari does not propagate :focus-within through shadow DOM.
1195
- const clearBtnHasFocus = clearBtn && clearBtn.shadowRoot && clearBtn.shadowRoot.activeElement !== null;
1245
+ if (ctx.isModal) {
1246
+ if (!ctx.activeInput) {
1247
+ return;
1248
+ }
1249
+ const clearBtn = getClearBtn(ctx);
1250
+ const clearBtnHasFocus = isClearBtnFocused(ctx, clearBtn);
1196
1251
 
1197
1252
  // Tab from input: if clear button exists and doesn't have focus, focus it
1198
- if (clearBtn && !clearBtnHasFocus && component.inputInBib.value) {
1253
+ if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) {
1199
1254
  // Force clear button container visible to work around Safari not
1200
1255
  // propagating :focus-within through shadow DOM boundaries, which
1201
1256
  // causes .wrapper:not(:focus-within) to hide .notification.clear.
@@ -1238,30 +1293,34 @@ const comboboxKeyboardStrategy = {
1238
1293
  component.hideBib();
1239
1294
  },
1240
1295
 
1241
- ArrowUp(component, evt) {
1242
- // If the clear button has focus, let the browser handle ArrowUp normally
1243
- if (component.clearBtnFocused) {
1296
+ ArrowUp(component, evt, ctx) {
1297
+ // If the clear button has focus, let the browser handle ArrowUp normally.
1298
+ if (isClearBtnFocused(ctx)) {
1244
1299
  return;
1245
1300
  }
1246
1301
 
1247
1302
  if (component.availableOptions.length > 0) {
1248
1303
  component.showBib();
1249
1304
  }
1305
+ // Read live visibility — ctx.isExpanded was computed before showBib() above,
1306
+ // so it wouldn't reflect the state change.
1250
1307
  if (component.dropdown.isPopoverVisible) {
1251
1308
  evt.preventDefault();
1252
1309
  navigateArrow(component, 'up');
1253
1310
  }
1254
1311
  },
1255
1312
 
1256
- ArrowDown(component, evt) {
1257
- // If the clear button has focus, let the browser handle ArrowDown normally
1258
- if (component.clearBtnFocused) {
1313
+ ArrowDown(component, evt, ctx) {
1314
+ // If the clear button has focus, let the browser handle ArrowDown normally.
1315
+ if (isClearBtnFocused(ctx)) {
1259
1316
  return;
1260
1317
  }
1261
1318
 
1262
1319
  if (component.availableOptions.length > 0) {
1263
1320
  component.showBib();
1264
1321
  }
1322
+ // Read live visibility — ctx.isExpanded was computed before showBib() above,
1323
+ // so it wouldn't reflect the state change.
1265
1324
  if (component.dropdown.isPopoverVisible) {
1266
1325
  evt.preventDefault();
1267
1326
  navigateArrow(component, 'down');
@@ -4833,7 +4892,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4833
4892
  }
4834
4893
  };
4835
4894
 
4836
- var formkitVersion$2 = '202603191747';
4895
+ var formkitVersion$2 = '202603201823';
4837
4896
 
4838
4897
  let AuroElement$2 = class AuroElement extends LitElement {
4839
4898
  static get properties() {
@@ -12581,7 +12640,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12581
12640
  }
12582
12641
  };
12583
12642
 
12584
- var formkitVersion$1 = '202603191747';
12643
+ var formkitVersion$1 = '202603201823';
12585
12644
 
12586
12645
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12587
12646
  // See LICENSE in the project root for license information.
@@ -13620,7 +13679,7 @@ class AuroBibtemplate extends LitElement {
13620
13679
  }
13621
13680
  }
13622
13681
 
13623
- var formkitVersion = '202603191747';
13682
+ var formkitVersion = '202603201823';
13624
13683
 
13625
13684
  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}`;
13626
13685
 
@@ -15098,7 +15157,10 @@ class AuroCombobox extends AuroElement {
15098
15157
  * @returns {void}
15099
15158
  */
15100
15159
  configureCombobox() {
15101
- applyKeyboardStrategy(this, comboboxKeyboardStrategy);
15160
+ applyKeyboardStrategy(this, comboboxKeyboardStrategy, {
15161
+ // In modal mode the input moves into the bib; route keyboard events to that element instead.
15162
+ inputResolver: (comp, ctx) => (ctx.isModal && comp.inputInBib ? comp.inputInBib : comp.input),
15163
+ });
15102
15164
 
15103
15165
  this.addEventListener('focusin', () => {
15104
15166
  this.touched = true;
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1470
1470
  }
1471
1471
  };
1472
1472
 
1473
- var formkitVersion$1 = '202603191747';
1473
+ var formkitVersion$1 = '202603201823';
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.
@@ -5494,7 +5494,7 @@ class AuroHelpText extends i$2 {
5494
5494
  }
5495
5495
  }
5496
5496
 
5497
- var formkitVersion = '202603191747';
5497
+ var formkitVersion = '202603201823';
5498
5498
 
5499
5499
  let AuroElement$1 = class AuroElement extends i$2 {
5500
5500
  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 = '202603191747';
1473
+ var formkitVersion$1 = '202603201823';
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.
@@ -5494,7 +5494,7 @@ class AuroHelpText extends i$2 {
5494
5494
  }
5495
5495
  }
5496
5496
 
5497
- var formkitVersion = '202603191747';
5497
+ var formkitVersion = '202603201823';
5498
5498
 
5499
5499
  let AuroElement$1 = class AuroElement extends i$2 {
5500
5500
  static get properties() {
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1420
1420
  }
1421
1421
  };
1422
1422
 
1423
- var formkitVersion$1 = '202603191747';
1423
+ var formkitVersion$1 = '202603201823';
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.
@@ -5426,7 +5426,7 @@ class AuroHelpText extends LitElement {
5426
5426
  }
5427
5427
  }
5428
5428
 
5429
- var formkitVersion = '202603191747';
5429
+ var formkitVersion = '202603201823';
5430
5430
 
5431
5431
  let AuroElement$1 = class AuroElement extends LitElement {
5432
5432
  static get properties() {
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1420
1420
  }
1421
1421
  };
1422
1422
 
1423
- var formkitVersion$1 = '202603191747';
1423
+ var formkitVersion$1 = '202603201823';
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.
@@ -5426,7 +5426,7 @@ class AuroHelpText extends LitElement {
5426
5426
  }
5427
5427
  }
5428
5428
 
5429
- var formkitVersion = '202603191747';
5429
+ var formkitVersion = '202603201823';
5430
5430
 
5431
5431
  let AuroElement$1 = class AuroElement extends LitElement {
5432
5432
  static get properties() {
@@ -9549,7 +9549,7 @@ class AuroBibtemplate extends i$1 {
9549
9549
  }
9550
9550
  }
9551
9551
 
9552
- var formkitVersion$2 = '202603191747';
9552
+ var formkitVersion$2 = '202603201823';
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}}
@@ -13607,7 +13607,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13607
13607
  }
13608
13608
  };
13609
13609
 
13610
- var formkitVersion$1 = '202603191747';
13610
+ var formkitVersion$1 = '202603201823';
13611
13611
 
13612
13612
  let AuroElement$2 = class AuroElement extends i$1 {
13613
13613
  static get properties() {
@@ -21362,7 +21362,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21362
21362
  }
21363
21363
  };
21364
21364
 
21365
- var formkitVersion = '202603191747';
21365
+ var formkitVersion = '202603201823';
21366
21366
 
21367
21367
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21368
21368
  // See LICENSE in the project root for license information.