@aurodesignsystem-dev/auro-formkit 0.0.0-pr1491.8 → 0.0.0-pr1492.0
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/customize.min.js +1 -1
- package/components/checkbox/demo/getting-started.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/customize.min.js +3 -3
- package/components/combobox/demo/getting-started.min.js +3 -3
- package/components/combobox/demo/index.min.js +3 -3
- package/components/combobox/dist/index.js +3 -3
- package/components/combobox/dist/registered.js +3 -3
- package/components/counter/demo/customize.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +1 -1
- package/components/counter/dist/registered.js +1 -1
- package/components/datepicker/demo/api.md +52 -52
- package/components/datepicker/demo/index.min.js +110 -56
- package/components/datepicker/dist/index.js +110 -56
- package/components/datepicker/dist/registered.js +110 -56
- package/components/datepicker/dist/src/auro-calendar-cell.d.ts +1 -1
- package/components/datepicker/dist/src/auro-calendar-month.d.ts +6 -0
- package/components/datepicker/dist/src/auro-calendar.d.ts +6 -2
- package/components/datepicker/dist/src/auro-datepicker.d.ts +24 -5
- package/components/dropdown/demo/customize.min.js +1 -1
- package/components/dropdown/demo/getting-started.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/customize.min.js +126 -72
- package/components/form/demo/getting-started.min.js +126 -72
- package/components/form/demo/index.min.js +126 -72
- package/components/form/demo/registerDemoDeps.min.js +126 -72
- package/components/input/demo/customize.min.js +1 -1
- package/components/input/demo/getting-started.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/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/customize.min.js +2 -2
- package/components/select/demo/getting-started.min.js +2 -2
- package/components/select/demo/index.min.js +2 -2
- package/components/select/dist/index.js +2 -2
- package/components/select/dist/registered.js +2 -2
- package/custom-elements.json +1508 -1470
- package/package.json +1 -1
|
@@ -5135,7 +5135,7 @@ function normalizeDates$3(context, ...dates) {
|
|
|
5135
5135
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
5136
5136
|
* //=> Tue Sep 02 2014 00:00:00
|
|
5137
5137
|
*/
|
|
5138
|
-
function startOfDay$
|
|
5138
|
+
function startOfDay$4(date, options) {
|
|
5139
5139
|
const _date = toDate$3(date, options?.in);
|
|
5140
5140
|
_date.setHours(0, 0, 0, 0);
|
|
5141
5141
|
return _date;
|
|
@@ -5183,8 +5183,8 @@ function differenceInCalendarDays$3(laterDate, earlierDate, options) {
|
|
|
5183
5183
|
earlierDate,
|
|
5184
5184
|
);
|
|
5185
5185
|
|
|
5186
|
-
const laterStartOfDay = startOfDay$
|
|
5187
|
-
const earlierStartOfDay = startOfDay$
|
|
5186
|
+
const laterStartOfDay = startOfDay$4(laterDate_);
|
|
5187
|
+
const earlierStartOfDay = startOfDay$4(earlierDate_);
|
|
5188
5188
|
|
|
5189
5189
|
const laterTimestamp =
|
|
5190
5190
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$3(laterStartOfDay);
|
|
@@ -12249,7 +12249,7 @@ let AuroHelpText$9 = class AuroHelpText extends i$3 {
|
|
|
12249
12249
|
}
|
|
12250
12250
|
};
|
|
12251
12251
|
|
|
12252
|
-
var formkitVersion$9 = '
|
|
12252
|
+
var formkitVersion$9 = '202606031753';
|
|
12253
12253
|
|
|
12254
12254
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12255
12255
|
// See LICENSE in the project root for license information.
|
|
@@ -14337,7 +14337,7 @@ function normalizeDates$1(context, ...dates) {
|
|
|
14337
14337
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
14338
14338
|
* //=> Tue Sep 02 2014 00:00:00
|
|
14339
14339
|
*/
|
|
14340
|
-
function startOfDay$
|
|
14340
|
+
function startOfDay$2(date, options) {
|
|
14341
14341
|
const _date = toDate$1(date, options?.in);
|
|
14342
14342
|
_date.setHours(0, 0, 0, 0);
|
|
14343
14343
|
return _date;
|
|
@@ -14385,8 +14385,8 @@ function differenceInCalendarDays$1(laterDate, earlierDate, options) {
|
|
|
14385
14385
|
earlierDate,
|
|
14386
14386
|
);
|
|
14387
14387
|
|
|
14388
|
-
const laterStartOfDay = startOfDay$
|
|
14389
|
-
const earlierStartOfDay = startOfDay$
|
|
14388
|
+
const laterStartOfDay = startOfDay$2(laterDate_);
|
|
14389
|
+
const earlierStartOfDay = startOfDay$2(earlierDate_);
|
|
14390
14390
|
|
|
14391
14391
|
const laterTimestamp =
|
|
14392
14392
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$1(laterStartOfDay);
|
|
@@ -23761,6 +23761,7 @@ class UtilitiesCalendarRender {
|
|
|
23761
23761
|
.dateTo="${elem.dateTo}"
|
|
23762
23762
|
.dateFrom="${elem.dateFrom}"
|
|
23763
23763
|
.locale="${elem.locale}"
|
|
23764
|
+
.localeCode="${elem.localeCode}"
|
|
23764
23765
|
.monthNames="${elem.monthNames}"
|
|
23765
23766
|
month="${month}"
|
|
23766
23767
|
year="${year}"
|
|
@@ -23885,8 +23886,8 @@ class RangeDatepickerCell extends i$3 {
|
|
|
23885
23886
|
const parsedDateFrom = parseInt(dateFrom, 10);
|
|
23886
23887
|
const parsedDateTo = parseInt(dateTo, 10);
|
|
23887
23888
|
if (day) {
|
|
23888
|
-
if (getTime(startOfDay$
|
|
23889
|
-
getTime(startOfDay$
|
|
23889
|
+
if (getTime(startOfDay$2(parsedDateTo * 1000)) / 1000 === day.date ||
|
|
23890
|
+
getTime(startOfDay$2(parsedDateFrom * 1000)) / 1000 === day.date) {
|
|
23890
23891
|
this.selected = true;
|
|
23891
23892
|
}
|
|
23892
23893
|
if (((hoveredDate === day.date || day.date < hoveredDate) &&
|
|
@@ -24074,7 +24075,7 @@ class RangeDatepickerCalendar extends i$3 {
|
|
|
24074
24075
|
this.dayNamesOfTheWeek = [];
|
|
24075
24076
|
this.daysOfMonth = [];
|
|
24076
24077
|
this._locale = null;
|
|
24077
|
-
this.currentDate = parseInt(format$1(startOfDay$
|
|
24078
|
+
this.currentDate = parseInt(format$1(startOfDay$2(Date.now()), 't'), 10);
|
|
24078
24079
|
this.localeChanged();
|
|
24079
24080
|
this.yearAndMonthChanged(this.year, this.month);
|
|
24080
24081
|
}
|
|
@@ -24568,6 +24569,12 @@ let s$3 = class s{registerComponent(e,t){customElements.get(e)||customElements.d
|
|
|
24568
24569
|
|
|
24569
24570
|
var popoverVersion = '6.0.1';
|
|
24570
24571
|
|
|
24572
|
+
const startOfDay$1 = (ms) => {
|
|
24573
|
+
const date = new Date(ms);
|
|
24574
|
+
date.setHours(0, 0, 0, 0);
|
|
24575
|
+
return date.getTime();
|
|
24576
|
+
};
|
|
24577
|
+
|
|
24571
24578
|
/* eslint-disable curly, max-lines, no-underscore-dangle, no-magic-numbers, no-underscore-dangle, max-params, no-void, init-declarations, no-extra-parens, arrow-parens, max-lines, line-comment-position, no-inline-comments, lit/binding-positions, lit/no-invalid-html */
|
|
24572
24579
|
|
|
24573
24580
|
class AuroCalendarCell extends i$3 {
|
|
@@ -24620,14 +24627,14 @@ class AuroCalendarCell extends i$3 {
|
|
|
24620
24627
|
disabledDays: { type: Array },
|
|
24621
24628
|
hoveredDate: { type: String },
|
|
24622
24629
|
isCurrentDate: { type: Boolean },
|
|
24623
|
-
locale: { type:
|
|
24630
|
+
locale: { type: String },
|
|
24624
24631
|
dateStr: { type: String },
|
|
24625
24632
|
renderForDateSlot: { type: Boolean }
|
|
24626
24633
|
};
|
|
24627
24634
|
}
|
|
24628
24635
|
|
|
24629
24636
|
get locale() {
|
|
24630
|
-
return this._locale
|
|
24637
|
+
return this._locale;
|
|
24631
24638
|
}
|
|
24632
24639
|
|
|
24633
24640
|
set locale(value) {
|
|
@@ -24821,9 +24828,12 @@ class AuroCalendarCell extends i$3 {
|
|
|
24821
24828
|
if (date === undefined) {
|
|
24822
24829
|
return '';
|
|
24823
24830
|
}
|
|
24824
|
-
return
|
|
24825
|
-
|
|
24826
|
-
|
|
24831
|
+
return new Intl.DateTimeFormat(this.locale, {
|
|
24832
|
+
weekday: 'long',
|
|
24833
|
+
year: 'numeric',
|
|
24834
|
+
month: 'long',
|
|
24835
|
+
day: 'numeric'
|
|
24836
|
+
}).format(new Date(date * 1000));
|
|
24827
24837
|
}
|
|
24828
24838
|
|
|
24829
24839
|
/**
|
|
@@ -24989,6 +24999,13 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
24989
24999
|
monthFirst: {
|
|
24990
25000
|
type: Boolean,
|
|
24991
25001
|
reflect: true
|
|
25002
|
+
},
|
|
25003
|
+
|
|
25004
|
+
/**
|
|
25005
|
+
* BCP 47 locale tag for calendar localization.
|
|
25006
|
+
*/
|
|
25007
|
+
localeCode: {
|
|
25008
|
+
type: String
|
|
24992
25009
|
}
|
|
24993
25010
|
};
|
|
24994
25011
|
}
|
|
@@ -25031,20 +25048,28 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25031
25048
|
* @private
|
|
25032
25049
|
* @returns {void}
|
|
25033
25050
|
*/
|
|
25051
|
+
updated(changedProperties) {
|
|
25052
|
+
super.updated(changedProperties);
|
|
25053
|
+
if (changedProperties.has('localeCode')) {
|
|
25054
|
+
this.localeChanged();
|
|
25055
|
+
}
|
|
25056
|
+
}
|
|
25057
|
+
|
|
25034
25058
|
localeChanged() {
|
|
25035
|
-
const
|
|
25036
|
-
|
|
25037
|
-
|
|
25059
|
+
const fmt = new Intl.DateTimeFormat(this.localeCode || 'en-US', { weekday: 'narrow' });
|
|
25060
|
+
// Jan 5 2025 is a known Sunday; iterate to get all 7 narrow day names starting from Sunday
|
|
25061
|
+
const sundayMs = new Date(2025, 0, 5).getTime();
|
|
25062
|
+
const msPerDay = 864e5;
|
|
25063
|
+
const allDays = [];
|
|
25064
|
+
for (let day = 0; day < 7; day += 1) {
|
|
25065
|
+
const offsetMs = day * msPerDay;
|
|
25066
|
+
allDays.push(fmt.format(new Date(sundayMs + offsetMs)));
|
|
25038
25067
|
}
|
|
25039
|
-
|
|
25040
|
-
|
|
25041
|
-
|
|
25042
|
-
const
|
|
25043
|
-
|
|
25044
|
-
.slice()
|
|
25045
|
-
.splice(firstDayOfWeek, dayNamesOfTheWeek.length)
|
|
25046
|
-
.concat(tmp);
|
|
25047
|
-
this.dayNamesOfTheWeek = newDayNamesOfTheWeek;
|
|
25068
|
+
|
|
25069
|
+
// Currently locale is always enUS by default, so this will not cause any change.
|
|
25070
|
+
// Week starts on Monday (index 1 in the Sunday-first array)
|
|
25071
|
+
const firstDayOfWeek = this.locale?.options?.weekStartsOn || 1;
|
|
25072
|
+
this.dayNamesOfTheWeek = allDays.slice(firstDayOfWeek).concat(allDays.slice(0, firstDayOfWeek));
|
|
25048
25073
|
}
|
|
25049
25074
|
|
|
25050
25075
|
renderDay(day) {
|
|
@@ -25060,7 +25085,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25060
25085
|
.hoveredDate="${this.hoveredDate}"
|
|
25061
25086
|
.dateTo="${this.dateTo}"
|
|
25062
25087
|
.dateFrom="${this.dateFrom}"
|
|
25063
|
-
.locale="${this.
|
|
25088
|
+
.locale="${this.localeCode}"
|
|
25064
25089
|
.day="${day}"
|
|
25065
25090
|
?isCurrentDate="${this.isCurrentDate(day)}"
|
|
25066
25091
|
@date-is-selected="${this.handleDateSelected}"
|
|
@@ -25909,7 +25934,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
|
|
|
25909
25934
|
}
|
|
25910
25935
|
};
|
|
25911
25936
|
|
|
25912
|
-
var formkitVersion$2$1 = '
|
|
25937
|
+
var formkitVersion$2$1 = '202606031753';
|
|
25913
25938
|
|
|
25914
25939
|
let l$1$2 = 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$6`${s$8(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1$2 = 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$1$2 = 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$1$3=i$5`: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}
|
|
25915
25940
|
`,u$4$1=i$5`.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}}
|
|
@@ -26052,7 +26077,6 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
26052
26077
|
|
|
26053
26078
|
static get properties() {
|
|
26054
26079
|
return {
|
|
26055
|
-
|
|
26056
26080
|
/**
|
|
26057
26081
|
* The last month that may be displayed in the calendar.
|
|
26058
26082
|
*/
|
|
@@ -26142,8 +26166,6 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
26142
26166
|
},
|
|
26143
26167
|
|
|
26144
26168
|
/**
|
|
26145
|
-
* If true, the month will be displayed before the year in the calendar header.
|
|
26146
|
-
* Passed to AuroCalendarMonth via utilitesCalendarRender.
|
|
26147
26169
|
* @private
|
|
26148
26170
|
*/
|
|
26149
26171
|
monthFirst: {
|
|
@@ -26164,10 +26186,21 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
26164
26186
|
visible: {
|
|
26165
26187
|
type: Boolean,
|
|
26166
26188
|
reflect: false
|
|
26189
|
+
},
|
|
26190
|
+
|
|
26191
|
+
/**
|
|
26192
|
+
* BCP 47 locale tag for calendar localization.
|
|
26193
|
+
*/
|
|
26194
|
+
localeCode: {
|
|
26195
|
+
type: String
|
|
26167
26196
|
}
|
|
26168
26197
|
};
|
|
26169
26198
|
}
|
|
26170
26199
|
|
|
26200
|
+
localeChanged() {
|
|
26201
|
+
// Locale propagation handled via Lit property bindings to child calendar-month elements.
|
|
26202
|
+
}
|
|
26203
|
+
|
|
26171
26204
|
// ─── Read-only *Object properties ─────────────────────────────────────────
|
|
26172
26205
|
|
|
26173
26206
|
/** @returns {Date|undefined} */
|
|
@@ -26294,9 +26327,7 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
26294
26327
|
*/
|
|
26295
26328
|
focusCloseButton() {
|
|
26296
26329
|
const bibtemplate = this.shadowRoot.querySelector(this.bibtemplateTag._$litStatic$);
|
|
26297
|
-
if (bibtemplate)
|
|
26298
|
-
bibtemplate.focusCloseButton();
|
|
26299
|
-
}
|
|
26330
|
+
if (bibtemplate) bibtemplate.focusCloseButton();
|
|
26300
26331
|
}
|
|
26301
26332
|
|
|
26302
26333
|
/**
|
|
@@ -30273,7 +30304,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
|
|
|
30273
30304
|
}
|
|
30274
30305
|
};
|
|
30275
30306
|
|
|
30276
|
-
var formkitVersion$1$2 = '
|
|
30307
|
+
var formkitVersion$1$2 = '202606031753';
|
|
30277
30308
|
|
|
30278
30309
|
let AuroElement$2$2 = class AuroElement extends i$3 {
|
|
30279
30310
|
static get properties() {
|
|
@@ -36410,7 +36441,7 @@ function normalizeDates$2(context, ...dates) {
|
|
|
36410
36441
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
36411
36442
|
* //=> Tue Sep 02 2014 00:00:00
|
|
36412
36443
|
*/
|
|
36413
|
-
function startOfDay$
|
|
36444
|
+
function startOfDay$3(date, options) {
|
|
36414
36445
|
const _date = toDate$2(date, options?.in);
|
|
36415
36446
|
_date.setHours(0, 0, 0, 0);
|
|
36416
36447
|
return _date;
|
|
@@ -36458,8 +36489,8 @@ function differenceInCalendarDays$2(laterDate, earlierDate, options) {
|
|
|
36458
36489
|
earlierDate,
|
|
36459
36490
|
);
|
|
36460
36491
|
|
|
36461
|
-
const laterStartOfDay = startOfDay$
|
|
36462
|
-
const earlierStartOfDay = startOfDay$
|
|
36492
|
+
const laterStartOfDay = startOfDay$3(laterDate_);
|
|
36493
|
+
const earlierStartOfDay = startOfDay$3(earlierDate_);
|
|
36463
36494
|
|
|
36464
36495
|
const laterTimestamp =
|
|
36465
36496
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$2(laterStartOfDay);
|
|
@@ -43524,7 +43555,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
|
|
|
43524
43555
|
}
|
|
43525
43556
|
};
|
|
43526
43557
|
|
|
43527
|
-
var formkitVersion$8 = '
|
|
43558
|
+
var formkitVersion$8 = '202606031753';
|
|
43528
43559
|
|
|
43529
43560
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
43530
43561
|
// See LICENSE in the project root for license information.
|
|
@@ -44896,6 +44927,11 @@ const datepickerKeyboardStrategy = {
|
|
|
44896
44927
|
// See LICENSE in the project root for license information.
|
|
44897
44928
|
|
|
44898
44929
|
|
|
44930
|
+
const getMonthNamesFromLocale = (locale) => {
|
|
44931
|
+
const fmt = new Intl.DateTimeFormat(locale || 'en-US', { month: 'long' });
|
|
44932
|
+
return Array.from({ length: 12 }, (_, i) => fmt.format(new Date(2000, i, 1)));
|
|
44933
|
+
};
|
|
44934
|
+
|
|
44899
44935
|
|
|
44900
44936
|
// See https://git.io/JJ6SJ for "How to document your components using JSDoc"
|
|
44901
44937
|
/**
|
|
@@ -44933,7 +44969,6 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
44933
44969
|
delegatesFocus: true,
|
|
44934
44970
|
};
|
|
44935
44971
|
}
|
|
44936
|
-
|
|
44937
44972
|
constructor() {
|
|
44938
44973
|
super();
|
|
44939
44974
|
|
|
@@ -44971,21 +45006,6 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
44971
45006
|
this.calendarEndDate = undefined;
|
|
44972
45007
|
this.calendarFocusDate = this.value;
|
|
44973
45008
|
this.fullscreenBreakpoint = 'sm';
|
|
44974
|
-
this.monthNames = [
|
|
44975
|
-
'January',
|
|
44976
|
-
'February',
|
|
44977
|
-
'March',
|
|
44978
|
-
'April',
|
|
44979
|
-
'May',
|
|
44980
|
-
'June',
|
|
44981
|
-
'July',
|
|
44982
|
-
'August',
|
|
44983
|
-
'September',
|
|
44984
|
-
'October',
|
|
44985
|
-
'November',
|
|
44986
|
-
'December'
|
|
44987
|
-
];
|
|
44988
|
-
|
|
44989
45009
|
// floaterConfig
|
|
44990
45010
|
this.placement = 'bottom-start';
|
|
44991
45011
|
this.offset = 0;
|
|
@@ -45256,12 +45276,20 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
45256
45276
|
},
|
|
45257
45277
|
|
|
45258
45278
|
/**
|
|
45259
|
-
* Names of all 12 months to render in the calendar
|
|
45279
|
+
* Names of all 12 months to render in the calendar.
|
|
45280
|
+
* When omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`).
|
|
45260
45281
|
*/
|
|
45261
45282
|
monthNames: {
|
|
45262
45283
|
type: Array
|
|
45263
45284
|
},
|
|
45264
45285
|
|
|
45286
|
+
/**
|
|
45287
|
+
* @private
|
|
45288
|
+
*/
|
|
45289
|
+
monthFirst: {
|
|
45290
|
+
type: Boolean
|
|
45291
|
+
},
|
|
45292
|
+
|
|
45265
45293
|
/**
|
|
45266
45294
|
* If declared, the bib will NOT flip to an alternate position
|
|
45267
45295
|
* when there isn't enough space in the specified `placement`.
|
|
@@ -45538,9 +45566,8 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
45538
45566
|
}
|
|
45539
45567
|
|
|
45540
45568
|
/**
|
|
45541
|
-
* Common display value wrapper classes.
|
|
45542
45569
|
* @private
|
|
45543
|
-
*
|
|
45570
|
+
* Common display value wrapper classes.
|
|
45544
45571
|
*/
|
|
45545
45572
|
get commonDisplayValueWrapperClasses() {
|
|
45546
45573
|
return {
|
|
@@ -45899,6 +45926,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
45899
45926
|
configureCalendar() {
|
|
45900
45927
|
this.calendar = this.shadowRoot.querySelector('auro-formkit-calendar');
|
|
45901
45928
|
this.calendar.datepicker = this;
|
|
45929
|
+
this.calendar.format = this.format || 'mm/dd/yyyy';
|
|
45902
45930
|
this.calendar.dropdown = this.dropdown;
|
|
45903
45931
|
|
|
45904
45932
|
this.calendar.addEventListener('auroCalendar-dateSelected', () => {
|
|
@@ -46113,16 +46141,40 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46113
46141
|
return this.validity !== undefined && this.validity !== 'valid';
|
|
46114
46142
|
}
|
|
46115
46143
|
|
|
46144
|
+
/**
|
|
46145
|
+
* @private
|
|
46146
|
+
* Lifecycle method used to react to changes in properties.
|
|
46147
|
+
* In this case, we want to update the default month names when the locale changes.
|
|
46148
|
+
* @param {*} changedProperties
|
|
46149
|
+
*/
|
|
46150
|
+
willUpdate(changedProperties) {
|
|
46151
|
+
if (changedProperties.has('locale')) {
|
|
46152
|
+
|
|
46153
|
+
/**
|
|
46154
|
+
* Default month names are derived from the locale,
|
|
46155
|
+
* but can be overridden by the monthNames property.
|
|
46156
|
+
* @private
|
|
46157
|
+
*/
|
|
46158
|
+
this._defaultMonthNames = getMonthNamesFromLocale(this.locale);
|
|
46159
|
+
}
|
|
46160
|
+
}
|
|
46161
|
+
|
|
46116
46162
|
updated(changedProperties) {
|
|
46117
46163
|
if (changedProperties.has('locale')) {
|
|
46118
46164
|
if (!changedProperties.has('format')) {
|
|
46119
46165
|
const previousLocaleFormat = getDateFormatFromLocale$1(changedProperties.get('locale'));
|
|
46120
46166
|
if (!this.format || this.format.toLowerCase() === previousLocaleFormat) {
|
|
46121
46167
|
this.format = getDateFormatFromLocale$1(this.locale);
|
|
46168
|
+
this.monthFirst = this.format.indexOf('mm') < this.format.indexOf('yyyy');
|
|
46122
46169
|
}
|
|
46123
46170
|
}
|
|
46124
46171
|
}
|
|
46125
46172
|
|
|
46173
|
+
if (changedProperties.has('format')) {
|
|
46174
|
+
this.monthFirst = this.format.indexOf('mm') < this.format.indexOf('yyyy');
|
|
46175
|
+
}
|
|
46176
|
+
|
|
46177
|
+
|
|
46126
46178
|
if (changedProperties.has('disabled')) {
|
|
46127
46179
|
if (this.disabled) {
|
|
46128
46180
|
this.previousTabIndex = this.getAttribute('tabindex');
|
|
@@ -46374,6 +46426,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46374
46426
|
if (!this.format) {
|
|
46375
46427
|
this.format = getDateFormatFromLocale$1(this.locale);
|
|
46376
46428
|
}
|
|
46429
|
+
this.monthFirst = this.format.indexOf('mm') < this.format.indexOf('yyyy');
|
|
46377
46430
|
}
|
|
46378
46431
|
|
|
46379
46432
|
// layout render methods
|
|
@@ -46552,7 +46605,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46552
46605
|
?disabled="${this.disabled}"
|
|
46553
46606
|
?required="${this.required}"
|
|
46554
46607
|
?hideLabelVisually="${this.layout !== 'classic'}"
|
|
46555
|
-
format="${this.format}"
|
|
46608
|
+
.format="${this.format}"
|
|
46556
46609
|
locale="${this.locale}"
|
|
46557
46610
|
.max="${this.maxDate}"
|
|
46558
46611
|
.min="${this.minDate}"
|
|
@@ -46641,7 +46694,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46641
46694
|
/**
|
|
46642
46695
|
* Handles click on the clear button.
|
|
46643
46696
|
* @private
|
|
46644
|
-
* @param {MouseEvent} event
|
|
46697
|
+
* @param {MouseEvent} event
|
|
46645
46698
|
* @returns {void}
|
|
46646
46699
|
*/
|
|
46647
46700
|
handleClearClick(event) {
|
|
@@ -46761,10 +46814,11 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46761
46814
|
?largeFullscreenHeadline="${this.largeFullscreenHeadline}"
|
|
46762
46815
|
?noRange="${!this.range}"
|
|
46763
46816
|
.format="${this.format}"
|
|
46764
|
-
.monthFirst="${this.
|
|
46817
|
+
.monthFirst="${this.monthFirst}"
|
|
46765
46818
|
.maxDate="${this.maxDate}"
|
|
46766
46819
|
.minDate="${this.minDate}"
|
|
46767
|
-
.monthNames="${this.monthNames}"
|
|
46820
|
+
.monthNames="${this.monthNames || this._defaultMonthNames}"
|
|
46821
|
+
.localeCode="${this.locale}"
|
|
46768
46822
|
.mobileBreakpoint="${this.mobileBreakpoint}"
|
|
46769
46823
|
part="calendar"
|
|
46770
46824
|
>
|
|
@@ -50692,7 +50746,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$3 {
|
|
|
50692
50746
|
}
|
|
50693
50747
|
};
|
|
50694
50748
|
|
|
50695
|
-
var formkitVersion$7 = '
|
|
50749
|
+
var formkitVersion$7 = '202606031753';
|
|
50696
50750
|
|
|
50697
50751
|
let AuroElement$5 = class AuroElement extends i$3 {
|
|
50698
50752
|
static get properties() {
|
|
@@ -52871,7 +52925,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
|
|
|
52871
52925
|
}
|
|
52872
52926
|
};
|
|
52873
52927
|
|
|
52874
|
-
var formkitVersion$6 = '
|
|
52928
|
+
var formkitVersion$6 = '202606031753';
|
|
52875
52929
|
|
|
52876
52930
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
52877
52931
|
// See LICENSE in the project root for license information.
|
|
@@ -55867,7 +55921,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
|
|
|
55867
55921
|
}
|
|
55868
55922
|
};
|
|
55869
55923
|
|
|
55870
|
-
var formkitVersion$5 = '
|
|
55924
|
+
var formkitVersion$5 = '202606031753';
|
|
55871
55925
|
|
|
55872
55926
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
55873
55927
|
// See LICENSE in the project root for license information.
|
|
@@ -57617,7 +57671,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
|
|
|
57617
57671
|
}
|
|
57618
57672
|
};
|
|
57619
57673
|
|
|
57620
|
-
var formkitVersion$4 = '
|
|
57674
|
+
var formkitVersion$4 = '202606031753';
|
|
57621
57675
|
|
|
57622
57676
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
57623
57677
|
// See LICENSE in the project root for license information.
|
|
@@ -62815,7 +62869,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
62815
62869
|
}
|
|
62816
62870
|
};
|
|
62817
62871
|
|
|
62818
|
-
var formkitVersion$2 = '
|
|
62872
|
+
var formkitVersion$2 = '202606031753';
|
|
62819
62873
|
|
|
62820
62874
|
let AuroElement$2$1 = class AuroElement extends i$3 {
|
|
62821
62875
|
static get properties() {
|
|
@@ -76066,7 +76120,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
|
|
|
76066
76120
|
}
|
|
76067
76121
|
};
|
|
76068
76122
|
|
|
76069
|
-
var formkitVersion$1$1 = '
|
|
76123
|
+
var formkitVersion$1$1 = '202606031753';
|
|
76070
76124
|
|
|
76071
76125
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
76072
76126
|
// See LICENSE in the project root for license information.
|
|
@@ -77183,7 +77237,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
|
|
|
77183
77237
|
}
|
|
77184
77238
|
};
|
|
77185
77239
|
|
|
77186
|
-
var formkitVersion$3 = '
|
|
77240
|
+
var formkitVersion$3 = '202606031753';
|
|
77187
77241
|
|
|
77188
77242
|
var styleCss$1$3 = i$5`.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}`;
|
|
77189
77243
|
|
|
@@ -86253,7 +86307,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
86253
86307
|
}
|
|
86254
86308
|
};
|
|
86255
86309
|
|
|
86256
|
-
var formkitVersion$1 = '
|
|
86310
|
+
var formkitVersion$1 = '202606031753';
|
|
86257
86311
|
|
|
86258
86312
|
class AuroElement extends i$3 {
|
|
86259
86313
|
static get properties() {
|
|
@@ -88006,7 +88060,7 @@ class AuroHelpText extends i$3 {
|
|
|
88006
88060
|
}
|
|
88007
88061
|
}
|
|
88008
88062
|
|
|
88009
|
-
var formkitVersion = '
|
|
88063
|
+
var formkitVersion = '202606031753';
|
|
88010
88064
|
|
|
88011
88065
|
var styleCss = i$5`.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}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);font-weight:var(--wcss-body-default-weight, );line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-default-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-default-emphasized{font-size:var(--wcss-body-default-emphasized-font-size, 1rem);font-weight:var(--wcss-body-default-emphasized-weight, );line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);font-weight:var(--wcss-body-lg-weight, );line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg,.body-lg-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg-emphasized{font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);font-weight:var(--wcss-body-lg-emphasized-weight, );line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, 0.875rem);font-weight:var(--wcss-body-sm-weight, );line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-sm-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-sm-emphasized{font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);font-weight:var(--wcss-body-sm-emphasized-weight, );line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.body-xs{font-size:var(--wcss-body-xs-font-size, 0.75rem);font-weight:var(--wcss-body-xs-weight, );line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs,.body-xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs-emphasized{font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);font-weight:var(--wcss-body-xs-emphasized-weight, );line-height:var(--wcss-body-xs-emphasized-line-height, 1rem)}.body-2xs{font-size:var(--wcss-body-2xs-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-weight, );line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs,.body-2xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-2xs-emphasized{font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-emphasized-weight, );line-height:var(--wcss-body-2xs-emphasized-line-height, 0.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, 300);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, 300);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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
|
|
88012
88066
|
|
|
@@ -12178,7 +12178,7 @@ class AuroHelpText extends i$3 {
|
|
|
12178
12178
|
}
|
|
12179
12179
|
}
|
|
12180
12180
|
|
|
12181
|
-
var formkitVersion = '
|
|
12181
|
+
var formkitVersion = '202606031753';
|
|
12182
12182
|
|
|
12183
12183
|
/**
|
|
12184
12184
|
* @license
|
|
@@ -12178,7 +12178,7 @@ class AuroHelpText extends i$3 {
|
|
|
12178
12178
|
}
|
|
12179
12179
|
}
|
|
12180
12180
|
|
|
12181
|
-
var formkitVersion = '
|
|
12181
|
+
var formkitVersion = '202606031753';
|
|
12182
12182
|
|
|
12183
12183
|
/**
|
|
12184
12184
|
* @license
|
|
@@ -12178,7 +12178,7 @@ class AuroHelpText extends i$3 {
|
|
|
12178
12178
|
}
|
|
12179
12179
|
}
|
|
12180
12180
|
|
|
12181
|
-
var formkitVersion = '
|
|
12181
|
+
var formkitVersion = '202606031753';
|
|
12182
12182
|
|
|
12183
12183
|
/**
|
|
12184
12184
|
* @license
|
|
@@ -12120,7 +12120,7 @@ class AuroHelpText extends LitElement {
|
|
|
12120
12120
|
}
|
|
12121
12121
|
}
|
|
12122
12122
|
|
|
12123
|
-
var formkitVersion = '
|
|
12123
|
+
var formkitVersion = '202606031753';
|
|
12124
12124
|
|
|
12125
12125
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12126
12126
|
// See LICENSE in the project root for license information.
|
|
@@ -12120,7 +12120,7 @@ class AuroHelpText extends LitElement {
|
|
|
12120
12120
|
}
|
|
12121
12121
|
}
|
|
12122
12122
|
|
|
12123
|
-
var formkitVersion = '
|
|
12123
|
+
var formkitVersion = '202606031753';
|
|
12124
12124
|
|
|
12125
12125
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12126
12126
|
// See LICENSE in the project root for license information.
|
|
@@ -1212,7 +1212,7 @@ class AuroHelpText extends i$2 {
|
|
|
1212
1212
|
}
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
|
-
var formkitVersion = '
|
|
1215
|
+
var formkitVersion = '202606031753';
|
|
1216
1216
|
|
|
1217
1217
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1218
1218
|
// See LICENSE in the project root for license information.
|
|
@@ -1151,7 +1151,7 @@ class AuroHelpText extends LitElement {
|
|
|
1151
1151
|
}
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
-
var formkitVersion = '
|
|
1154
|
+
var formkitVersion = '202606031753';
|
|
1155
1155
|
|
|
1156
1156
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1157
1157
|
// See LICENSE in the project root for license information.
|
|
@@ -1151,7 +1151,7 @@ class AuroHelpText extends LitElement {
|
|
|
1151
1151
|
}
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
-
var formkitVersion = '
|
|
1154
|
+
var formkitVersion = '202606031753';
|
|
1155
1155
|
|
|
1156
1156
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1157
1157
|
// See LICENSE in the project root for license information.
|