@aurodesignsystem-dev/auro-formkit 0.0.0-pr1400.3 → 0.0.0-pr1400.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.min.js +34 -7
- package/components/combobox/demo/index.min.js +34 -7
- package/components/combobox/dist/comboboxKeyboardStrategy.d.ts +1 -1
- package/components/combobox/dist/index.js +34 -7
- package/components/combobox/dist/registered.js +34 -7
- package/components/counter/demo/api.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +2 -2
- package/components/counter/dist/registered.js +2 -2
- package/components/datepicker/demo/api.min.js +3 -3
- package/components/datepicker/demo/index.min.js +3 -3
- package/components/datepicker/dist/index.js +3 -3
- package/components/datepicker/dist/registered.js +3 -3
- package/components/dropdown/demo/api.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/form/demo/api.min.js +67 -17
- package/components/form/demo/index.min.js +67 -17
- package/components/input/demo/api.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +25 -2
- package/components/select/demo/index.min.js +25 -2
- package/components/select/dist/index.js +25 -2
- package/components/select/dist/registered.js +25 -2
- package/custom-elements.json +1 -1
- package/package.json +1 -1
|
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
|
|
|
1687
1687
|
}
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
|
-
var formkitVersion = '
|
|
1690
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
1682
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
1635
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
1635
|
+
var formkitVersion = '202603272025';
|
|
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.
|
|
@@ -1201,6 +1201,27 @@ function guardTouchPassthrough(element) {
|
|
|
1201
1201
|
}, { once: true });
|
|
1202
1202
|
}
|
|
1203
1203
|
|
|
1204
|
+
/**
|
|
1205
|
+
* Closes the fullscreen dialog element synchronously.
|
|
1206
|
+
*
|
|
1207
|
+
* When a dropdown closes, Lit's async update cycle may call `dialog.close()`
|
|
1208
|
+
* too late — the browser's native focus restoration (back to `document.body`)
|
|
1209
|
+
* can race with the `requestAnimationFrame` in {@link restoreTriggerAfterClose},
|
|
1210
|
+
* stealing focus back to `body` after it was already placed on the trigger.
|
|
1211
|
+
*
|
|
1212
|
+
* Calling this *before* `restoreTriggerAfterClose` ensures the dialog's native
|
|
1213
|
+
* focus restore fires first, so the rAF wins the race.
|
|
1214
|
+
*
|
|
1215
|
+
* @param {HTMLElement} dropdown - The `auro-dropdown` element whose bib may
|
|
1216
|
+
* contain a `<dialog>`.
|
|
1217
|
+
*/
|
|
1218
|
+
function closeFullscreenDialog(dropdown) {
|
|
1219
|
+
const bibEl = dropdown.bibElement && dropdown.bibElement.value;
|
|
1220
|
+
if (bibEl) {
|
|
1221
|
+
bibEl.close();
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1204
1225
|
/**
|
|
1205
1226
|
* Restores the dropdown trigger after a fullscreen dialog closes.
|
|
1206
1227
|
*
|
|
@@ -1332,7 +1353,7 @@ function isClearBtnFocused(ctx, clearBtn = getClearBtn(ctx)) {
|
|
|
1332
1353
|
}
|
|
1333
1354
|
|
|
1334
1355
|
const comboboxKeyboardStrategy = {
|
|
1335
|
-
|
|
1356
|
+
Enter(component, evt, ctx) {
|
|
1336
1357
|
// If the clear button has focus, let the browser activate it normally.
|
|
1337
1358
|
// stopPropagation prevents parent containers (e.g., forms) from treating
|
|
1338
1359
|
// Enter as a submit, but we must NOT call preventDefault — that would
|
|
@@ -1343,11 +1364,15 @@ const comboboxKeyboardStrategy = {
|
|
|
1343
1364
|
}
|
|
1344
1365
|
|
|
1345
1366
|
if (ctx.isExpanded && component.optionActive) {
|
|
1346
|
-
component.menu.makeSelection();
|
|
1347
|
-
await component.updateComplete;
|
|
1348
1367
|
evt.preventDefault();
|
|
1349
1368
|
evt.stopPropagation();
|
|
1350
|
-
|
|
1369
|
+
// Set flags before makeSelection so the showBib guard and the
|
|
1370
|
+
// auroDropdown-toggled close handler both see them when the value
|
|
1371
|
+
// change propagates through Lit's microtask update cycle.
|
|
1372
|
+
component._focusClearBtnAfterClose = true;
|
|
1373
|
+
component._clearBtnFocusPending = true;
|
|
1374
|
+
component.menu.makeSelection();
|
|
1375
|
+
component.hideBib();
|
|
1351
1376
|
} else {
|
|
1352
1377
|
// Prevent the keypress from bubbling to parent containers (e.g., forms)
|
|
1353
1378
|
// which could interpret Enter as a submit or trigger other unintended behavior.
|
|
@@ -5088,7 +5113,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
|
|
|
5088
5113
|
}
|
|
5089
5114
|
};
|
|
5090
5115
|
|
|
5091
|
-
var formkitVersion$2 = '
|
|
5116
|
+
var formkitVersion$2 = '202603272025';
|
|
5092
5117
|
|
|
5093
5118
|
let AuroElement$2 = class AuroElement extends i$4 {
|
|
5094
5119
|
static get properties() {
|
|
@@ -12852,7 +12877,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
|
|
|
12852
12877
|
}
|
|
12853
12878
|
};
|
|
12854
12879
|
|
|
12855
|
-
var formkitVersion$1 = '
|
|
12880
|
+
var formkitVersion$1 = '202603272025';
|
|
12856
12881
|
|
|
12857
12882
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12858
12883
|
// See LICENSE in the project root for license information.
|
|
@@ -13891,7 +13916,7 @@ class AuroBibtemplate extends i$4 {
|
|
|
13891
13916
|
}
|
|
13892
13917
|
}
|
|
13893
13918
|
|
|
13894
|
-
var formkitVersion = '
|
|
13919
|
+
var formkitVersion = '202603272025';
|
|
13895
13920
|
|
|
13896
13921
|
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}`;
|
|
13897
13922
|
|
|
@@ -14977,6 +15002,8 @@ class AuroCombobox extends AuroElement {
|
|
|
14977
15002
|
// during fullscreen open to prevent touch pass-through.
|
|
14978
15003
|
this.menu.style.pointerEvents = '';
|
|
14979
15004
|
|
|
15005
|
+
closeFullscreenDialog(this.dropdown);
|
|
15006
|
+
|
|
14980
15007
|
const shouldFocusClearBtn = this._focusClearBtnAfterClose;
|
|
14981
15008
|
this._focusClearBtnAfterClose = false;
|
|
14982
15009
|
|
|
@@ -1124,6 +1124,27 @@ function guardTouchPassthrough(element) {
|
|
|
1124
1124
|
}, { once: true });
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
1127
|
+
/**
|
|
1128
|
+
* Closes the fullscreen dialog element synchronously.
|
|
1129
|
+
*
|
|
1130
|
+
* When a dropdown closes, Lit's async update cycle may call `dialog.close()`
|
|
1131
|
+
* too late — the browser's native focus restoration (back to `document.body`)
|
|
1132
|
+
* can race with the `requestAnimationFrame` in {@link restoreTriggerAfterClose},
|
|
1133
|
+
* stealing focus back to `body` after it was already placed on the trigger.
|
|
1134
|
+
*
|
|
1135
|
+
* Calling this *before* `restoreTriggerAfterClose` ensures the dialog's native
|
|
1136
|
+
* focus restore fires first, so the rAF wins the race.
|
|
1137
|
+
*
|
|
1138
|
+
* @param {HTMLElement} dropdown - The `auro-dropdown` element whose bib may
|
|
1139
|
+
* contain a `<dialog>`.
|
|
1140
|
+
*/
|
|
1141
|
+
function closeFullscreenDialog(dropdown) {
|
|
1142
|
+
const bibEl = dropdown.bibElement && dropdown.bibElement.value;
|
|
1143
|
+
if (bibEl) {
|
|
1144
|
+
bibEl.close();
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1127
1148
|
/**
|
|
1128
1149
|
* Restores the dropdown trigger after a fullscreen dialog closes.
|
|
1129
1150
|
*
|
|
@@ -1255,7 +1276,7 @@ function isClearBtnFocused(ctx, clearBtn = getClearBtn(ctx)) {
|
|
|
1255
1276
|
}
|
|
1256
1277
|
|
|
1257
1278
|
const comboboxKeyboardStrategy = {
|
|
1258
|
-
|
|
1279
|
+
Enter(component, evt, ctx) {
|
|
1259
1280
|
// If the clear button has focus, let the browser activate it normally.
|
|
1260
1281
|
// stopPropagation prevents parent containers (e.g., forms) from treating
|
|
1261
1282
|
// Enter as a submit, but we must NOT call preventDefault — that would
|
|
@@ -1266,11 +1287,15 @@ const comboboxKeyboardStrategy = {
|
|
|
1266
1287
|
}
|
|
1267
1288
|
|
|
1268
1289
|
if (ctx.isExpanded && component.optionActive) {
|
|
1269
|
-
component.menu.makeSelection();
|
|
1270
|
-
await component.updateComplete;
|
|
1271
1290
|
evt.preventDefault();
|
|
1272
1291
|
evt.stopPropagation();
|
|
1273
|
-
|
|
1292
|
+
// Set flags before makeSelection so the showBib guard and the
|
|
1293
|
+
// auroDropdown-toggled close handler both see them when the value
|
|
1294
|
+
// change propagates through Lit's microtask update cycle.
|
|
1295
|
+
component._focusClearBtnAfterClose = true;
|
|
1296
|
+
component._clearBtnFocusPending = true;
|
|
1297
|
+
component.menu.makeSelection();
|
|
1298
|
+
component.hideBib();
|
|
1274
1299
|
} else {
|
|
1275
1300
|
// Prevent the keypress from bubbling to parent containers (e.g., forms)
|
|
1276
1301
|
// which could interpret Enter as a submit or trigger other unintended behavior.
|
|
@@ -5011,7 +5036,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
|
|
|
5011
5036
|
}
|
|
5012
5037
|
};
|
|
5013
5038
|
|
|
5014
|
-
var formkitVersion$2 = '
|
|
5039
|
+
var formkitVersion$2 = '202603272025';
|
|
5015
5040
|
|
|
5016
5041
|
let AuroElement$2 = class AuroElement extends i$4 {
|
|
5017
5042
|
static get properties() {
|
|
@@ -12775,7 +12800,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
|
|
|
12775
12800
|
}
|
|
12776
12801
|
};
|
|
12777
12802
|
|
|
12778
|
-
var formkitVersion$1 = '
|
|
12803
|
+
var formkitVersion$1 = '202603272025';
|
|
12779
12804
|
|
|
12780
12805
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12781
12806
|
// See LICENSE in the project root for license information.
|
|
@@ -13814,7 +13839,7 @@ class AuroBibtemplate extends i$4 {
|
|
|
13814
13839
|
}
|
|
13815
13840
|
}
|
|
13816
13841
|
|
|
13817
|
-
var formkitVersion = '
|
|
13842
|
+
var formkitVersion = '202603272025';
|
|
13818
13843
|
|
|
13819
13844
|
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}`;
|
|
13820
13845
|
|
|
@@ -14900,6 +14925,8 @@ class AuroCombobox extends AuroElement {
|
|
|
14900
14925
|
// during fullscreen open to prevent touch pass-through.
|
|
14901
14926
|
this.menu.style.pointerEvents = '';
|
|
14902
14927
|
|
|
14928
|
+
closeFullscreenDialog(this.dropdown);
|
|
14929
|
+
|
|
14903
14930
|
const shouldFocusClearBtn = this._focusClearBtnAfterClose;
|
|
14904
14931
|
this._focusClearBtnAfterClose = false;
|
|
14905
14932
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export namespace comboboxKeyboardStrategy {
|
|
2
|
-
function Enter(component: any, evt: any, ctx: any):
|
|
2
|
+
function Enter(component: any, evt: any, ctx: any): void;
|
|
3
3
|
function Tab(component: any, evt: any, ctx: any): void;
|
|
4
4
|
function ArrowUp(component: any, evt: any, ctx: any): void;
|
|
5
5
|
function ArrowDown(component: any, evt: any, ctx: any): void;
|
|
@@ -1087,6 +1087,27 @@ function guardTouchPassthrough(element) {
|
|
|
1087
1087
|
}, { once: true });
|
|
1088
1088
|
}
|
|
1089
1089
|
|
|
1090
|
+
/**
|
|
1091
|
+
* Closes the fullscreen dialog element synchronously.
|
|
1092
|
+
*
|
|
1093
|
+
* When a dropdown closes, Lit's async update cycle may call `dialog.close()`
|
|
1094
|
+
* too late — the browser's native focus restoration (back to `document.body`)
|
|
1095
|
+
* can race with the `requestAnimationFrame` in {@link restoreTriggerAfterClose},
|
|
1096
|
+
* stealing focus back to `body` after it was already placed on the trigger.
|
|
1097
|
+
*
|
|
1098
|
+
* Calling this *before* `restoreTriggerAfterClose` ensures the dialog's native
|
|
1099
|
+
* focus restore fires first, so the rAF wins the race.
|
|
1100
|
+
*
|
|
1101
|
+
* @param {HTMLElement} dropdown - The `auro-dropdown` element whose bib may
|
|
1102
|
+
* contain a `<dialog>`.
|
|
1103
|
+
*/
|
|
1104
|
+
function closeFullscreenDialog(dropdown) {
|
|
1105
|
+
const bibEl = dropdown.bibElement && dropdown.bibElement.value;
|
|
1106
|
+
if (bibEl) {
|
|
1107
|
+
bibEl.close();
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1090
1111
|
/**
|
|
1091
1112
|
* Restores the dropdown trigger after a fullscreen dialog closes.
|
|
1092
1113
|
*
|
|
@@ -1212,7 +1233,7 @@ function isClearBtnFocused(ctx, clearBtn = getClearBtn(ctx)) {
|
|
|
1212
1233
|
}
|
|
1213
1234
|
|
|
1214
1235
|
const comboboxKeyboardStrategy = {
|
|
1215
|
-
|
|
1236
|
+
Enter(component, evt, ctx) {
|
|
1216
1237
|
// If the clear button has focus, let the browser activate it normally.
|
|
1217
1238
|
// stopPropagation prevents parent containers (e.g., forms) from treating
|
|
1218
1239
|
// Enter as a submit, but we must NOT call preventDefault — that would
|
|
@@ -1223,11 +1244,15 @@ const comboboxKeyboardStrategy = {
|
|
|
1223
1244
|
}
|
|
1224
1245
|
|
|
1225
1246
|
if (ctx.isExpanded && component.optionActive) {
|
|
1226
|
-
component.menu.makeSelection();
|
|
1227
|
-
await component.updateComplete;
|
|
1228
1247
|
evt.preventDefault();
|
|
1229
1248
|
evt.stopPropagation();
|
|
1230
|
-
|
|
1249
|
+
// Set flags before makeSelection so the showBib guard and the
|
|
1250
|
+
// auroDropdown-toggled close handler both see them when the value
|
|
1251
|
+
// change propagates through Lit's microtask update cycle.
|
|
1252
|
+
component._focusClearBtnAfterClose = true;
|
|
1253
|
+
component._clearBtnFocusPending = true;
|
|
1254
|
+
component.menu.makeSelection();
|
|
1255
|
+
component.hideBib();
|
|
1231
1256
|
} else {
|
|
1232
1257
|
// Prevent the keypress from bubbling to parent containers (e.g., forms)
|
|
1233
1258
|
// which could interpret Enter as a submit or trigger other unintended behavior.
|
|
@@ -4944,7 +4969,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4944
4969
|
}
|
|
4945
4970
|
};
|
|
4946
4971
|
|
|
4947
|
-
var formkitVersion$2 = '
|
|
4972
|
+
var formkitVersion$2 = '202603272025';
|
|
4948
4973
|
|
|
4949
4974
|
let AuroElement$2 = class AuroElement extends LitElement {
|
|
4950
4975
|
static get properties() {
|
|
@@ -12701,7 +12726,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
12701
12726
|
}
|
|
12702
12727
|
};
|
|
12703
12728
|
|
|
12704
|
-
var formkitVersion$1 = '
|
|
12729
|
+
var formkitVersion$1 = '202603272025';
|
|
12705
12730
|
|
|
12706
12731
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12707
12732
|
// See LICENSE in the project root for license information.
|
|
@@ -13740,7 +13765,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
13740
13765
|
}
|
|
13741
13766
|
}
|
|
13742
13767
|
|
|
13743
|
-
var formkitVersion = '
|
|
13768
|
+
var formkitVersion = '202603272025';
|
|
13744
13769
|
|
|
13745
13770
|
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}`;
|
|
13746
13771
|
|
|
@@ -14826,6 +14851,8 @@ class AuroCombobox extends AuroElement {
|
|
|
14826
14851
|
// during fullscreen open to prevent touch pass-through.
|
|
14827
14852
|
this.menu.style.pointerEvents = '';
|
|
14828
14853
|
|
|
14854
|
+
closeFullscreenDialog(this.dropdown);
|
|
14855
|
+
|
|
14829
14856
|
const shouldFocusClearBtn = this._focusClearBtnAfterClose;
|
|
14830
14857
|
this._focusClearBtnAfterClose = false;
|
|
14831
14858
|
|
|
@@ -1087,6 +1087,27 @@ function guardTouchPassthrough(element) {
|
|
|
1087
1087
|
}, { once: true });
|
|
1088
1088
|
}
|
|
1089
1089
|
|
|
1090
|
+
/**
|
|
1091
|
+
* Closes the fullscreen dialog element synchronously.
|
|
1092
|
+
*
|
|
1093
|
+
* When a dropdown closes, Lit's async update cycle may call `dialog.close()`
|
|
1094
|
+
* too late — the browser's native focus restoration (back to `document.body`)
|
|
1095
|
+
* can race with the `requestAnimationFrame` in {@link restoreTriggerAfterClose},
|
|
1096
|
+
* stealing focus back to `body` after it was already placed on the trigger.
|
|
1097
|
+
*
|
|
1098
|
+
* Calling this *before* `restoreTriggerAfterClose` ensures the dialog's native
|
|
1099
|
+
* focus restore fires first, so the rAF wins the race.
|
|
1100
|
+
*
|
|
1101
|
+
* @param {HTMLElement} dropdown - The `auro-dropdown` element whose bib may
|
|
1102
|
+
* contain a `<dialog>`.
|
|
1103
|
+
*/
|
|
1104
|
+
function closeFullscreenDialog(dropdown) {
|
|
1105
|
+
const bibEl = dropdown.bibElement && dropdown.bibElement.value;
|
|
1106
|
+
if (bibEl) {
|
|
1107
|
+
bibEl.close();
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1090
1111
|
/**
|
|
1091
1112
|
* Restores the dropdown trigger after a fullscreen dialog closes.
|
|
1092
1113
|
*
|
|
@@ -1212,7 +1233,7 @@ function isClearBtnFocused(ctx, clearBtn = getClearBtn(ctx)) {
|
|
|
1212
1233
|
}
|
|
1213
1234
|
|
|
1214
1235
|
const comboboxKeyboardStrategy = {
|
|
1215
|
-
|
|
1236
|
+
Enter(component, evt, ctx) {
|
|
1216
1237
|
// If the clear button has focus, let the browser activate it normally.
|
|
1217
1238
|
// stopPropagation prevents parent containers (e.g., forms) from treating
|
|
1218
1239
|
// Enter as a submit, but we must NOT call preventDefault — that would
|
|
@@ -1223,11 +1244,15 @@ const comboboxKeyboardStrategy = {
|
|
|
1223
1244
|
}
|
|
1224
1245
|
|
|
1225
1246
|
if (ctx.isExpanded && component.optionActive) {
|
|
1226
|
-
component.menu.makeSelection();
|
|
1227
|
-
await component.updateComplete;
|
|
1228
1247
|
evt.preventDefault();
|
|
1229
1248
|
evt.stopPropagation();
|
|
1230
|
-
|
|
1249
|
+
// Set flags before makeSelection so the showBib guard and the
|
|
1250
|
+
// auroDropdown-toggled close handler both see them when the value
|
|
1251
|
+
// change propagates through Lit's microtask update cycle.
|
|
1252
|
+
component._focusClearBtnAfterClose = true;
|
|
1253
|
+
component._clearBtnFocusPending = true;
|
|
1254
|
+
component.menu.makeSelection();
|
|
1255
|
+
component.hideBib();
|
|
1231
1256
|
} else {
|
|
1232
1257
|
// Prevent the keypress from bubbling to parent containers (e.g., forms)
|
|
1233
1258
|
// which could interpret Enter as a submit or trigger other unintended behavior.
|
|
@@ -4944,7 +4969,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4944
4969
|
}
|
|
4945
4970
|
};
|
|
4946
4971
|
|
|
4947
|
-
var formkitVersion$2 = '
|
|
4972
|
+
var formkitVersion$2 = '202603272025';
|
|
4948
4973
|
|
|
4949
4974
|
let AuroElement$2 = class AuroElement extends LitElement {
|
|
4950
4975
|
static get properties() {
|
|
@@ -12701,7 +12726,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
12701
12726
|
}
|
|
12702
12727
|
};
|
|
12703
12728
|
|
|
12704
|
-
var formkitVersion$1 = '
|
|
12729
|
+
var formkitVersion$1 = '202603272025';
|
|
12705
12730
|
|
|
12706
12731
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12707
12732
|
// See LICENSE in the project root for license information.
|
|
@@ -13740,7 +13765,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
13740
13765
|
}
|
|
13741
13766
|
}
|
|
13742
13767
|
|
|
13743
|
-
var formkitVersion = '
|
|
13768
|
+
var formkitVersion = '202603272025';
|
|
13744
13769
|
|
|
13745
13770
|
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}`;
|
|
13746
13771
|
|
|
@@ -14826,6 +14851,8 @@ class AuroCombobox extends AuroElement {
|
|
|
14826
14851
|
// during fullscreen open to prevent touch pass-through.
|
|
14827
14852
|
this.menu.style.pointerEvents = '';
|
|
14828
14853
|
|
|
14854
|
+
closeFullscreenDialog(this.dropdown);
|
|
14855
|
+
|
|
14829
14856
|
const shouldFocusClearBtn = this._focusClearBtnAfterClose;
|
|
14830
14857
|
this._focusClearBtnAfterClose = false;
|
|
14831
14858
|
|
|
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
1470
1470
|
}
|
|
1471
1471
|
};
|
|
1472
1472
|
|
|
1473
|
-
var formkitVersion$1 = '
|
|
1473
|
+
var formkitVersion$1 = '202603272025';
|
|
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 = '
|
|
5520
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
1473
|
+
var formkitVersion$1 = '202603272025';
|
|
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 = '
|
|
5520
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
1423
|
+
var formkitVersion$1 = '202603272025';
|
|
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 = '
|
|
5452
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
1423
|
+
var formkitVersion$1 = '202603272025';
|
|
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 = '
|
|
5452
|
+
var formkitVersion = '202603272025';
|
|
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 = '
|
|
9552
|
+
var formkitVersion$2 = '202603272025';
|
|
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 = '
|
|
13633
|
+
var formkitVersion$1 = '202603272025';
|
|
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 = '
|
|
21397
|
+
var formkitVersion = '202603272025';
|
|
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.
|
|
@@ -9290,7 +9290,7 @@ class AuroBibtemplate extends i$1 {
|
|
|
9290
9290
|
}
|
|
9291
9291
|
}
|
|
9292
9292
|
|
|
9293
|
-
var formkitVersion$2 = '
|
|
9293
|
+
var formkitVersion$2 = '202603272025';
|
|
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 = '
|
|
13374
|
+
var formkitVersion$1 = '202603272025';
|
|
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 = '
|
|
21138
|
+
var formkitVersion = '202603272025';
|
|
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.
|