@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
|
@@ -5850,7 +5850,7 @@ function normalizeDates$3(context, ...dates) {
|
|
|
5850
5850
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
5851
5851
|
* //=> Tue Sep 02 2014 00:00:00
|
|
5852
5852
|
*/
|
|
5853
|
-
function startOfDay$
|
|
5853
|
+
function startOfDay$4(date, options) {
|
|
5854
5854
|
const _date = toDate$3(date, options?.in);
|
|
5855
5855
|
_date.setHours(0, 0, 0, 0);
|
|
5856
5856
|
return _date;
|
|
@@ -5898,8 +5898,8 @@ function differenceInCalendarDays$3(laterDate, earlierDate, options) {
|
|
|
5898
5898
|
earlierDate,
|
|
5899
5899
|
);
|
|
5900
5900
|
|
|
5901
|
-
const laterStartOfDay = startOfDay$
|
|
5902
|
-
const earlierStartOfDay = startOfDay$
|
|
5901
|
+
const laterStartOfDay = startOfDay$4(laterDate_);
|
|
5902
|
+
const earlierStartOfDay = startOfDay$4(earlierDate_);
|
|
5903
5903
|
|
|
5904
5904
|
const laterTimestamp =
|
|
5905
5905
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$3(laterStartOfDay);
|
|
@@ -12964,7 +12964,7 @@ let AuroHelpText$9 = class AuroHelpText extends i$4 {
|
|
|
12964
12964
|
}
|
|
12965
12965
|
};
|
|
12966
12966
|
|
|
12967
|
-
var formkitVersion$9 = '
|
|
12967
|
+
var formkitVersion$9 = '202606041922';
|
|
12968
12968
|
|
|
12969
12969
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12970
12970
|
// See LICENSE in the project root for license information.
|
|
@@ -15052,7 +15052,7 @@ function normalizeDates$1(context, ...dates) {
|
|
|
15052
15052
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
15053
15053
|
* //=> Tue Sep 02 2014 00:00:00
|
|
15054
15054
|
*/
|
|
15055
|
-
function startOfDay$
|
|
15055
|
+
function startOfDay$2(date, options) {
|
|
15056
15056
|
const _date = toDate$1(date, options?.in);
|
|
15057
15057
|
_date.setHours(0, 0, 0, 0);
|
|
15058
15058
|
return _date;
|
|
@@ -15100,8 +15100,8 @@ function differenceInCalendarDays$1(laterDate, earlierDate, options) {
|
|
|
15100
15100
|
earlierDate,
|
|
15101
15101
|
);
|
|
15102
15102
|
|
|
15103
|
-
const laterStartOfDay = startOfDay$
|
|
15104
|
-
const earlierStartOfDay = startOfDay$
|
|
15103
|
+
const laterStartOfDay = startOfDay$2(laterDate_);
|
|
15104
|
+
const earlierStartOfDay = startOfDay$2(earlierDate_);
|
|
15105
15105
|
|
|
15106
15106
|
const laterTimestamp =
|
|
15107
15107
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$1(laterStartOfDay);
|
|
@@ -24476,6 +24476,7 @@ class UtilitiesCalendarRender {
|
|
|
24476
24476
|
.dateTo="${elem.dateTo}"
|
|
24477
24477
|
.dateFrom="${elem.dateFrom}"
|
|
24478
24478
|
.locale="${elem.locale}"
|
|
24479
|
+
.localeCode="${elem.localeCode}"
|
|
24479
24480
|
.monthNames="${elem.monthNames}"
|
|
24480
24481
|
month="${month}"
|
|
24481
24482
|
year="${year}"
|
|
@@ -24600,8 +24601,8 @@ class RangeDatepickerCell extends i$4 {
|
|
|
24600
24601
|
const parsedDateFrom = parseInt(dateFrom, 10);
|
|
24601
24602
|
const parsedDateTo = parseInt(dateTo, 10);
|
|
24602
24603
|
if (day) {
|
|
24603
|
-
if (getTime(startOfDay$
|
|
24604
|
-
getTime(startOfDay$
|
|
24604
|
+
if (getTime(startOfDay$2(parsedDateTo * 1000)) / 1000 === day.date ||
|
|
24605
|
+
getTime(startOfDay$2(parsedDateFrom * 1000)) / 1000 === day.date) {
|
|
24605
24606
|
this.selected = true;
|
|
24606
24607
|
}
|
|
24607
24608
|
if (((hoveredDate === day.date || day.date < hoveredDate) &&
|
|
@@ -24789,7 +24790,7 @@ class RangeDatepickerCalendar extends i$4 {
|
|
|
24789
24790
|
this.dayNamesOfTheWeek = [];
|
|
24790
24791
|
this.daysOfMonth = [];
|
|
24791
24792
|
this._locale = null;
|
|
24792
|
-
this.currentDate = parseInt(format$1(startOfDay$
|
|
24793
|
+
this.currentDate = parseInt(format$1(startOfDay$2(Date.now()), 't'), 10);
|
|
24793
24794
|
this.localeChanged();
|
|
24794
24795
|
this.yearAndMonthChanged(this.year, this.month);
|
|
24795
24796
|
}
|
|
@@ -25283,6 +25284,12 @@ let s$3 = class s{registerComponent(e,t){customElements.get(e)||customElements.d
|
|
|
25283
25284
|
|
|
25284
25285
|
var popoverVersion = '6.0.1';
|
|
25285
25286
|
|
|
25287
|
+
const startOfDay$1 = (ms) => {
|
|
25288
|
+
const date = new Date(ms);
|
|
25289
|
+
date.setHours(0, 0, 0, 0);
|
|
25290
|
+
return date.getTime();
|
|
25291
|
+
};
|
|
25292
|
+
|
|
25286
25293
|
/* 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 */
|
|
25287
25294
|
|
|
25288
25295
|
class AuroCalendarCell extends i$4 {
|
|
@@ -25335,14 +25342,14 @@ class AuroCalendarCell extends i$4 {
|
|
|
25335
25342
|
disabledDays: { type: Array },
|
|
25336
25343
|
hoveredDate: { type: String },
|
|
25337
25344
|
isCurrentDate: { type: Boolean },
|
|
25338
|
-
locale: { type:
|
|
25345
|
+
locale: { type: String },
|
|
25339
25346
|
dateStr: { type: String },
|
|
25340
25347
|
renderForDateSlot: { type: Boolean }
|
|
25341
25348
|
};
|
|
25342
25349
|
}
|
|
25343
25350
|
|
|
25344
25351
|
get locale() {
|
|
25345
|
-
return this._locale
|
|
25352
|
+
return this._locale || 'en-US';
|
|
25346
25353
|
}
|
|
25347
25354
|
|
|
25348
25355
|
set locale(value) {
|
|
@@ -25536,9 +25543,16 @@ class AuroCalendarCell extends i$4 {
|
|
|
25536
25543
|
if (date === undefined) {
|
|
25537
25544
|
return '';
|
|
25538
25545
|
}
|
|
25539
|
-
|
|
25540
|
-
|
|
25541
|
-
|
|
25546
|
+
if (!this._titleFormatter || this._titleFormatterLocale !== this.locale) {
|
|
25547
|
+
this._titleFormatter = new Intl.DateTimeFormat(this.locale, {
|
|
25548
|
+
weekday: 'long',
|
|
25549
|
+
year: 'numeric',
|
|
25550
|
+
month: 'long',
|
|
25551
|
+
day: 'numeric'
|
|
25552
|
+
});
|
|
25553
|
+
this._titleFormatterLocale = this.locale;
|
|
25554
|
+
}
|
|
25555
|
+
return this._titleFormatter.format(new Date(date * 1000));
|
|
25542
25556
|
}
|
|
25543
25557
|
|
|
25544
25558
|
/**
|
|
@@ -25681,10 +25695,43 @@ if (!customElements.get('auro-formkit-calendar-cell')) {
|
|
|
25681
25695
|
customElements.define('auro-formkit-calendar-cell', AuroCalendarCell);
|
|
25682
25696
|
}
|
|
25683
25697
|
|
|
25698
|
+
/* eslint-disable no-underscore-dangle */
|
|
25699
|
+
|
|
25684
25700
|
// See https://git.io/JJ6SJ for "How to document your components using JSDoc"
|
|
25685
25701
|
|
|
25686
25702
|
/* eslint-disable no-magic-numbers, dot-location */
|
|
25687
25703
|
|
|
25704
|
+
|
|
25705
|
+
const getMonthNamesFromLocale = (locale) => {
|
|
25706
|
+
const fmt = new Intl.DateTimeFormat(locale, {
|
|
25707
|
+
month: 'long',
|
|
25708
|
+
timeZone: 'UTC'
|
|
25709
|
+
});
|
|
25710
|
+
// eslint-disable-next-line id-length
|
|
25711
|
+
return Array.from({ length: 12 }, (_, i) => fmt.format(Date.UTC(2000, i, 1)));
|
|
25712
|
+
};
|
|
25713
|
+
|
|
25714
|
+
/**
|
|
25715
|
+
* Generates the localized narrow names for each day of the week, starting from Sunday.
|
|
25716
|
+
* Uses UTC dates to avoid DST-related day drift across timezones.
|
|
25717
|
+
* @private
|
|
25718
|
+
* @param {String} locale - The BCP 47 language tag for localization (e.g. "en-US").
|
|
25719
|
+
* @returns {Array} An array of seven localized narrow weekday names, starting from Sunday.
|
|
25720
|
+
*/
|
|
25721
|
+
const getWeekdayNames = (locale) => {
|
|
25722
|
+
const fmt = new Intl.DateTimeFormat(locale, {
|
|
25723
|
+
weekday: 'narrow',
|
|
25724
|
+
timeZone: 'UTC'
|
|
25725
|
+
});
|
|
25726
|
+
// Jan 5 2025 is a known Sunday; use Date.UTC to avoid DST-related day drift
|
|
25727
|
+
const allDays = [];
|
|
25728
|
+
for (let day = 0; day < 7; day += 1) {
|
|
25729
|
+
allDays.push(fmt.format(Date.UTC(2025, 0, 5 + day)));
|
|
25730
|
+
}
|
|
25731
|
+
return allDays;
|
|
25732
|
+
};
|
|
25733
|
+
|
|
25734
|
+
|
|
25688
25735
|
class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
25689
25736
|
static get styles() {
|
|
25690
25737
|
return [
|
|
@@ -25704,6 +25751,21 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25704
25751
|
monthFirst: {
|
|
25705
25752
|
type: Boolean,
|
|
25706
25753
|
reflect: true
|
|
25754
|
+
},
|
|
25755
|
+
|
|
25756
|
+
/**
|
|
25757
|
+
* BCP 47 locale tag (such as `en-US`) for calendar localization.
|
|
25758
|
+
* as wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts.
|
|
25759
|
+
*/
|
|
25760
|
+
localeCode: {
|
|
25761
|
+
type: String
|
|
25762
|
+
},
|
|
25763
|
+
|
|
25764
|
+
/**
|
|
25765
|
+
* Names of all 12 months. When omitted, names are derived from `localeCode`.
|
|
25766
|
+
*/
|
|
25767
|
+
monthNames: {
|
|
25768
|
+
type: Array
|
|
25707
25769
|
}
|
|
25708
25770
|
};
|
|
25709
25771
|
}
|
|
@@ -25737,29 +25799,33 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25737
25799
|
* @returns {String} The name of the month.
|
|
25738
25800
|
*/
|
|
25739
25801
|
computeCurrentMonthName(month) {
|
|
25740
|
-
|
|
25802
|
+
if (this.monthNames?.[month - 1]) {
|
|
25803
|
+
return this.monthNames[month - 1];
|
|
25804
|
+
}
|
|
25805
|
+
if (!this._cachedMonthNames || this._cachedMonthNamesLocale !== this.localeCode) {
|
|
25806
|
+
this._cachedMonthNames = getMonthNamesFromLocale(this.localeCode);
|
|
25807
|
+
this._cachedMonthNamesLocale = this.localeCode;
|
|
25808
|
+
}
|
|
25809
|
+
return this._cachedMonthNames[month - 1] || '';
|
|
25741
25810
|
}
|
|
25742
25811
|
|
|
25743
25812
|
/**
|
|
25744
25813
|
* Determines the current month name based on locale.
|
|
25745
25814
|
* This is a rewrite of the function used in the class RangeDatepickerCalendar and should not be removed from here.
|
|
25746
25815
|
* @private
|
|
25816
|
+
* @param {Object} changedProperties - The properties that have changed since the last update.
|
|
25747
25817
|
* @returns {void}
|
|
25748
25818
|
*/
|
|
25749
|
-
|
|
25750
|
-
|
|
25751
|
-
|
|
25752
|
-
|
|
25819
|
+
updated(changedProperties) {
|
|
25820
|
+
super.updated(changedProperties);
|
|
25821
|
+
if (changedProperties.has('localeCode')) {
|
|
25822
|
+
this.localeChanged();
|
|
25753
25823
|
}
|
|
25754
|
-
|
|
25755
|
-
|
|
25756
|
-
|
|
25757
|
-
|
|
25758
|
-
|
|
25759
|
-
.slice()
|
|
25760
|
-
.splice(firstDayOfWeek, dayNamesOfTheWeek.length)
|
|
25761
|
-
.concat(tmp);
|
|
25762
|
-
this.dayNamesOfTheWeek = newDayNamesOfTheWeek;
|
|
25824
|
+
}
|
|
25825
|
+
|
|
25826
|
+
localeChanged() {
|
|
25827
|
+
// Week always starts on Sunday; use Intl-derived names directly without rotation
|
|
25828
|
+
this.dayNamesOfTheWeek = getWeekdayNames(this.localeCode);
|
|
25763
25829
|
}
|
|
25764
25830
|
|
|
25765
25831
|
renderDay(day) {
|
|
@@ -25775,7 +25841,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
25775
25841
|
.hoveredDate="${this.hoveredDate}"
|
|
25776
25842
|
.dateTo="${this.dateTo}"
|
|
25777
25843
|
.dateFrom="${this.dateFrom}"
|
|
25778
|
-
.locale="${this.
|
|
25844
|
+
.locale="${this.localeCode}"
|
|
25779
25845
|
.day="${day}"
|
|
25780
25846
|
?isCurrentDate="${this.isCurrentDate(day)}"
|
|
25781
25847
|
@date-is-selected="${this.handleDateSelected}"
|
|
@@ -26624,7 +26690,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$4 {
|
|
|
26624
26690
|
}
|
|
26625
26691
|
};
|
|
26626
26692
|
|
|
26627
|
-
var formkitVersion$2$1 = '
|
|
26693
|
+
var formkitVersion$2$1 = '202606041922';
|
|
26628
26694
|
|
|
26629
26695
|
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$3`${s$6(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$7`: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}
|
|
26630
26696
|
`,u$4$1=i$7`.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}}
|
|
@@ -26879,6 +26945,21 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
26879
26945
|
visible: {
|
|
26880
26946
|
type: Boolean,
|
|
26881
26947
|
reflect: false
|
|
26948
|
+
},
|
|
26949
|
+
|
|
26950
|
+
/**
|
|
26951
|
+
* BCP 47 locale tag (such as `en-US`) for calendar localization.
|
|
26952
|
+
* as wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts and pass the locale down to calendar-month elements.
|
|
26953
|
+
*/
|
|
26954
|
+
localeCode: {
|
|
26955
|
+
type: String
|
|
26956
|
+
},
|
|
26957
|
+
|
|
26958
|
+
/**
|
|
26959
|
+
* Names of all 12 months. When omitted, names are derived from `localeCode`.
|
|
26960
|
+
*/
|
|
26961
|
+
monthNames: {
|
|
26962
|
+
type: Array
|
|
26882
26963
|
}
|
|
26883
26964
|
};
|
|
26884
26965
|
}
|
|
@@ -30988,7 +31069,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$4 {
|
|
|
30988
31069
|
}
|
|
30989
31070
|
};
|
|
30990
31071
|
|
|
30991
|
-
var formkitVersion$1$2 = '
|
|
31072
|
+
var formkitVersion$1$2 = '202606041922';
|
|
30992
31073
|
|
|
30993
31074
|
let AuroElement$2$2 = class AuroElement extends i$4 {
|
|
30994
31075
|
static get properties() {
|
|
@@ -37125,7 +37206,7 @@ function normalizeDates$2(context, ...dates) {
|
|
|
37125
37206
|
* const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
|
|
37126
37207
|
* //=> Tue Sep 02 2014 00:00:00
|
|
37127
37208
|
*/
|
|
37128
|
-
function startOfDay$
|
|
37209
|
+
function startOfDay$3(date, options) {
|
|
37129
37210
|
const _date = toDate$2(date, options?.in);
|
|
37130
37211
|
_date.setHours(0, 0, 0, 0);
|
|
37131
37212
|
return _date;
|
|
@@ -37173,8 +37254,8 @@ function differenceInCalendarDays$2(laterDate, earlierDate, options) {
|
|
|
37173
37254
|
earlierDate,
|
|
37174
37255
|
);
|
|
37175
37256
|
|
|
37176
|
-
const laterStartOfDay = startOfDay$
|
|
37177
|
-
const earlierStartOfDay = startOfDay$
|
|
37257
|
+
const laterStartOfDay = startOfDay$3(laterDate_);
|
|
37258
|
+
const earlierStartOfDay = startOfDay$3(earlierDate_);
|
|
37178
37259
|
|
|
37179
37260
|
const laterTimestamp =
|
|
37180
37261
|
+laterStartOfDay - getTimezoneOffsetInMilliseconds$2(laterStartOfDay);
|
|
@@ -44239,7 +44320,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$4 {
|
|
|
44239
44320
|
}
|
|
44240
44321
|
};
|
|
44241
44322
|
|
|
44242
|
-
var formkitVersion$8 = '
|
|
44323
|
+
var formkitVersion$8 = '202606041922';
|
|
44243
44324
|
|
|
44244
44325
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
44245
44326
|
// See LICENSE in the project root for license information.
|
|
@@ -45686,21 +45767,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
45686
45767
|
this.calendarEndDate = undefined;
|
|
45687
45768
|
this.calendarFocusDate = this.value;
|
|
45688
45769
|
this.fullscreenBreakpoint = 'sm';
|
|
45689
|
-
this.
|
|
45690
|
-
'January',
|
|
45691
|
-
'February',
|
|
45692
|
-
'March',
|
|
45693
|
-
'April',
|
|
45694
|
-
'May',
|
|
45695
|
-
'June',
|
|
45696
|
-
'July',
|
|
45697
|
-
'August',
|
|
45698
|
-
'September',
|
|
45699
|
-
'October',
|
|
45700
|
-
'November',
|
|
45701
|
-
'December'
|
|
45702
|
-
];
|
|
45703
|
-
|
|
45770
|
+
this._validLocale = 'en-US';
|
|
45704
45771
|
// floaterConfig
|
|
45705
45772
|
this.placement = 'bottom-start';
|
|
45706
45773
|
this.offset = 0;
|
|
@@ -45971,7 +46038,8 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
45971
46038
|
},
|
|
45972
46039
|
|
|
45973
46040
|
/**
|
|
45974
|
-
* Names of all 12 months to render in the calendar
|
|
46041
|
+
* Names of all 12 months to render in the calendar.
|
|
46042
|
+
* When omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`).
|
|
45975
46043
|
*/
|
|
45976
46044
|
monthNames: {
|
|
45977
46045
|
type: Array
|
|
@@ -46828,16 +46896,32 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
46828
46896
|
return this.validity !== undefined && this.validity !== 'valid';
|
|
46829
46897
|
}
|
|
46830
46898
|
|
|
46831
|
-
|
|
46899
|
+
/**
|
|
46900
|
+
* lifecycle method to check if the locale is valid.
|
|
46901
|
+
* @ignore
|
|
46902
|
+
* @param {Map} changedProperties - The map of properties that have changed since the last update.
|
|
46903
|
+
* @returns {void}
|
|
46904
|
+
*/
|
|
46905
|
+
willUpdate(changedProperties) {
|
|
46832
46906
|
if (changedProperties.has('locale')) {
|
|
46833
|
-
|
|
46834
|
-
|
|
46835
|
-
|
|
46836
|
-
|
|
46837
|
-
|
|
46907
|
+
try {
|
|
46908
|
+
// eslint-disable-next-line no-new
|
|
46909
|
+
new Intl.DateTimeFormat(this.locale);
|
|
46910
|
+
this._validLocale = this.locale;
|
|
46911
|
+
} catch {
|
|
46912
|
+
this._validLocale = 'en-US';
|
|
46913
|
+
}
|
|
46914
|
+
|
|
46915
|
+
// if there was not an explicit format set, or the format set matches the previous locale's default format,
|
|
46916
|
+
// update to the new locale's default format
|
|
46917
|
+
const previousLocaleFormat = getDateFormatFromLocale$1(changedProperties.get('locale'));
|
|
46918
|
+
if (!changedProperties.has('format') && (!this.format || this.format.toLowerCase() === previousLocaleFormat)) {
|
|
46919
|
+
this.format = getDateFormatFromLocale$1(this._validLocale);
|
|
46838
46920
|
}
|
|
46839
46921
|
}
|
|
46922
|
+
}
|
|
46840
46923
|
|
|
46924
|
+
updated(changedProperties) {
|
|
46841
46925
|
if (changedProperties.has('disabled')) {
|
|
46842
46926
|
if (this.disabled) {
|
|
46843
46927
|
this.previousTabIndex = this.getAttribute('tabindex');
|
|
@@ -47081,14 +47165,6 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
47081
47165
|
super.connectedCallback();
|
|
47082
47166
|
|
|
47083
47167
|
this.locale = this.domHandler.getLocale(this);
|
|
47084
|
-
|
|
47085
|
-
// Derive format eagerly so the first render has a valid format.
|
|
47086
|
-
// updated() handles locale changes after the initial render, but runs
|
|
47087
|
-
// after render(), so without this a preset value would briefly display
|
|
47088
|
-
// as a raw ISO string in the fullscreen bib.
|
|
47089
|
-
if (!this.format) {
|
|
47090
|
-
this.format = getDateFormatFromLocale$1(this.locale);
|
|
47091
|
-
}
|
|
47092
47168
|
}
|
|
47093
47169
|
|
|
47094
47170
|
// layout render methods
|
|
@@ -47268,7 +47344,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
47268
47344
|
?required="${this.required}"
|
|
47269
47345
|
?hideLabelVisually="${this.layout !== 'classic'}"
|
|
47270
47346
|
format="${this.format}"
|
|
47271
|
-
locale="${this.
|
|
47347
|
+
locale="${this._validLocale}"
|
|
47272
47348
|
.max="${this.maxDate}"
|
|
47273
47349
|
.min="${this.minDate}"
|
|
47274
47350
|
.placeholder="${this.placeholder}"
|
|
@@ -47313,7 +47389,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
47313
47389
|
?required="${this.required}"
|
|
47314
47390
|
?hideLabelVisually="${this.layout !== 'classic'}"
|
|
47315
47391
|
.format="${this.format}"
|
|
47316
|
-
locale="${this.
|
|
47392
|
+
locale="${this._validLocale}"
|
|
47317
47393
|
.max="${this.maxDate}"
|
|
47318
47394
|
.min="${this.minDate}"
|
|
47319
47395
|
.placeholder="${this.placeholderEndDate || this.placeholder}"
|
|
@@ -47480,6 +47556,7 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
47480
47556
|
.maxDate="${this.maxDate}"
|
|
47481
47557
|
.minDate="${this.minDate}"
|
|
47482
47558
|
.monthNames="${this.monthNames}"
|
|
47559
|
+
.localeCode="${this._validLocale}"
|
|
47483
47560
|
.mobileBreakpoint="${this.mobileBreakpoint}"
|
|
47484
47561
|
part="calendar"
|
|
47485
47562
|
>
|
|
@@ -51407,7 +51484,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$4 {
|
|
|
51407
51484
|
}
|
|
51408
51485
|
};
|
|
51409
51486
|
|
|
51410
|
-
var formkitVersion$7 = '
|
|
51487
|
+
var formkitVersion$7 = '202606041922';
|
|
51411
51488
|
|
|
51412
51489
|
let AuroElement$5 = class AuroElement extends i$4 {
|
|
51413
51490
|
static get properties() {
|
|
@@ -53586,7 +53663,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$4 {
|
|
|
53586
53663
|
}
|
|
53587
53664
|
};
|
|
53588
53665
|
|
|
53589
|
-
var formkitVersion$6 = '
|
|
53666
|
+
var formkitVersion$6 = '202606041922';
|
|
53590
53667
|
|
|
53591
53668
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
53592
53669
|
// See LICENSE in the project root for license information.
|
|
@@ -56582,7 +56659,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$4 {
|
|
|
56582
56659
|
}
|
|
56583
56660
|
};
|
|
56584
56661
|
|
|
56585
|
-
var formkitVersion$5 = '
|
|
56662
|
+
var formkitVersion$5 = '202606041922';
|
|
56586
56663
|
|
|
56587
56664
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
56588
56665
|
// See LICENSE in the project root for license information.
|
|
@@ -58332,7 +58409,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$4 {
|
|
|
58332
58409
|
}
|
|
58333
58410
|
};
|
|
58334
58411
|
|
|
58335
|
-
var formkitVersion$4 = '
|
|
58412
|
+
var formkitVersion$4 = '202606041922';
|
|
58336
58413
|
|
|
58337
58414
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
58338
58415
|
// See LICENSE in the project root for license information.
|
|
@@ -63530,7 +63607,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
|
|
|
63530
63607
|
}
|
|
63531
63608
|
};
|
|
63532
63609
|
|
|
63533
|
-
var formkitVersion$2 = '
|
|
63610
|
+
var formkitVersion$2 = '202606041922';
|
|
63534
63611
|
|
|
63535
63612
|
let AuroElement$2$1 = class AuroElement extends i$4 {
|
|
63536
63613
|
static get properties() {
|
|
@@ -76781,7 +76858,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$4 {
|
|
|
76781
76858
|
}
|
|
76782
76859
|
};
|
|
76783
76860
|
|
|
76784
|
-
var formkitVersion$1$1 = '
|
|
76861
|
+
var formkitVersion$1$1 = '202606041922';
|
|
76785
76862
|
|
|
76786
76863
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
76787
76864
|
// See LICENSE in the project root for license information.
|
|
@@ -77898,7 +77975,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$4 {
|
|
|
77898
77975
|
}
|
|
77899
77976
|
};
|
|
77900
77977
|
|
|
77901
|
-
var formkitVersion$3 = '
|
|
77978
|
+
var formkitVersion$3 = '202606041922';
|
|
77902
77979
|
|
|
77903
77980
|
var styleCss$1$3 = i$7`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
|
|
77904
77981
|
|
|
@@ -86968,7 +87045,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
|
|
|
86968
87045
|
}
|
|
86969
87046
|
};
|
|
86970
87047
|
|
|
86971
|
-
var formkitVersion$1 = '
|
|
87048
|
+
var formkitVersion$1 = '202606041922';
|
|
86972
87049
|
|
|
86973
87050
|
class AuroElement extends i$4 {
|
|
86974
87051
|
static get properties() {
|
|
@@ -88721,7 +88798,7 @@ class AuroHelpText extends i$4 {
|
|
|
88721
88798
|
}
|
|
88722
88799
|
}
|
|
88723
88800
|
|
|
88724
|
-
var formkitVersion = '
|
|
88801
|
+
var formkitVersion = '202606041922';
|
|
88725
88802
|
|
|
88726
88803
|
var styleCss = i$7`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.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}`;
|
|
88727
88804
|
|