@aurodesignsystem-dev/auro-formkit 0.0.0-pr1475.1 → 0.0.0-pr1475.3
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 +20 -8
- package/components/combobox/demo/getting-started.min.js +20 -8
- package/components/combobox/demo/index.min.js +20 -8
- package/components/combobox/dist/index.js +20 -8
- package/components/combobox/dist/registered.js +20 -8
- package/components/counter/demo/customize.min.js +19 -7
- package/components/counter/demo/index.min.js +19 -7
- package/components/counter/dist/index.js +1 -1
- package/components/counter/dist/registered.js +1 -1
- package/components/datepicker/demo/accessibility.md +1 -1
- package/components/datepicker/demo/customize.min.js +153 -44
- package/components/datepicker/demo/index.md +2 -2
- package/components/datepicker/demo/index.min.js +159 -46
- package/components/datepicker/demo/keyboard-behavior.md +1 -1
- package/components/datepicker/dist/index.js +153 -42
- package/components/datepicker/dist/registered.js +153 -42
- package/components/datepicker/dist/src/auro-calendar-cell.d.ts +9 -0
- package/components/dropdown/demo/customize.min.js +18 -6
- package/components/dropdown/demo/getting-started.min.js +18 -6
- package/components/dropdown/demo/index.min.js +18 -6
- package/components/dropdown/dist/auro-dropdown.d.ts +2 -1
- package/components/dropdown/dist/index.js +18 -6
- package/components/dropdown/dist/registered.js +18 -6
- package/components/form/demo/customize.min.js +214 -67
- package/components/form/demo/getting-started.min.js +214 -67
- package/components/form/demo/index.min.js +214 -67
- package/components/form/demo/registerDemoDeps.min.js +214 -67
- 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/customize.min.js +1 -1
- package/components/radio/demo/getting-started.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/customize.min.js +19 -7
- package/components/select/demo/getting-started.min.js +19 -7
- package/components/select/demo/index.min.js +19 -7
- package/components/select/dist/index.js +19 -7
- package/components/select/dist/registered.js +19 -7
- package/custom-elements.json +3949 -3938
- package/package.json +1 -1
|
@@ -6743,7 +6743,7 @@ let AuroHelpText$9 = class AuroHelpText extends i$3 {
|
|
|
6743
6743
|
}
|
|
6744
6744
|
};
|
|
6745
6745
|
|
|
6746
|
-
var formkitVersion$9 = '
|
|
6746
|
+
var formkitVersion$9 = '202605182353';
|
|
6747
6747
|
|
|
6748
6748
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
6749
6749
|
// See LICENSE in the project root for license information.
|
|
@@ -15520,11 +15520,22 @@ class AuroCalendarCell extends i$3 {
|
|
|
15520
15520
|
return false;
|
|
15521
15521
|
}
|
|
15522
15522
|
|
|
15523
|
+
// Check against disabledDays timestamps (legacy path)
|
|
15524
|
+
if (Array.isArray(this.disabledDays) && this.disabledDays.length > 0) {
|
|
15525
|
+
if (this.disabledDays.findIndex(d => parseInt(d, 10) === this.day.date) !== -1) {
|
|
15526
|
+
return true;
|
|
15527
|
+
}
|
|
15528
|
+
}
|
|
15529
|
+
|
|
15523
15530
|
// Check against blackoutDates (ISO format YYYY-MM-DD) on the datepicker
|
|
15524
15531
|
const blackoutDates = this.datepicker?.blackoutDates;
|
|
15525
15532
|
|
|
15526
15533
|
if (Array.isArray(blackoutDates) && blackoutDates.length > 0) {
|
|
15527
|
-
const
|
|
15534
|
+
const date = new Date(this.day.date * 1000);
|
|
15535
|
+
const yyyy = date.getFullYear();
|
|
15536
|
+
const mm = String(date.getMonth() + 1).padStart(2, '0');
|
|
15537
|
+
const dd = String(date.getDate()).padStart(2, '0');
|
|
15538
|
+
const cellDate = `${yyyy}-${mm}-${dd}`;
|
|
15528
15539
|
if (blackoutDates.includes(cellDate)) {
|
|
15529
15540
|
return true;
|
|
15530
15541
|
}
|
|
@@ -15580,8 +15591,9 @@ class AuroCalendarCell extends i$3 {
|
|
|
15580
15591
|
|
|
15581
15592
|
const date = new Date(this.day.date * 1000);
|
|
15582
15593
|
|
|
15583
|
-
// Generate localized full date string
|
|
15584
|
-
const
|
|
15594
|
+
// Generate localized full date string using the configured locale
|
|
15595
|
+
const localeCode = this.locale?.code || undefined;
|
|
15596
|
+
const dateFormatter = new Intl.DateTimeFormat(localeCode, {
|
|
15585
15597
|
weekday: 'long',
|
|
15586
15598
|
year: 'numeric',
|
|
15587
15599
|
month: 'long',
|
|
@@ -15590,7 +15602,7 @@ class AuroCalendarCell extends i$3 {
|
|
|
15590
15602
|
|
|
15591
15603
|
let label = dateFormatter.format(date);
|
|
15592
15604
|
|
|
15593
|
-
// appending popover content here so that it
|
|
15605
|
+
// appending popover content here so that it gets read in a logical order with the other date content.
|
|
15594
15606
|
if (this.hasPopoverContent) {
|
|
15595
15607
|
label += `, ${this.querySelector(`[slot="popover_${this.dateStr}"]`).innerText.trim()}`;
|
|
15596
15608
|
}
|
|
@@ -15822,10 +15834,22 @@ class AuroCalendarCell extends i$3 {
|
|
|
15822
15834
|
this.handleSlotContent();
|
|
15823
15835
|
});
|
|
15824
15836
|
|
|
15837
|
+
this.calendarMonth = calendarMonth;
|
|
15838
|
+
this.configurePopover();
|
|
15839
|
+
}
|
|
15840
|
+
|
|
15841
|
+
/**
|
|
15842
|
+
* Configures the popover instance with the calendar month boundary.
|
|
15843
|
+
* Called from firstUpdated and updated because the popover element is only
|
|
15844
|
+
* rendered after hasPopoverContent becomes true (set by handleSlotContent).
|
|
15845
|
+
* @private
|
|
15846
|
+
* @returns {void}
|
|
15847
|
+
*/
|
|
15848
|
+
configurePopover() {
|
|
15825
15849
|
this.auroPopover = this.shadowRoot.querySelector(this.popoverTag._$litStatic$);
|
|
15826
15850
|
|
|
15827
|
-
if (this.auroPopover) {
|
|
15828
|
-
this.auroPopover.boundary = calendarMonth;
|
|
15851
|
+
if (this.auroPopover && this.calendarMonth) {
|
|
15852
|
+
this.auroPopover.boundary = this.calendarMonth;
|
|
15829
15853
|
}
|
|
15830
15854
|
}
|
|
15831
15855
|
|
|
@@ -15838,6 +15862,11 @@ class AuroCalendarCell extends i$3 {
|
|
|
15838
15862
|
this.setDateSlotName();
|
|
15839
15863
|
this.handleSlotContent();
|
|
15840
15864
|
}
|
|
15865
|
+
|
|
15866
|
+
// Configure popover when it first becomes rendered
|
|
15867
|
+
if (properties.has('hasPopoverContent') && this.hasPopoverContent) {
|
|
15868
|
+
this.updateComplete.then(() => this.configurePopover());
|
|
15869
|
+
}
|
|
15841
15870
|
}
|
|
15842
15871
|
|
|
15843
15872
|
/**
|
|
@@ -15859,7 +15888,7 @@ class AuroCalendarCell extends i$3 {
|
|
|
15859
15888
|
const buttonClasses = {
|
|
15860
15889
|
'day': true,
|
|
15861
15890
|
'body-lg': true,
|
|
15862
|
-
'currentDate': this.
|
|
15891
|
+
'currentDate': this.isCurrentDate,
|
|
15863
15892
|
'selected': this.selected,
|
|
15864
15893
|
'inRange': this.datepicker?.hasAttribute('range') && this.hovered && this.isInRange(this.day, this.dateFrom, this.dateTo),
|
|
15865
15894
|
'lastHoveredDate': this.isLastHoveredDate(this.day, this.dateFrom, this.dateTo, this.hoveredDate) && this.datepicker && this.datepicker.hasAttribute('range'),
|
|
@@ -15881,8 +15910,8 @@ class AuroCalendarCell extends i$3 {
|
|
|
15881
15910
|
@focus="${outOfRange ? A$7 : this.handleHover}"
|
|
15882
15911
|
class="${e$3(buttonClasses)}"
|
|
15883
15912
|
?disabled="${outOfRange}"
|
|
15884
|
-
|
|
15885
|
-
|
|
15913
|
+
aria-disabled="${blackout ? 'true' : A$7}"
|
|
15914
|
+
aria-hidden="${outOfRange ? 'true' : A$7}"
|
|
15886
15915
|
aria-selected="${this.selected ? 'true' : 'false'}"
|
|
15887
15916
|
aria-current="${this.isCurrentDate ? 'date' : A$7}"
|
|
15888
15917
|
tabindex="${this.active ? '0' : '-1'}">
|
|
@@ -16094,8 +16123,12 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
16094
16123
|
}
|
|
16095
16124
|
} else if (key === 'ArrowDown' || key === 'ArrowUp') {
|
|
16096
16125
|
// Find the target day (same day-of-week, +/- 7 days)
|
|
16126
|
+
// Use Date arithmetic instead of fixed seconds to handle DST correctly
|
|
16097
16127
|
const increment = key === 'ArrowDown' ? 7 : -7;
|
|
16098
|
-
const
|
|
16128
|
+
const currentDate = new Date(activeCell.day.date * 1000);
|
|
16129
|
+
currentDate.setDate(currentDate.getDate() + increment);
|
|
16130
|
+
currentDate.setHours(0, 0, 0, 0);
|
|
16131
|
+
const targetDate = Math.floor(currentDate.getTime() / 1000);
|
|
16099
16132
|
|
|
16100
16133
|
// Look for the target date in this month's focusable cells
|
|
16101
16134
|
targetCell = focusableCells.find(cell => cell.day.date === targetDate);
|
|
@@ -16159,7 +16192,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
16159
16192
|
var _a, _b;
|
|
16160
16193
|
|
|
16161
16194
|
return b$8 `
|
|
16162
|
-
<div aria-labelledby="${this.getHeadingId()}"
|
|
16195
|
+
<div aria-labelledby="${this.getHeadingId()}">
|
|
16163
16196
|
<div class="header">
|
|
16164
16197
|
${this.renderPrevButton()}
|
|
16165
16198
|
<div class="headerTitle heading-xs" id="${this.getHeadingId()}" aria-live="polite" aria-atomic="true">
|
|
@@ -16174,7 +16207,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
16174
16207
|
${this.renderNextButton()}
|
|
16175
16208
|
</div>
|
|
16176
16209
|
|
|
16177
|
-
<div class="table" role="grid" aria-labelledby="${this.getHeadingId()}">
|
|
16210
|
+
<div class="table" role="grid" aria-labelledby="${this.getHeadingId()}" @keydown="${this.handleGridKeyDown}">
|
|
16178
16211
|
<div class="thead" role="rowgroup">
|
|
16179
16212
|
<div class="tr" role="row">
|
|
16180
16213
|
${(_a = this.dayNamesOfTheWeek) === null || _a === void 0 ? void 0 : _a.map((dayNameOfWeek, index) => this.renderDayOfWeek(dayNameOfWeek, index))}
|
|
@@ -16992,7 +17025,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
|
|
|
16992
17025
|
}
|
|
16993
17026
|
};
|
|
16994
17027
|
|
|
16995
|
-
var formkitVersion$2$1 = '
|
|
17028
|
+
var formkitVersion$2$1 = '202605182353';
|
|
16996
17029
|
|
|
16997
17030
|
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}
|
|
16998
17031
|
`,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}}
|
|
@@ -17282,7 +17315,8 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17282
17315
|
*/
|
|
17283
17316
|
announceMonthChange() {
|
|
17284
17317
|
const date = new Date(this.centralDate);
|
|
17285
|
-
const
|
|
17318
|
+
const localeCode = this.locale?.code || undefined;
|
|
17319
|
+
const formatter = new Intl.DateTimeFormat(localeCode, { month: 'long', year: 'numeric' });
|
|
17286
17320
|
this.announceSelection(formatter.format(date));
|
|
17287
17321
|
}
|
|
17288
17322
|
|
|
@@ -17462,9 +17496,19 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17462
17496
|
* @returns {Number|undefined} Unix timestamp (seconds) of the date to activate, or undefined.
|
|
17463
17497
|
*/
|
|
17464
17498
|
computeActiveDate() {
|
|
17465
|
-
const ONE_DAY = 86400; // seconds
|
|
17466
17499
|
const MAX_SCAN_DAYS = 366; // scan at most ~1 year in each direction
|
|
17467
17500
|
|
|
17501
|
+
/**
|
|
17502
|
+
* Adds days to a timestamp using Date arithmetic to handle DST correctly.
|
|
17503
|
+
* Returns a local-midnight-aligned timestamp in seconds.
|
|
17504
|
+
*/
|
|
17505
|
+
const addDays = (ts, days) => {
|
|
17506
|
+
const d = new Date(ts * 1000);
|
|
17507
|
+
d.setDate(d.getDate() + days);
|
|
17508
|
+
d.setHours(0, 0, 0, 0);
|
|
17509
|
+
return Math.floor(d.getTime() / 1000);
|
|
17510
|
+
};
|
|
17511
|
+
|
|
17468
17512
|
const rawMin = Number(this.min);
|
|
17469
17513
|
const rawMax = Number(this.max);
|
|
17470
17514
|
|
|
@@ -17477,6 +17521,17 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17477
17521
|
(this.disabledDays || []).map(d => parseInt(d, 10))
|
|
17478
17522
|
);
|
|
17479
17523
|
|
|
17524
|
+
// Also include ISO-format blackoutDates from the datepicker if available.
|
|
17525
|
+
// Parse YYYY-MM-DD as local date to avoid UTC shift issues.
|
|
17526
|
+
const isoBlackouts = this.datepicker?.blackoutDates;
|
|
17527
|
+
if (Array.isArray(isoBlackouts)) {
|
|
17528
|
+
for (const isoStr of isoBlackouts) {
|
|
17529
|
+
const parts = isoStr.split('-');
|
|
17530
|
+
const ts = Math.floor(new Date(parseInt(parts[0], 10), parseInt(parts[1], 10) - 1, parseInt(parts[2], 10)).getTime() / 1000);
|
|
17531
|
+
if (Number.isFinite(ts)) blackoutSet.add(ts);
|
|
17532
|
+
}
|
|
17533
|
+
}
|
|
17534
|
+
|
|
17480
17535
|
/**
|
|
17481
17536
|
* A date (unix timestamp in seconds, midnight-aligned) is "enabled" when
|
|
17482
17537
|
* it is within [min, max] AND not a blackout day.
|
|
@@ -17501,31 +17556,34 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17501
17556
|
if (isEnabled(now)) return now;
|
|
17502
17557
|
|
|
17503
17558
|
// 3. First future enabled date (scan forward from tomorrow, capped by max and MAX_SCAN_DAYS).
|
|
17504
|
-
|
|
17505
|
-
|
|
17506
|
-
|
|
17507
|
-
|
|
17508
|
-
for (let ts = now + ONE_DAY; ts <= scanMax; ts += ONE_DAY) {
|
|
17559
|
+
for (let idx = 1; idx <= MAX_SCAN_DAYS; idx++) {
|
|
17560
|
+
const ts = addDays(now, idx);
|
|
17561
|
+
if (Number.isFinite(maxTs) && ts > maxTs) break;
|
|
17509
17562
|
if (isEnabled(ts)) return ts;
|
|
17510
17563
|
}
|
|
17511
17564
|
|
|
17512
17565
|
// 4. First previous enabled date (scan backward from yesterday, capped by min and MAX_SCAN_DAYS).
|
|
17513
|
-
|
|
17514
|
-
|
|
17515
|
-
|
|
17516
|
-
|
|
17517
|
-
for (let ts = now - ONE_DAY; ts >= scanMin; ts -= ONE_DAY) {
|
|
17566
|
+
for (let idx = 1; idx <= MAX_SCAN_DAYS; idx++) {
|
|
17567
|
+
const ts = addDays(now, -idx);
|
|
17568
|
+
if (Number.isFinite(minTs) && ts < minTs) break;
|
|
17518
17569
|
if (isEnabled(ts)) return ts;
|
|
17519
17570
|
}
|
|
17520
17571
|
|
|
17521
17572
|
// 5. If scans missed (e.g. min/max range is far from today), fall back to
|
|
17522
17573
|
// the first enabled date in the [min, max] range.
|
|
17523
17574
|
if (Number.isFinite(minTs) && Number.isFinite(maxTs)) {
|
|
17524
|
-
|
|
17575
|
+
let ts = minTs;
|
|
17576
|
+
for (let idx = 0; ts <= maxTs; idx++) {
|
|
17525
17577
|
if (isEnabled(ts)) return ts;
|
|
17578
|
+
ts = addDays(minTs, idx + 1);
|
|
17526
17579
|
}
|
|
17527
17580
|
}
|
|
17528
17581
|
|
|
17582
|
+
// 6. All dates are blackout — fall back to the first in-range date so focus
|
|
17583
|
+
// still lands on a focusable (but not selectable) cell.
|
|
17584
|
+
if (Number.isFinite(minTs) && isInRange(minTs)) return minTs;
|
|
17585
|
+
if (isInRange(now)) return now;
|
|
17586
|
+
|
|
17529
17587
|
return undefined;
|
|
17530
17588
|
}
|
|
17531
17589
|
|
|
@@ -17584,8 +17642,12 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17584
17642
|
}
|
|
17585
17643
|
} else if (key === 'ArrowDown' || key === 'ArrowUp') {
|
|
17586
17644
|
// Vertical navigation: find same day-of-week +/- 7 days
|
|
17645
|
+
// Use Date arithmetic instead of fixed seconds to handle DST correctly
|
|
17587
17646
|
const increment = key === 'ArrowDown' ? 7 : -7;
|
|
17588
|
-
const
|
|
17647
|
+
const currentDate = new Date(fromDate * 1000);
|
|
17648
|
+
currentDate.setDate(currentDate.getDate() + increment);
|
|
17649
|
+
currentDate.setHours(0, 0, 0, 0);
|
|
17650
|
+
const targetDate = Math.floor(currentDate.getTime() / 1000);
|
|
17589
17651
|
|
|
17590
17652
|
const allCells = this.getAllFocusableCells();
|
|
17591
17653
|
let targetCell = allCells.find(cell => cell.day && cell.day.date === targetDate);
|
|
@@ -17650,7 +17712,8 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17650
17712
|
const monthElem = this.shadowRoot.querySelector(selector);
|
|
17651
17713
|
|
|
17652
17714
|
if (monthElem) {
|
|
17653
|
-
|
|
17715
|
+
const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
|
|
17716
|
+
monthElem.scrollIntoView({ block: 'nearest', behavior: prefersReducedMotion ? 'instant' : 'smooth' });
|
|
17654
17717
|
}
|
|
17655
17718
|
}
|
|
17656
17719
|
|
|
@@ -17679,7 +17742,8 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
17679
17742
|
*/
|
|
17680
17743
|
formatAnnouncementDate(timestamp) {
|
|
17681
17744
|
const date = new Date(parseInt(timestamp, 10) * 1000);
|
|
17682
|
-
const
|
|
17745
|
+
const localeCode = this.locale?.code || undefined;
|
|
17746
|
+
const formatter = new Intl.DateTimeFormat(localeCode, {
|
|
17683
17747
|
weekday: 'long', year: 'numeric', month: 'long', day: 'numeric'
|
|
17684
17748
|
});
|
|
17685
17749
|
return formatter.format(date);
|
|
@@ -21693,7 +21757,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
|
|
|
21693
21757
|
}
|
|
21694
21758
|
};
|
|
21695
21759
|
|
|
21696
|
-
var formkitVersion$1$2 = '
|
|
21760
|
+
var formkitVersion$1$2 = '202605182353';
|
|
21697
21761
|
|
|
21698
21762
|
let AuroElement$2$2 = class AuroElement extends i$3 {
|
|
21699
21763
|
static get properties() {
|
|
@@ -22614,6 +22678,14 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
22614
22678
|
}
|
|
22615
22679
|
};
|
|
22616
22680
|
this.addEventListener('keydown', this._bibTabHandler);
|
|
22681
|
+
|
|
22682
|
+
// Move initial focus into the bib content, matching FocusTrap behavior
|
|
22683
|
+
requestAnimationFrame(() => {
|
|
22684
|
+
const focusables = getFocusableElements$3(this.bibContent);
|
|
22685
|
+
if (focusables.length) {
|
|
22686
|
+
focusables[0].focus();
|
|
22687
|
+
}
|
|
22688
|
+
});
|
|
22617
22689
|
} else {
|
|
22618
22690
|
// Normal desktop: use FocusTrap on the bib element
|
|
22619
22691
|
this.focusTrap = new FocusTrap$3(this.bibContent);
|
|
@@ -22645,7 +22717,8 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
22645
22717
|
* Sets `inert` on sibling elements of the dropdown's top-level host
|
|
22646
22718
|
* so that content outside the dropdown is not interactive while the modal is open.
|
|
22647
22719
|
* Walks up through shadow DOM boundaries to find the outermost host element
|
|
22648
|
-
* in the light DOM, then sets `inert` on
|
|
22720
|
+
* in the light DOM, then sets `inert` on siblings at each ancestor level
|
|
22721
|
+
* to ensure all page content outside the host subtree is inert.
|
|
22649
22722
|
* @private
|
|
22650
22723
|
*/
|
|
22651
22724
|
_setPageInert() {
|
|
@@ -22664,15 +22737,18 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
22664
22737
|
host = host.getRootNode().host;
|
|
22665
22738
|
}
|
|
22666
22739
|
|
|
22667
|
-
|
|
22668
|
-
|
|
22669
|
-
|
|
22740
|
+
// Walk up the ancestor chain, inerting siblings at each level
|
|
22741
|
+
// to ensure the entire page outside the host subtree is inert.
|
|
22742
|
+
let current = host;
|
|
22743
|
+
while (current.parentElement) {
|
|
22744
|
+
const parent = current.parentElement;
|
|
22670
22745
|
for (const sibling of parent.children) {
|
|
22671
|
-
if (sibling !==
|
|
22746
|
+
if (sibling !== current && !sibling.inert) {
|
|
22672
22747
|
sibling.inert = true;
|
|
22673
22748
|
this._inertSiblings.push(sibling);
|
|
22674
22749
|
}
|
|
22675
22750
|
}
|
|
22751
|
+
current = parent;
|
|
22676
22752
|
}
|
|
22677
22753
|
}
|
|
22678
22754
|
|
|
@@ -29623,7 +29699,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
|
|
|
29623
29699
|
}
|
|
29624
29700
|
};
|
|
29625
29701
|
|
|
29626
|
-
var formkitVersion$8 = '
|
|
29702
|
+
var formkitVersion$8 = '202605182353';
|
|
29627
29703
|
|
|
29628
29704
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
29629
29705
|
// See LICENSE in the project root for license information.
|
|
@@ -30878,11 +30954,10 @@ function applyKeyboardStrategy$5(component, strategy, options = {}) {
|
|
|
30878
30954
|
// components/datepicker/docs/partials/keyboardBehavior.md
|
|
30879
30955
|
//
|
|
30880
30956
|
// Current behavior (transitional — full bib keyboard navigation is planned for a future iteration):
|
|
30881
|
-
// - The bib opens and closes via pointer/touch interaction only.
|
|
30882
30957
|
// - Escape closes the bib and prevents the event from reaching parent containers.
|
|
30883
|
-
// -
|
|
30958
|
+
// - Enter opens the bib when it is closed (trigger input only, not clear button).
|
|
30959
|
+
// - Space opens the bib when it is closed (trigger input only, not clear button).
|
|
30884
30960
|
// - Tab uses the browser's default tabindex sequence across trigger controls.
|
|
30885
|
-
// - Enter does not open or close the bib.
|
|
30886
30961
|
//
|
|
30887
30962
|
// This file is an intentional placeholder for most keys. When datepicker bib keyboard navigation is
|
|
30888
30963
|
// added, handlers should go here following the same strategy pattern used by
|
|
@@ -30906,7 +30981,13 @@ const datepickerKeyboardStrategy = {
|
|
|
30906
30981
|
return;
|
|
30907
30982
|
}
|
|
30908
30983
|
|
|
30909
|
-
//
|
|
30984
|
+
// Only open from the trigger input, not the clear button or other slotted elements.
|
|
30985
|
+
// evt.target is retargeted to the host in shadow DOM, so use composedPath() to find the real origin.
|
|
30986
|
+
const path = evt.composedPath();
|
|
30987
|
+
if (path.some(el => el.getAttribute?.('slot')?.includes('clear'))) {
|
|
30988
|
+
return;
|
|
30989
|
+
}
|
|
30990
|
+
|
|
30910
30991
|
evt.preventDefault();
|
|
30911
30992
|
|
|
30912
30993
|
component.dropdown.show();
|
|
@@ -30917,7 +30998,13 @@ const datepickerKeyboardStrategy = {
|
|
|
30917
30998
|
return;
|
|
30918
30999
|
}
|
|
30919
31000
|
|
|
30920
|
-
//
|
|
31001
|
+
// Only open from the trigger input, not the clear button or other slotted elements.
|
|
31002
|
+
// evt.target is retargeted to the host in shadow DOM, so use composedPath() to find the real origin.
|
|
31003
|
+
const path = evt.composedPath();
|
|
31004
|
+
if (path.some(el => el.getAttribute?.('slot')?.includes('clear'))) {
|
|
31005
|
+
return;
|
|
31006
|
+
}
|
|
31007
|
+
|
|
30921
31008
|
evt.preventDefault();
|
|
30922
31009
|
|
|
30923
31010
|
component.dropdown.show();
|
|
@@ -31882,9 +31969,10 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
31882
31969
|
|
|
31883
31970
|
// Show the month containing the selected date (or today) instead of
|
|
31884
31971
|
// whichever month the user last navigated to.
|
|
31972
|
+
// Respect consumer-provided centralDate/calendarStartDate if no value is set.
|
|
31885
31973
|
if (this.value && this.util.validDateStr(this.value, this.format)) {
|
|
31886
31974
|
this.calendarRenderUtil.updateCentralDate(this, this.formattedValue);
|
|
31887
|
-
} else if (!this.minDate) {
|
|
31975
|
+
} else if (!this.centralDate && !this.calendarStartDate && !this.minDate) {
|
|
31888
31976
|
this.calendarRenderUtil.updateCentralDate(this, new Date());
|
|
31889
31977
|
}
|
|
31890
31978
|
}
|
|
@@ -32175,6 +32263,11 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
32175
32263
|
} else {
|
|
32176
32264
|
this.value = newDate;
|
|
32177
32265
|
}
|
|
32266
|
+
|
|
32267
|
+
// For single-date picker, close the bib and return focus to trigger after selection
|
|
32268
|
+
if (!this.range) {
|
|
32269
|
+
this.hideBib();
|
|
32270
|
+
}
|
|
32178
32271
|
}
|
|
32179
32272
|
}
|
|
32180
32273
|
|
|
@@ -32347,10 +32440,28 @@ class AuroDatePicker extends AuroElement$6 {
|
|
|
32347
32440
|
this.setHasValue();
|
|
32348
32441
|
}
|
|
32349
32442
|
|
|
32443
|
+
if (changedProperties.has('blackoutDates')) {
|
|
32444
|
+
// Force calendar cells to re-render with updated blackout state.
|
|
32445
|
+
// requestUpdate on the calendar alone is insufficient because cells
|
|
32446
|
+
// don't receive blackoutDates as a bound property. Dispatching the
|
|
32447
|
+
// slot content event triggers handleSlotContent → requestUpdate on each cell.
|
|
32448
|
+
if (this.calendar) {
|
|
32449
|
+
this.calendar.requestUpdate();
|
|
32450
|
+
this.dispatchEvent(new CustomEvent('auroDatePicker-newSlotContent'));
|
|
32451
|
+
}
|
|
32452
|
+
}
|
|
32453
|
+
|
|
32350
32454
|
if (changedProperties.has('valueEnd') && this.inputList[1]) {
|
|
32351
32455
|
|
|
32352
32456
|
this.formattedValueEnd = this.util.toNorthAmericanFormat(this.valueEnd, this.format);
|
|
32353
32457
|
|
|
32458
|
+
if (this.cellClickActive) {
|
|
32459
|
+
this.cellClickActive = false;
|
|
32460
|
+
this.wasCellClick = true;
|
|
32461
|
+
} else {
|
|
32462
|
+
this.wasCellClick = false;
|
|
32463
|
+
}
|
|
32464
|
+
|
|
32354
32465
|
// update the calendar
|
|
32355
32466
|
if (this.valueEnd && this.util.validDateStr(this.valueEnd, this.format)) {
|
|
32356
32467
|
this.calendar.dateTo = this.convertToWcValidTime(this.formattedValueEnd);
|
|
@@ -36874,7 +36985,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$3 {
|
|
|
36874
36985
|
}
|
|
36875
36986
|
};
|
|
36876
36987
|
|
|
36877
|
-
var formkitVersion$7 = '
|
|
36988
|
+
var formkitVersion$7 = '202605182353';
|
|
36878
36989
|
|
|
36879
36990
|
let AuroElement$5 = class AuroElement extends i$3 {
|
|
36880
36991
|
static get properties() {
|
|
@@ -37795,6 +37906,14 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$5 {
|
|
|
37795
37906
|
}
|
|
37796
37907
|
};
|
|
37797
37908
|
this.addEventListener('keydown', this._bibTabHandler);
|
|
37909
|
+
|
|
37910
|
+
// Move initial focus into the bib content, matching FocusTrap behavior
|
|
37911
|
+
requestAnimationFrame(() => {
|
|
37912
|
+
const focusables = getFocusableElements$2(this.bibContent);
|
|
37913
|
+
if (focusables.length) {
|
|
37914
|
+
focusables[0].focus();
|
|
37915
|
+
}
|
|
37916
|
+
});
|
|
37798
37917
|
} else {
|
|
37799
37918
|
// Normal desktop: use FocusTrap on the bib element
|
|
37800
37919
|
this.focusTrap = new FocusTrap$2(this.bibContent);
|
|
@@ -37826,7 +37945,8 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$5 {
|
|
|
37826
37945
|
* Sets `inert` on sibling elements of the dropdown's top-level host
|
|
37827
37946
|
* so that content outside the dropdown is not interactive while the modal is open.
|
|
37828
37947
|
* Walks up through shadow DOM boundaries to find the outermost host element
|
|
37829
|
-
* in the light DOM, then sets `inert` on
|
|
37948
|
+
* in the light DOM, then sets `inert` on siblings at each ancestor level
|
|
37949
|
+
* to ensure all page content outside the host subtree is inert.
|
|
37830
37950
|
* @private
|
|
37831
37951
|
*/
|
|
37832
37952
|
_setPageInert() {
|
|
@@ -37845,15 +37965,18 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$5 {
|
|
|
37845
37965
|
host = host.getRootNode().host;
|
|
37846
37966
|
}
|
|
37847
37967
|
|
|
37848
|
-
|
|
37849
|
-
|
|
37850
|
-
|
|
37968
|
+
// Walk up the ancestor chain, inerting siblings at each level
|
|
37969
|
+
// to ensure the entire page outside the host subtree is inert.
|
|
37970
|
+
let current = host;
|
|
37971
|
+
while (current.parentElement) {
|
|
37972
|
+
const parent = current.parentElement;
|
|
37851
37973
|
for (const sibling of parent.children) {
|
|
37852
|
-
if (sibling !==
|
|
37974
|
+
if (sibling !== current && !sibling.inert) {
|
|
37853
37975
|
sibling.inert = true;
|
|
37854
37976
|
this._inertSiblings.push(sibling);
|
|
37855
37977
|
}
|
|
37856
37978
|
}
|
|
37979
|
+
current = parent;
|
|
37857
37980
|
}
|
|
37858
37981
|
}
|
|
37859
37982
|
|
|
@@ -39660,7 +39783,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
|
|
|
39660
39783
|
}
|
|
39661
39784
|
};
|
|
39662
39785
|
|
|
39663
|
-
var formkitVersion$6 = '
|
|
39786
|
+
var formkitVersion$6 = '202605182353';
|
|
39664
39787
|
|
|
39665
39788
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
39666
39789
|
// See LICENSE in the project root for license information.
|
|
@@ -43086,7 +43209,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
|
|
|
43086
43209
|
}
|
|
43087
43210
|
};
|
|
43088
43211
|
|
|
43089
|
-
var formkitVersion$5 = '
|
|
43212
|
+
var formkitVersion$5 = '202605182353';
|
|
43090
43213
|
|
|
43091
43214
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
43092
43215
|
// See LICENSE in the project root for license information.
|
|
@@ -45258,7 +45381,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
|
|
|
45258
45381
|
}
|
|
45259
45382
|
};
|
|
45260
45383
|
|
|
45261
|
-
var formkitVersion$4 = '
|
|
45384
|
+
var formkitVersion$4 = '202605182353';
|
|
45262
45385
|
|
|
45263
45386
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
45264
45387
|
// See LICENSE in the project root for license information.
|
|
@@ -50878,7 +51001,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
50878
51001
|
}
|
|
50879
51002
|
};
|
|
50880
51003
|
|
|
50881
|
-
var formkitVersion$2 = '
|
|
51004
|
+
var formkitVersion$2 = '202605182353';
|
|
50882
51005
|
|
|
50883
51006
|
let AuroElement$2$1 = class AuroElement extends i$3 {
|
|
50884
51007
|
static get properties() {
|
|
@@ -51799,6 +51922,14 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
51799
51922
|
}
|
|
51800
51923
|
};
|
|
51801
51924
|
this.addEventListener('keydown', this._bibTabHandler);
|
|
51925
|
+
|
|
51926
|
+
// Move initial focus into the bib content, matching FocusTrap behavior
|
|
51927
|
+
requestAnimationFrame(() => {
|
|
51928
|
+
const focusables = getFocusableElements$1(this.bibContent);
|
|
51929
|
+
if (focusables.length) {
|
|
51930
|
+
focusables[0].focus();
|
|
51931
|
+
}
|
|
51932
|
+
});
|
|
51802
51933
|
} else {
|
|
51803
51934
|
// Normal desktop: use FocusTrap on the bib element
|
|
51804
51935
|
this.focusTrap = new FocusTrap$1(this.bibContent);
|
|
@@ -51830,7 +51961,8 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
51830
51961
|
* Sets `inert` on sibling elements of the dropdown's top-level host
|
|
51831
51962
|
* so that content outside the dropdown is not interactive while the modal is open.
|
|
51832
51963
|
* Walks up through shadow DOM boundaries to find the outermost host element
|
|
51833
|
-
* in the light DOM, then sets `inert` on
|
|
51964
|
+
* in the light DOM, then sets `inert` on siblings at each ancestor level
|
|
51965
|
+
* to ensure all page content outside the host subtree is inert.
|
|
51834
51966
|
* @private
|
|
51835
51967
|
*/
|
|
51836
51968
|
_setPageInert() {
|
|
@@ -51849,15 +51981,18 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
51849
51981
|
host = host.getRootNode().host;
|
|
51850
51982
|
}
|
|
51851
51983
|
|
|
51852
|
-
|
|
51853
|
-
|
|
51854
|
-
|
|
51984
|
+
// Walk up the ancestor chain, inerting siblings at each level
|
|
51985
|
+
// to ensure the entire page outside the host subtree is inert.
|
|
51986
|
+
let current = host;
|
|
51987
|
+
while (current.parentElement) {
|
|
51988
|
+
const parent = current.parentElement;
|
|
51855
51989
|
for (const sibling of parent.children) {
|
|
51856
|
-
if (sibling !==
|
|
51990
|
+
if (sibling !== current && !sibling.inert) {
|
|
51857
51991
|
sibling.inert = true;
|
|
51858
51992
|
this._inertSiblings.push(sibling);
|
|
51859
51993
|
}
|
|
51860
51994
|
}
|
|
51995
|
+
current = parent;
|
|
51861
51996
|
}
|
|
51862
51997
|
}
|
|
51863
51998
|
|
|
@@ -58808,7 +58943,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
|
|
|
58808
58943
|
}
|
|
58809
58944
|
};
|
|
58810
58945
|
|
|
58811
|
-
var formkitVersion$1$1 = '
|
|
58946
|
+
var formkitVersion$1$1 = '202605182353';
|
|
58812
58947
|
|
|
58813
58948
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
58814
58949
|
// See LICENSE in the project root for license information.
|
|
@@ -59881,7 +60016,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
|
|
|
59881
60016
|
}
|
|
59882
60017
|
};
|
|
59883
60018
|
|
|
59884
|
-
var formkitVersion$3 = '
|
|
60019
|
+
var formkitVersion$3 = '202605182353';
|
|
59885
60020
|
|
|
59886
60021
|
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}`;
|
|
59887
60022
|
|
|
@@ -69371,7 +69506,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
69371
69506
|
}
|
|
69372
69507
|
};
|
|
69373
69508
|
|
|
69374
|
-
var formkitVersion$1 = '
|
|
69509
|
+
var formkitVersion$1 = '202605182353';
|
|
69375
69510
|
|
|
69376
69511
|
class AuroElement extends i$3 {
|
|
69377
69512
|
static get properties() {
|
|
@@ -70292,6 +70427,14 @@ class AuroDropdown extends AuroElement {
|
|
|
70292
70427
|
}
|
|
70293
70428
|
};
|
|
70294
70429
|
this.addEventListener('keydown', this._bibTabHandler);
|
|
70430
|
+
|
|
70431
|
+
// Move initial focus into the bib content, matching FocusTrap behavior
|
|
70432
|
+
requestAnimationFrame(() => {
|
|
70433
|
+
const focusables = getFocusableElements(this.bibContent);
|
|
70434
|
+
if (focusables.length) {
|
|
70435
|
+
focusables[0].focus();
|
|
70436
|
+
}
|
|
70437
|
+
});
|
|
70295
70438
|
} else {
|
|
70296
70439
|
// Normal desktop: use FocusTrap on the bib element
|
|
70297
70440
|
this.focusTrap = new FocusTrap(this.bibContent);
|
|
@@ -70323,7 +70466,8 @@ class AuroDropdown extends AuroElement {
|
|
|
70323
70466
|
* Sets `inert` on sibling elements of the dropdown's top-level host
|
|
70324
70467
|
* so that content outside the dropdown is not interactive while the modal is open.
|
|
70325
70468
|
* Walks up through shadow DOM boundaries to find the outermost host element
|
|
70326
|
-
* in the light DOM, then sets `inert` on
|
|
70469
|
+
* in the light DOM, then sets `inert` on siblings at each ancestor level
|
|
70470
|
+
* to ensure all page content outside the host subtree is inert.
|
|
70327
70471
|
* @private
|
|
70328
70472
|
*/
|
|
70329
70473
|
_setPageInert() {
|
|
@@ -70342,15 +70486,18 @@ class AuroDropdown extends AuroElement {
|
|
|
70342
70486
|
host = host.getRootNode().host;
|
|
70343
70487
|
}
|
|
70344
70488
|
|
|
70345
|
-
|
|
70346
|
-
|
|
70347
|
-
|
|
70489
|
+
// Walk up the ancestor chain, inerting siblings at each level
|
|
70490
|
+
// to ensure the entire page outside the host subtree is inert.
|
|
70491
|
+
let current = host;
|
|
70492
|
+
while (current.parentElement) {
|
|
70493
|
+
const parent = current.parentElement;
|
|
70348
70494
|
for (const sibling of parent.children) {
|
|
70349
|
-
if (sibling !==
|
|
70495
|
+
if (sibling !== current && !sibling.inert) {
|
|
70350
70496
|
sibling.inert = true;
|
|
70351
70497
|
this._inertSiblings.push(sibling);
|
|
70352
70498
|
}
|
|
70353
70499
|
}
|
|
70500
|
+
current = parent;
|
|
70354
70501
|
}
|
|
70355
70502
|
}
|
|
70356
70503
|
|
|
@@ -71317,7 +71464,7 @@ class AuroHelpText extends i$3 {
|
|
|
71317
71464
|
}
|
|
71318
71465
|
}
|
|
71319
71466
|
|
|
71320
|
-
var formkitVersion = '
|
|
71467
|
+
var formkitVersion = '202605182353';
|
|
71321
71468
|
|
|
71322
71469
|
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}`;
|
|
71323
71470
|
|