@aurodesignsystem-dev/auro-formkit 0.0.0-pr1483.5 → 0.0.0-pr1483.6
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 +138 -61
- package/components/datepicker/dist/index.js +138 -61
- package/components/datepicker/dist/registered.js +138 -61
- package/components/datepicker/dist/src/auro-calendar-cell.d.ts +3 -1
- package/components/datepicker/dist/src/auro-calendar-month.d.ts +23 -0
- package/components/datepicker/dist/src/auro-calendar.d.ts +13 -0
- package/components/datepicker/dist/src/auro-datepicker.d.ts +11 -3
- 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 +154 -77
- package/components/form/demo/getting-started.min.js +154 -77
- package/components/form/demo/index.min.js +154 -77
- package/components/form/demo/registerDemoDeps.min.js +154 -77
- 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 +403 -332
- 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 = '202606041922';
|
|
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 || 'en-US';
|
|
24631
24638
|
}
|
|
24632
24639
|
|
|
24633
24640
|
set locale(value) {
|
|
@@ -24821,9 +24828,16 @@ class AuroCalendarCell extends i$3 {
|
|
|
24821
24828
|
if (date === undefined) {
|
|
24822
24829
|
return '';
|
|
24823
24830
|
}
|
|
24824
|
-
|
|
24825
|
-
|
|
24826
|
-
|
|
24831
|
+
if (!this._titleFormatter || this._titleFormatterLocale !== this.locale) {
|
|
24832
|
+
this._titleFormatter = new Intl.DateTimeFormat(this.locale, {
|
|
24833
|
+
weekday: 'long',
|
|
24834
|
+
year: 'numeric',
|
|
24835
|
+
month: 'long',
|
|
24836
|
+
day: 'numeric'
|
|
24837
|
+
});
|
|
24838
|
+
this._titleFormatterLocale = this.locale;
|
|
24839
|
+
}
|
|
24840
|
+
return this._titleFormatter.format(new Date(date * 1000));
|
|
24827
24841
|
}
|
|
24828
24842
|
|
|
24829
24843
|
/**
|
|
@@ -24966,10 +24980,43 @@ if (!customElements.get('auro-formkit-calendar-cell')) {
|
|
|
24966
24980
|
customElements.define('auro-formkit-calendar-cell', AuroCalendarCell);
|
|
24967
24981
|
}
|
|
24968
24982
|
|
|
24983
|
+
/* eslint-disable no-underscore-dangle */
|
|
24984
|
+
|
|
24969
24985
|
// See https://git.io/JJ6SJ for "How to document your components using JSDoc"
|
|
24970
24986
|
|
|
24971
24987
|
/* eslint-disable no-magic-numbers, dot-location */
|
|
24972
24988
|
|
|
24989
|
+
|
|
24990
|
+
const getMonthNamesFromLocale = (locale) => {
|
|
24991
|
+
const fmt = new Intl.DateTimeFormat(locale, {
|
|
24992
|
+
month: 'long',
|
|
24993
|
+
timeZone: 'UTC'
|
|
24994
|
+
});
|
|
24995
|
+
// eslint-disable-next-line id-length
|
|
24996
|
+
return Array.from({ length: 12 }, (_, i) => fmt.format(Date.UTC(2000, i, 1)));
|
|
24997
|
+
};
|
|
24998
|
+
|
|
24999
|
+
/**
|
|
25000
|
+
* Generates the localized narrow names for each day of the week, starting from Sunday.
|
|
25001
|
+
* Uses UTC dates to avoid DST-related day drift across timezones.
|
|
25002
|
+
* @private
|
|
25003
|
+
* @param {String} locale - The BCP 47 language tag for localization (e.g. "en-US").
|
|
25004
|
+
* @returns {Array} An array of seven localized narrow weekday names, starting from Sunday.
|
|
25005
|
+
*/
|
|
25006
|
+
const getWeekdayNames = (locale) => {
|
|
25007
|
+
const fmt = new Intl.DateTimeFormat(locale, {
|
|
25008
|
+
weekday: 'narrow',
|
|
25009
|
+
timeZone: 'UTC'
|
|
25010
|
+
});
|
|
25011
|
+
// Jan 5 2025 is a known Sunday; use Date.UTC to avoid DST-related day drift
|
|
25012
|
+
const allDays = [];
|
|
25013
|
+
for (let day = 0; day < 7; day += 1) {
|
|
25014
|
+
allDays.push(fmt.format(Date.UTC(2025, 0, 5 + day)));
|
|
25015
|
+
}
|
|
25016
|
+
return allDays;
|
|
25017
|
+
};
|
|
25018
|
+
|
|
25019
|
+
|
|
24973
25020
|
class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
24974
25021
|
static get styles() {
|
|
24975
25022
|
return [
|
|
@@ -24989,6 +25036,21 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
24989
25036
|
monthFirst: {
|
|
24990
25037
|
type: Boolean,
|
|
24991
25038
|
reflect: true
|
|
25039
|
+
},
|
|
25040
|
+
|
|
25041
|
+
/**
|
|
25042
|
+
* BCP 47 locale tag (such as `en-US`) for calendar localization.
|
|
25043
|
+
* as wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts.
|
|
25044
|
+
*/
|
|
25045
|
+
localeCode: {
|
|
25046
|
+
type: String
|
|
25047
|
+
},
|
|
25048
|
+
|
|
25049
|
+
/**
|
|
25050
|
+
* Names of all 12 months. When omitted, names are derived from `localeCode`.
|
|
25051
|
+
*/
|
|
25052
|
+
monthNames: {
|
|
25053
|
+
type: Array
|
|
24992
25054
|
}
|
|
24993
25055
|
};
|
|
24994
25056
|
}
|
|
@@ -25022,29 +25084,33 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25022
25084
|
* @returns {String} The name of the month.
|
|
25023
25085
|
*/
|
|
25024
25086
|
computeCurrentMonthName(month) {
|
|
25025
|
-
|
|
25087
|
+
if (this.monthNames?.[month - 1]) {
|
|
25088
|
+
return this.monthNames[month - 1];
|
|
25089
|
+
}
|
|
25090
|
+
if (!this._cachedMonthNames || this._cachedMonthNamesLocale !== this.localeCode) {
|
|
25091
|
+
this._cachedMonthNames = getMonthNamesFromLocale(this.localeCode);
|
|
25092
|
+
this._cachedMonthNamesLocale = this.localeCode;
|
|
25093
|
+
}
|
|
25094
|
+
return this._cachedMonthNames[month - 1] || '';
|
|
25026
25095
|
}
|
|
25027
25096
|
|
|
25028
25097
|
/**
|
|
25029
25098
|
* Determines the current month name based on locale.
|
|
25030
25099
|
* This is a rewrite of the function used in the class RangeDatepickerCalendar and should not be removed from here.
|
|
25031
25100
|
* @private
|
|
25101
|
+
* @param {Object} changedProperties - The properties that have changed since the last update.
|
|
25032
25102
|
* @returns {void}
|
|
25033
25103
|
*/
|
|
25034
|
-
|
|
25035
|
-
|
|
25036
|
-
|
|
25037
|
-
|
|
25104
|
+
updated(changedProperties) {
|
|
25105
|
+
super.updated(changedProperties);
|
|
25106
|
+
if (changedProperties.has('localeCode')) {
|
|
25107
|
+
this.localeChanged();
|
|
25038
25108
|
}
|
|
25039
|
-
|
|
25040
|
-
|
|
25041
|
-
|
|
25042
|
-
|
|
25043
|
-
|
|
25044
|
-
.slice()
|
|
25045
|
-
.splice(firstDayOfWeek, dayNamesOfTheWeek.length)
|
|
25046
|
-
.concat(tmp);
|
|
25047
|
-
this.dayNamesOfTheWeek = newDayNamesOfTheWeek;
|
|
25109
|
+
}
|
|
25110
|
+
|
|
25111
|
+
localeChanged() {
|
|
25112
|
+
// Week always starts on Sunday; use Intl-derived names directly without rotation
|
|
25113
|
+
this.dayNamesOfTheWeek = getWeekdayNames(this.localeCode);
|
|
25048
25114
|
}
|
|
25049
25115
|
|
|
25050
25116
|
renderDay(day) {
|
|
@@ -25060,7 +25126,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25060
25126
|
.hoveredDate="${this.hoveredDate}"
|
|
25061
25127
|
.dateTo="${this.dateTo}"
|
|
25062
25128
|
.dateFrom="${this.dateFrom}"
|
|
25063
|
-
.locale="${this.
|
|
25129
|
+
.locale="${this.localeCode}"
|
|
25064
25130
|
.day="${day}"
|
|
25065
25131
|
?isCurrentDate="${this.isCurrentDate(day)}"
|
|
25066
25132
|
@date-is-selected="${this.handleDateSelected}"
|
|
@@ -25909,7 +25975,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
|
|
|
25909
25975
|
}
|
|
25910
25976
|
};
|
|
25911
25977
|
|
|
25912
|
-
var formkitVersion$2$1 = '
|
|
25978
|
+
var formkitVersion$2$1 = '202606041922';
|
|
25913
25979
|
|
|
25914
25980
|
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
25981
|
`,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}}
|
|
@@ -26164,6 +26230,21 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
26164
26230
|
visible: {
|
|
26165
26231
|
type: Boolean,
|
|
26166
26232
|
reflect: false
|
|
26233
|
+
},
|
|
26234
|
+
|
|
26235
|
+
/**
|
|
26236
|
+
* BCP 47 locale tag (such as `en-US`) for calendar localization.
|
|
26237
|
+
* as wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts and pass the locale down to calendar-month elements.
|
|
26238
|
+
*/
|
|
26239
|
+
localeCode: {
|
|
26240
|
+
type: String
|
|
26241
|
+
},
|
|
26242
|
+
|
|
26243
|
+
/**
|
|
26244
|
+
* Names of all 12 months. When omitted, names are derived from `localeCode`.
|
|
26245
|
+
*/
|
|
26246
|
+
monthNames: {
|
|
26247
|
+
type: Array
|
|
26167
26248
|
}
|
|
26168
26249
|
};
|
|
26169
26250
|
}
|
|
@@ -30273,7 +30354,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
|
|
|
30273
30354
|
}
|
|
30274
30355
|
};
|
|
30275
30356
|
|
|
30276
|
-
var formkitVersion$1$2 = '
|
|
30357
|
+
var formkitVersion$1$2 = '202606041922';
|
|
30277
30358
|
|
|
30278
30359
|
let AuroElement$2$2 = class AuroElement extends i$3 {
|
|
30279
30360
|
static get properties() {
|
|
@@ -36410,7 +36491,7 @@ function normalizeDates$2(context, ...dates) {
|
|
|
36410
36491
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
36411
36492
|
* //=> Tue Sep 02 2014 00:00:00
|
|
36412
36493
|
*/
|
|
36413
|
-
function startOfDay$
|
|
36494
|
+
function startOfDay$3(date, options) {
|
|
36414
36495
|
const _date = toDate$2(date, options?.in);
|
|
36415
36496
|
_date.setHours(0, 0, 0, 0);
|
|
36416
36497
|
return _date;
|
|
@@ -36458,8 +36539,8 @@ function differenceInCalendarDays$2(laterDate, earlierDate, options) {
|
|
|
36458
36539
|
earlierDate,
|
|
36459
36540
|
);
|
|
36460
36541
|
|
|
36461
|
-
const laterStartOfDay = startOfDay$
|
|
36462
|
-
const earlierStartOfDay = startOfDay$
|
|
36542
|
+
const laterStartOfDay = startOfDay$3(laterDate_);
|
|
36543
|
+
const earlierStartOfDay = startOfDay$3(earlierDate_);
|
|
36463
36544
|
|
|
36464
36545
|
const laterTimestamp =
|
|
36465
36546
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$2(laterStartOfDay);
|
|
@@ -43524,7 +43605,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
|
|
|
43524
43605
|
}
|
|
43525
43606
|
};
|
|
43526
43607
|
|
|
43527
|
-
var formkitVersion$8 = '
|
|
43608
|
+
var formkitVersion$8 = '202606041922';
|
|
43528
43609
|
|
|
43529
43610
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
43530
43611
|
// See LICENSE in the project root for license information.
|
|
@@ -44971,21 +45052,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
44971
45052
|
this.calendarEndDate = undefined;
|
|
44972
45053
|
this.calendarFocusDate = this.value;
|
|
44973
45054
|
this.fullscreenBreakpoint = 'sm';
|
|
44974
|
-
this.
|
|
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
|
-
|
|
45055
|
+
this._validLocale = 'en-US';
|
|
44989
45056
|
// floaterConfig
|
|
44990
45057
|
this.placement = 'bottom-start';
|
|
44991
45058
|
this.offset = 0;
|
|
@@ -45256,7 +45323,8 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
45256
45323
|
},
|
|
45257
45324
|
|
|
45258
45325
|
/**
|
|
45259
|
-
* Names of all 12 months to render in the calendar
|
|
45326
|
+
* Names of all 12 months to render in the calendar.
|
|
45327
|
+
* When omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`).
|
|
45260
45328
|
*/
|
|
45261
45329
|
monthNames: {
|
|
45262
45330
|
type: Array
|
|
@@ -46113,16 +46181,32 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46113
46181
|
return this.validity !== undefined && this.validity !== 'valid';
|
|
46114
46182
|
}
|
|
46115
46183
|
|
|
46116
|
-
|
|
46184
|
+
/**
|
|
46185
|
+
* lifecycle method to check if the locale is valid.
|
|
46186
|
+
* @ignore
|
|
46187
|
+
* @param {Map} changedProperties - The map of properties that have changed since the last update.
|
|
46188
|
+
* @returns {void}
|
|
46189
|
+
*/
|
|
46190
|
+
willUpdate(changedProperties) {
|
|
46117
46191
|
if (changedProperties.has('locale')) {
|
|
46118
|
-
|
|
46119
|
-
|
|
46120
|
-
|
|
46121
|
-
|
|
46122
|
-
|
|
46192
|
+
try {
|
|
46193
|
+
// eslint-disable-next-line no-new
|
|
46194
|
+
new Intl.DateTimeFormat(this.locale);
|
|
46195
|
+
this._validLocale = this.locale;
|
|
46196
|
+
} catch {
|
|
46197
|
+
this._validLocale = 'en-US';
|
|
46198
|
+
}
|
|
46199
|
+
|
|
46200
|
+
// if there was not an explicit format set, or the format set matches the previous locale's default format,
|
|
46201
|
+
// update to the new locale's default format
|
|
46202
|
+
const previousLocaleFormat = getDateFormatFromLocale$1(changedProperties.get('locale'));
|
|
46203
|
+
if (!changedProperties.has('format') && (!this.format || this.format.toLowerCase() === previousLocaleFormat)) {
|
|
46204
|
+
this.format = getDateFormatFromLocale$1(this._validLocale);
|
|
46123
46205
|
}
|
|
46124
46206
|
}
|
|
46207
|
+
}
|
|
46125
46208
|
|
|
46209
|
+
updated(changedProperties) {
|
|
46126
46210
|
if (changedProperties.has('disabled')) {
|
|
46127
46211
|
if (this.disabled) {
|
|
46128
46212
|
this.previousTabIndex = this.getAttribute('tabindex');
|
|
@@ -46366,14 +46450,6 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46366
46450
|
super.connectedCallback();
|
|
46367
46451
|
|
|
46368
46452
|
this.locale = this.domHandler.getLocale(this);
|
|
46369
|
-
|
|
46370
|
-
// Derive format eagerly so the first render has a valid format.
|
|
46371
|
-
// updated() handles locale changes after the initial render, but runs
|
|
46372
|
-
// after render(), so without this a preset value would briefly display
|
|
46373
|
-
// as a raw ISO string in the fullscreen bib.
|
|
46374
|
-
if (!this.format) {
|
|
46375
|
-
this.format = getDateFormatFromLocale$1(this.locale);
|
|
46376
|
-
}
|
|
46377
46453
|
}
|
|
46378
46454
|
|
|
46379
46455
|
// layout render methods
|
|
@@ -46553,7 +46629,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46553
46629
|
?required="${this.required}"
|
|
46554
46630
|
?hideLabelVisually="${this.layout !== 'classic'}"
|
|
46555
46631
|
format="${this.format}"
|
|
46556
|
-
locale="${this.
|
|
46632
|
+
locale="${this._validLocale}"
|
|
46557
46633
|
.max="${this.maxDate}"
|
|
46558
46634
|
.min="${this.minDate}"
|
|
46559
46635
|
.placeholder="${this.placeholder}"
|
|
@@ -46598,7 +46674,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46598
46674
|
?required="${this.required}"
|
|
46599
46675
|
?hideLabelVisually="${this.layout !== 'classic'}"
|
|
46600
46676
|
.format="${this.format}"
|
|
46601
|
-
locale="${this.
|
|
46677
|
+
locale="${this._validLocale}"
|
|
46602
46678
|
.max="${this.maxDate}"
|
|
46603
46679
|
.min="${this.minDate}"
|
|
46604
46680
|
.placeholder="${this.placeholderEndDate || this.placeholder}"
|
|
@@ -46765,6 +46841,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46765
46841
|
.maxDate="${this.maxDate}"
|
|
46766
46842
|
.minDate="${this.minDate}"
|
|
46767
46843
|
.monthNames="${this.monthNames}"
|
|
46844
|
+
.localeCode="${this._validLocale}"
|
|
46768
46845
|
.mobileBreakpoint="${this.mobileBreakpoint}"
|
|
46769
46846
|
part="calendar"
|
|
46770
46847
|
>
|
|
@@ -50692,7 +50769,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$3 {
|
|
|
50692
50769
|
}
|
|
50693
50770
|
};
|
|
50694
50771
|
|
|
50695
|
-
var formkitVersion$7 = '
|
|
50772
|
+
var formkitVersion$7 = '202606041922';
|
|
50696
50773
|
|
|
50697
50774
|
let AuroElement$5 = class AuroElement extends i$3 {
|
|
50698
50775
|
static get properties() {
|
|
@@ -52871,7 +52948,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
|
|
|
52871
52948
|
}
|
|
52872
52949
|
};
|
|
52873
52950
|
|
|
52874
|
-
var formkitVersion$6 = '
|
|
52951
|
+
var formkitVersion$6 = '202606041922';
|
|
52875
52952
|
|
|
52876
52953
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
52877
52954
|
// See LICENSE in the project root for license information.
|
|
@@ -55867,7 +55944,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
|
|
|
55867
55944
|
}
|
|
55868
55945
|
};
|
|
55869
55946
|
|
|
55870
|
-
var formkitVersion$5 = '
|
|
55947
|
+
var formkitVersion$5 = '202606041922';
|
|
55871
55948
|
|
|
55872
55949
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
55873
55950
|
// See LICENSE in the project root for license information.
|
|
@@ -57617,7 +57694,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
|
|
|
57617
57694
|
}
|
|
57618
57695
|
};
|
|
57619
57696
|
|
|
57620
|
-
var formkitVersion$4 = '
|
|
57697
|
+
var formkitVersion$4 = '202606041922';
|
|
57621
57698
|
|
|
57622
57699
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
57623
57700
|
// See LICENSE in the project root for license information.
|
|
@@ -62815,7 +62892,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
62815
62892
|
}
|
|
62816
62893
|
};
|
|
62817
62894
|
|
|
62818
|
-
var formkitVersion$2 = '
|
|
62895
|
+
var formkitVersion$2 = '202606041922';
|
|
62819
62896
|
|
|
62820
62897
|
let AuroElement$2$1 = class AuroElement extends i$3 {
|
|
62821
62898
|
static get properties() {
|
|
@@ -76066,7 +76143,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
|
|
|
76066
76143
|
}
|
|
76067
76144
|
};
|
|
76068
76145
|
|
|
76069
|
-
var formkitVersion$1$1 = '
|
|
76146
|
+
var formkitVersion$1$1 = '202606041922';
|
|
76070
76147
|
|
|
76071
76148
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
76072
76149
|
// See LICENSE in the project root for license information.
|
|
@@ -77183,7 +77260,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
|
|
|
77183
77260
|
}
|
|
77184
77261
|
};
|
|
77185
77262
|
|
|
77186
|
-
var formkitVersion$3 = '
|
|
77263
|
+
var formkitVersion$3 = '202606041922';
|
|
77187
77264
|
|
|
77188
77265
|
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
77266
|
|
|
@@ -86253,7 +86330,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
86253
86330
|
}
|
|
86254
86331
|
};
|
|
86255
86332
|
|
|
86256
|
-
var formkitVersion$1 = '
|
|
86333
|
+
var formkitVersion$1 = '202606041922';
|
|
86257
86334
|
|
|
86258
86335
|
class AuroElement extends i$3 {
|
|
86259
86336
|
static get properties() {
|
|
@@ -88006,7 +88083,7 @@ class AuroHelpText extends i$3 {
|
|
|
88006
88083
|
}
|
|
88007
88084
|
}
|
|
88008
88085
|
|
|
88009
|
-
var formkitVersion = '
|
|
88086
|
+
var formkitVersion = '202606041922';
|
|
88010
88087
|
|
|
88011
88088
|
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
88089
|
|
|
@@ -12178,7 +12178,7 @@ class AuroHelpText extends i$3 {
|
|
|
12178
12178
|
}
|
|
12179
12179
|
}
|
|
12180
12180
|
|
|
12181
|
-
var formkitVersion = '
|
|
12181
|
+
var formkitVersion = '202606041922';
|
|
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 = '202606041922';
|
|
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 = '202606041922';
|
|
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 = '202606041922';
|
|
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 = '202606041922';
|
|
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 = '202606041922';
|
|
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 = '202606041922';
|
|
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 = '202606041922';
|
|
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.
|