@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.0 → 0.0.0-pr1595.2
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/api.md +2 -2
- package/components/combobox/demo/customize.min.js +26 -10
- package/components/combobox/demo/getting-started.min.js +26 -10
- package/components/combobox/demo/index.min.js +26 -10
- package/components/combobox/dist/auro-combobox.d.ts +10 -22
- package/components/combobox/dist/index.js +22 -8
- package/components/combobox/dist/registered.js +22 -8
- package/components/counter/demo/api.md +1 -1
- package/components/counter/demo/customize.min.js +6 -3
- package/components/counter/demo/index.min.js +6 -3
- package/components/counter/dist/auro-counter-group.d.ts +4 -4
- package/components/counter/dist/index.js +6 -3
- package/components/counter/dist/registered.js +6 -3
- package/components/datepicker/demo/api.md +3 -3
- package/components/datepicker/demo/customize.min.js +39 -10
- package/components/datepicker/demo/index.min.js +39 -10
- package/components/datepicker/dist/auro-calendar-cell.d.ts +4 -5
- package/components/datepicker/dist/auro-calendar-month.d.ts +2 -4
- package/components/datepicker/dist/auro-calendar.d.ts +10 -7
- package/components/datepicker/dist/auro-datepicker.d.ts +14 -19
- package/components/datepicker/dist/index.js +39 -10
- package/components/datepicker/dist/registered.js +39 -10
- package/components/dropdown/demo/api.md +1 -1
- package/components/dropdown/demo/customize.min.js +3 -2
- package/components/dropdown/demo/getting-started.min.js +16 -6
- package/components/dropdown/demo/index.min.js +3 -2
- package/components/dropdown/dist/auro-dropdown.d.ts +3 -6
- package/components/dropdown/dist/index.js +3 -2
- package/components/dropdown/dist/registered.js +3 -2
- package/components/form/demo/customize.min.js +92 -33
- package/components/form/demo/getting-started.min.js +92 -33
- package/components/form/demo/index.min.js +92 -33
- package/components/form/demo/registerDemoDeps.min.js +92 -33
- package/components/input/demo/customize.min.js +13 -4
- package/components/input/demo/getting-started.min.js +13 -4
- package/components/input/demo/index.min.js +13 -4
- package/components/input/dist/base-input.d.ts +12 -3
- package/components/input/dist/index.js +13 -4
- package/components/input/dist/registered.js +13 -4
- package/components/menu/demo/api.md +4 -3
- package/components/menu/demo/index.min.js +4 -2
- package/components/menu/dist/auro-menu.d.ts +3 -9
- package/components/menu/dist/auro-menuoption.d.ts +1 -1
- package/components/menu/dist/index.js +4 -2
- package/components/menu/dist/registered.js +4 -2
- package/components/radio/demo/api.md +1 -1
- package/components/radio/demo/customize.min.js +2 -1
- package/components/radio/demo/getting-started.min.js +2 -1
- package/components/radio/demo/index.min.js +2 -1
- package/components/radio/dist/auro-radio-group.d.ts +2 -4
- package/components/radio/dist/index.js +2 -1
- package/components/radio/dist/registered.js +2 -1
- package/components/select/demo/customize.min.js +9 -6
- package/components/select/demo/getting-started.min.js +9 -6
- package/components/select/demo/index.min.js +9 -6
- package/components/select/dist/auro-select.d.ts +1 -1
- package/components/select/dist/index.js +5 -4
- package/components/select/dist/registered.js +5 -4
- package/custom-elements.json +1542 -1582
- package/package.json +1 -1
|
@@ -11735,7 +11735,10 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
|
|
|
11735
11735
|
// during its own update cycle sees a populated util instance.
|
|
11736
11736
|
this.activeLabel = false;
|
|
11737
11737
|
|
|
11738
|
-
/**
|
|
11738
|
+
/**
|
|
11739
|
+
* @private
|
|
11740
|
+
* @type {string[]}
|
|
11741
|
+
*/
|
|
11739
11742
|
this.allowedInputTypes = [
|
|
11740
11743
|
"text",
|
|
11741
11744
|
"number",
|
|
@@ -11748,7 +11751,10 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
|
|
|
11748
11751
|
/** @type {'default' | 'inverse'} */
|
|
11749
11752
|
this.appearance = "default";
|
|
11750
11753
|
|
|
11751
|
-
/**
|
|
11754
|
+
/**
|
|
11755
|
+
* @private
|
|
11756
|
+
* @type {Record<string, string>}
|
|
11757
|
+
*/
|
|
11752
11758
|
this.dateFormatMap = {
|
|
11753
11759
|
'mm/dd/yyyy': 'dateMMDDYYYY',
|
|
11754
11760
|
'dd/mm/yyyy': 'dateDDMMYYYY',
|
|
@@ -11794,7 +11800,10 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
|
|
|
11794
11800
|
this.setCustomValidityForType = undefined;
|
|
11795
11801
|
// Credit Card is intentionally excluded — its mask manages the cursor
|
|
11796
11802
|
// itself, and listing it here caused cursor placement issues in Safari.
|
|
11797
|
-
/**
|
|
11803
|
+
/**
|
|
11804
|
+
* @private
|
|
11805
|
+
* @type {string[]}
|
|
11806
|
+
*/
|
|
11798
11807
|
this.setSelectionInputTypes = [
|
|
11799
11808
|
"text",
|
|
11800
11809
|
"password",
|
|
@@ -13505,7 +13514,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$3 {
|
|
|
13505
13514
|
}
|
|
13506
13515
|
};
|
|
13507
13516
|
|
|
13508
|
-
var formkitVersion$8 = '
|
|
13517
|
+
var formkitVersion$8 = '202608300041';
|
|
13509
13518
|
|
|
13510
13519
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
13511
13520
|
// See LICENSE in the project root for license information.
|
|
@@ -26030,6 +26039,8 @@ class AuroCalendarCell extends i$3 {
|
|
|
26030
26039
|
this.min = null;
|
|
26031
26040
|
this.max = null;
|
|
26032
26041
|
this.disabled = false;
|
|
26042
|
+
|
|
26043
|
+
/** @type {number[]} */
|
|
26033
26044
|
this.disabledDays = [];
|
|
26034
26045
|
this.isCurrentDate = false;
|
|
26035
26046
|
this._locale = null;
|
|
@@ -26111,6 +26122,7 @@ class AuroCalendarCell extends i$3 {
|
|
|
26111
26122
|
* consumers should migrate to `auro-datepicker.blackoutDates`
|
|
26112
26123
|
* (YYYY-MM-DD ISO strings). The calendar emits a one-time
|
|
26113
26124
|
* deprecation warning the first time a non-empty value is observed.
|
|
26125
|
+
* @type {number[]}
|
|
26114
26126
|
*/
|
|
26115
26127
|
disabledDays: {
|
|
26116
26128
|
type: Array,
|
|
@@ -27047,6 +27059,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
|
|
|
27047
27059
|
|
|
27048
27060
|
/**
|
|
27049
27061
|
* Names of all 12 months. When omitted, names are derived from `localeCode`.
|
|
27062
|
+
* @type {string[]}
|
|
27050
27063
|
*/
|
|
27051
27064
|
monthNames: {
|
|
27052
27065
|
type: Array,
|
|
@@ -28064,7 +28077,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
|
|
|
28064
28077
|
}
|
|
28065
28078
|
};
|
|
28066
28079
|
|
|
28067
|
-
var formkitVersion$2$1 = '
|
|
28080
|
+
var formkitVersion$2$1 = '202608300041';
|
|
28068
28081
|
|
|
28069
28082
|
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$2`${s$3(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$6`: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}
|
|
28070
28083
|
`,u$4$2=i$6`.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}}
|
|
@@ -28208,6 +28221,10 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
28208
28221
|
// Initialize the backing field directly so the constructor's default
|
|
28209
28222
|
// empty array doesn't trigger the deprecation warning. Assignments from
|
|
28210
28223
|
// consumers still route through the setter below.
|
|
28224
|
+
/**
|
|
28225
|
+
* @private
|
|
28226
|
+
* @type {number[]}
|
|
28227
|
+
*/
|
|
28211
28228
|
this._disabledDays = [];
|
|
28212
28229
|
|
|
28213
28230
|
/**
|
|
@@ -28216,7 +28233,9 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
28216
28233
|
this.numCalendars = undefined;
|
|
28217
28234
|
|
|
28218
28235
|
/**
|
|
28236
|
+
* Captured light-DOM slot nodes, keyed by slot name, forwarded into the bib.
|
|
28219
28237
|
* @private
|
|
28238
|
+
* @type {Record<string, Node[]>}
|
|
28220
28239
|
*/
|
|
28221
28240
|
this.slots = {};
|
|
28222
28241
|
|
|
@@ -28336,6 +28355,7 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
28336
28355
|
/**
|
|
28337
28356
|
* Dropdown element that contains the calendar.
|
|
28338
28357
|
* @private
|
|
28358
|
+
* @type {HTMLElement}
|
|
28339
28359
|
*/
|
|
28340
28360
|
dropdown: {
|
|
28341
28361
|
type: Object
|
|
@@ -28426,6 +28446,7 @@ class AuroCalendar extends RangeDatepicker {
|
|
|
28426
28446
|
|
|
28427
28447
|
/**
|
|
28428
28448
|
* Names of all 12 months. When omitted, names are derived from `localeCode`.
|
|
28449
|
+
* @type {string[]}
|
|
28429
28450
|
*/
|
|
28430
28451
|
monthNames: {
|
|
28431
28452
|
type: Array,
|
|
@@ -33839,7 +33860,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
|
|
|
33839
33860
|
}
|
|
33840
33861
|
};
|
|
33841
33862
|
|
|
33842
|
-
var formkitVersion$1$3 = '
|
|
33863
|
+
var formkitVersion$1$3 = '202608300041';
|
|
33843
33864
|
|
|
33844
33865
|
/**
|
|
33845
33866
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -34379,7 +34400,7 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
34379
34400
|
*/
|
|
34380
34401
|
hasTriggerContent: {
|
|
34381
34402
|
type: Boolean,
|
|
34382
|
-
attribute:
|
|
34403
|
+
attribute: false
|
|
34383
34404
|
},
|
|
34384
34405
|
|
|
34385
34406
|
/**
|
|
@@ -34502,6 +34523,7 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
34502
34523
|
|
|
34503
34524
|
/**
|
|
34504
34525
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
34526
|
+
* @type {() => void}
|
|
34505
34527
|
*/
|
|
34506
34528
|
onSlotChange: {
|
|
34507
34529
|
type: Function,
|
|
@@ -45918,7 +45940,10 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
|
|
|
45918
45940
|
// during its own update cycle sees a populated util instance.
|
|
45919
45941
|
this.activeLabel = false;
|
|
45920
45942
|
|
|
45921
|
-
/**
|
|
45943
|
+
/**
|
|
45944
|
+
* @private
|
|
45945
|
+
* @type {string[]}
|
|
45946
|
+
*/
|
|
45922
45947
|
this.allowedInputTypes = [
|
|
45923
45948
|
"text",
|
|
45924
45949
|
"number",
|
|
@@ -45931,7 +45956,10 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
|
|
|
45931
45956
|
/** @type {'default' | 'inverse'} */
|
|
45932
45957
|
this.appearance = "default";
|
|
45933
45958
|
|
|
45934
|
-
/**
|
|
45959
|
+
/**
|
|
45960
|
+
* @private
|
|
45961
|
+
* @type {Record<string, string>}
|
|
45962
|
+
*/
|
|
45935
45963
|
this.dateFormatMap = {
|
|
45936
45964
|
'mm/dd/yyyy': 'dateMMDDYYYY',
|
|
45937
45965
|
'dd/mm/yyyy': 'dateDDMMYYYY',
|
|
@@ -45977,7 +46005,10 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
|
|
|
45977
46005
|
this.setCustomValidityForType = undefined;
|
|
45978
46006
|
// Credit Card is intentionally excluded — its mask manages the cursor
|
|
45979
46007
|
// itself, and listing it here caused cursor placement issues in Safari.
|
|
45980
|
-
/**
|
|
46008
|
+
/**
|
|
46009
|
+
* @private
|
|
46010
|
+
* @type {string[]}
|
|
46011
|
+
*/
|
|
45981
46012
|
this.setSelectionInputTypes = [
|
|
45982
46013
|
"text",
|
|
45983
46014
|
"password",
|
|
@@ -47688,7 +47719,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$3 {
|
|
|
47688
47719
|
}
|
|
47689
47720
|
};
|
|
47690
47721
|
|
|
47691
|
-
var formkitVersion$7 = '
|
|
47722
|
+
var formkitVersion$7 = '202608300041';
|
|
47692
47723
|
|
|
47693
47724
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
47694
47725
|
// See LICENSE in the project root for license information.
|
|
@@ -49245,6 +49276,7 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49245
49276
|
// If `calendarStartDate` is set, use that as the central date. Otherwise, use the current date.
|
|
49246
49277
|
this.calendarRenderUtil.updateCentralDate(this, this.calendarStartDateObject ?? new Date());
|
|
49247
49278
|
|
|
49279
|
+
/** @type {'default' | 'inverse'} */
|
|
49248
49280
|
this.appearance = "default";
|
|
49249
49281
|
this.touched = false;
|
|
49250
49282
|
this.disabled = false;
|
|
@@ -49258,6 +49290,8 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49258
49290
|
this.rangeLabelInRange = 'in range';
|
|
49259
49291
|
this.rangeLabelAfterRange = 'after range';
|
|
49260
49292
|
this.rangeLabelEndPreview = 'previewing range end';
|
|
49293
|
+
|
|
49294
|
+
/** @type {string[]} */
|
|
49261
49295
|
this.blackoutDates = [];
|
|
49262
49296
|
this.blackoutLabel = 'unavailable';
|
|
49263
49297
|
this.navLabelPrevMonth = 'Previous month';
|
|
@@ -49284,6 +49318,7 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49284
49318
|
|
|
49285
49319
|
/**
|
|
49286
49320
|
* @private
|
|
49321
|
+
* @type {HTMLElement[]}
|
|
49287
49322
|
*/
|
|
49288
49323
|
this.dateSlotContent = [];
|
|
49289
49324
|
|
|
@@ -49428,6 +49463,7 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49428
49463
|
* `blackoutDates[i] = ...`, `blackoutDates.splice(...)`) will not
|
|
49429
49464
|
* invalidate the cache and the new entries will be silently ignored.
|
|
49430
49465
|
* To update, reassign the property: `el.blackoutDates = [...el.blackoutDates, '2024-12-25']`.
|
|
49466
|
+
* @type {string[]}
|
|
49431
49467
|
*/
|
|
49432
49468
|
blackoutDates: {
|
|
49433
49469
|
type: Array,
|
|
@@ -49550,13 +49586,13 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49550
49586
|
*/
|
|
49551
49587
|
hasAllValues: {
|
|
49552
49588
|
type: Boolean,
|
|
49553
|
-
attribute:
|
|
49589
|
+
attribute: false,
|
|
49554
49590
|
reflect: false
|
|
49555
49591
|
},
|
|
49556
49592
|
|
|
49557
49593
|
hasFocus: {
|
|
49558
49594
|
type: Boolean,
|
|
49559
|
-
attribute:
|
|
49595
|
+
attribute: false,
|
|
49560
49596
|
reflect: false,
|
|
49561
49597
|
},
|
|
49562
49598
|
|
|
@@ -49565,7 +49601,7 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49565
49601
|
*/
|
|
49566
49602
|
hasValue: {
|
|
49567
49603
|
type: Boolean,
|
|
49568
|
-
attribute:
|
|
49604
|
+
attribute: false,
|
|
49569
49605
|
reflect: false,
|
|
49570
49606
|
},
|
|
49571
49607
|
|
|
@@ -49651,6 +49687,7 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49651
49687
|
/**
|
|
49652
49688
|
* Names of all 12 months to render in the calendar.
|
|
49653
49689
|
* When omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`).
|
|
49690
|
+
* @type {string[]}
|
|
49654
49691
|
*/
|
|
49655
49692
|
monthNames: {
|
|
49656
49693
|
type: Array,
|
|
@@ -49819,6 +49856,7 @@ class AuroDatePicker extends AuroElement$5 {
|
|
|
49819
49856
|
/**
|
|
49820
49857
|
* Dates that the user should have for reference as part of their decision-making when selecting a date.
|
|
49821
49858
|
* This should be a JSON string array of ISO date strings (`YYYY-MM-DD`).
|
|
49859
|
+
* @type {string[]}
|
|
49822
49860
|
*/
|
|
49823
49861
|
referenceDates: {
|
|
49824
49862
|
type: Array,
|
|
@@ -52781,7 +52819,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
|
|
|
52781
52819
|
}
|
|
52782
52820
|
};
|
|
52783
52821
|
|
|
52784
|
-
var formkitVersion$1$2 = '
|
|
52822
|
+
var formkitVersion$1$2 = '202608300041';
|
|
52785
52823
|
|
|
52786
52824
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
52787
52825
|
// See LICENSE in the project root for license information.
|
|
@@ -56973,7 +57011,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
|
|
|
56973
57011
|
}
|
|
56974
57012
|
};
|
|
56975
57013
|
|
|
56976
|
-
var formkitVersion$6 = '
|
|
57014
|
+
var formkitVersion$6 = '202608300041';
|
|
56977
57015
|
|
|
56978
57016
|
/**
|
|
56979
57017
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -57513,7 +57551,7 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
|
|
|
57513
57551
|
*/
|
|
57514
57552
|
hasTriggerContent: {
|
|
57515
57553
|
type: Boolean,
|
|
57516
|
-
attribute:
|
|
57554
|
+
attribute: false
|
|
57517
57555
|
},
|
|
57518
57556
|
|
|
57519
57557
|
/**
|
|
@@ -57636,6 +57674,7 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
|
|
|
57636
57674
|
|
|
57637
57675
|
/**
|
|
57638
57676
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
57677
|
+
* @type {() => void}
|
|
57639
57678
|
*/
|
|
57640
57679
|
onSlotChange: {
|
|
57641
57680
|
type: Function,
|
|
@@ -59099,6 +59138,7 @@ class AuroCounterGroup extends AuroElement$4 {
|
|
|
59099
59138
|
constructor() {
|
|
59100
59139
|
super();
|
|
59101
59140
|
|
|
59141
|
+
/** @type {'default' | 'inverse'} */
|
|
59102
59142
|
this.appearance = "default";
|
|
59103
59143
|
this.max = undefined;
|
|
59104
59144
|
this.min = undefined;
|
|
@@ -59383,6 +59423,7 @@ class AuroCounterGroup extends AuroElement$4 {
|
|
|
59383
59423
|
|
|
59384
59424
|
/**
|
|
59385
59425
|
* The current individual values of the nested counters.
|
|
59426
|
+
* @type {Record<string, number>}
|
|
59386
59427
|
*/
|
|
59387
59428
|
value: {
|
|
59388
59429
|
type: Object,
|
|
@@ -61131,7 +61172,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
|
|
|
61131
61172
|
}
|
|
61132
61173
|
};
|
|
61133
61174
|
|
|
61134
|
-
var formkitVersion$5 = '
|
|
61175
|
+
var formkitVersion$5 = '202608300041';
|
|
61135
61176
|
|
|
61136
61177
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
61137
61178
|
// See LICENSE in the project root for license information.
|
|
@@ -61276,6 +61317,7 @@ class AuroRadioGroup extends i$3 {
|
|
|
61276
61317
|
|
|
61277
61318
|
/**
|
|
61278
61319
|
* Specifies the current selected radio button.
|
|
61320
|
+
* @type {HTMLElement}
|
|
61279
61321
|
*/
|
|
61280
61322
|
optionSelected: {
|
|
61281
61323
|
type: Object,
|
|
@@ -62923,7 +62965,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
|
|
|
62923
62965
|
}
|
|
62924
62966
|
};
|
|
62925
62967
|
|
|
62926
|
-
var formkitVersion$4 = '
|
|
62968
|
+
var formkitVersion$4 = '202608300041';
|
|
62927
62969
|
|
|
62928
62970
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
62929
62971
|
// See LICENSE in the project root for license information.
|
|
@@ -68288,7 +68330,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
68288
68330
|
}
|
|
68289
68331
|
};
|
|
68290
68332
|
|
|
68291
|
-
var formkitVersion$2 = '
|
|
68333
|
+
var formkitVersion$2 = '202608300041';
|
|
68292
68334
|
|
|
68293
68335
|
/**
|
|
68294
68336
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -68828,7 +68870,7 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
68828
68870
|
*/
|
|
68829
68871
|
hasTriggerContent: {
|
|
68830
68872
|
type: Boolean,
|
|
68831
|
-
attribute:
|
|
68873
|
+
attribute: false
|
|
68832
68874
|
},
|
|
68833
68875
|
|
|
68834
68876
|
/**
|
|
@@ -68951,6 +68993,7 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
68951
68993
|
|
|
68952
68994
|
/**
|
|
68953
68995
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
68996
|
+
* @type {() => void}
|
|
68954
68997
|
*/
|
|
68955
68998
|
onSlotChange: {
|
|
68956
68999
|
type: Function,
|
|
@@ -80367,7 +80410,10 @@ class BaseInput extends AuroElement$1$1 {
|
|
|
80367
80410
|
// during its own update cycle sees a populated util instance.
|
|
80368
80411
|
this.activeLabel = false;
|
|
80369
80412
|
|
|
80370
|
-
/**
|
|
80413
|
+
/**
|
|
80414
|
+
* @private
|
|
80415
|
+
* @type {string[]}
|
|
80416
|
+
*/
|
|
80371
80417
|
this.allowedInputTypes = [
|
|
80372
80418
|
"text",
|
|
80373
80419
|
"number",
|
|
@@ -80380,7 +80426,10 @@ class BaseInput extends AuroElement$1$1 {
|
|
|
80380
80426
|
/** @type {'default' | 'inverse'} */
|
|
80381
80427
|
this.appearance = "default";
|
|
80382
80428
|
|
|
80383
|
-
/**
|
|
80429
|
+
/**
|
|
80430
|
+
* @private
|
|
80431
|
+
* @type {Record<string, string>}
|
|
80432
|
+
*/
|
|
80384
80433
|
this.dateFormatMap = {
|
|
80385
80434
|
'mm/dd/yyyy': 'dateMMDDYYYY',
|
|
80386
80435
|
'dd/mm/yyyy': 'dateDDMMYYYY',
|
|
@@ -80426,7 +80475,10 @@ class BaseInput extends AuroElement$1$1 {
|
|
|
80426
80475
|
this.setCustomValidityForType = undefined;
|
|
80427
80476
|
// Credit Card is intentionally excluded — its mask manages the cursor
|
|
80428
80477
|
// itself, and listing it here caused cursor placement issues in Safari.
|
|
80429
|
-
/**
|
|
80478
|
+
/**
|
|
80479
|
+
* @private
|
|
80480
|
+
* @type {string[]}
|
|
80481
|
+
*/
|
|
80430
80482
|
this.setSelectionInputTypes = [
|
|
80431
80483
|
"text",
|
|
80432
80484
|
"password",
|
|
@@ -82137,7 +82189,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
|
|
|
82137
82189
|
}
|
|
82138
82190
|
};
|
|
82139
82191
|
|
|
82140
|
-
var formkitVersion$1$1 = '
|
|
82192
|
+
var formkitVersion$1$1 = '202608300041';
|
|
82141
82193
|
|
|
82142
82194
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
82143
82195
|
// See LICENSE in the project root for license information.
|
|
@@ -83329,7 +83381,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
|
|
|
83329
83381
|
}
|
|
83330
83382
|
};
|
|
83331
83383
|
|
|
83332
|
-
var formkitVersion$3 = '
|
|
83384
|
+
var formkitVersion$3 = '202608300041';
|
|
83333
83385
|
|
|
83334
83386
|
var styleCss$1$3 = i$6`.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}`;
|
|
83335
83387
|
|
|
@@ -83754,6 +83806,7 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
83754
83806
|
*/
|
|
83755
83807
|
_initializeDefaults() {
|
|
83756
83808
|
// Defaults that effect the combobox behavior and state
|
|
83809
|
+
/** @type {'default' | 'inverse'} */
|
|
83757
83810
|
this.appearance = "default";
|
|
83758
83811
|
this.disabled = false;
|
|
83759
83812
|
this.msgSelectionMissing = 'Please select an option.';
|
|
@@ -83839,7 +83892,7 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
83839
83892
|
|
|
83840
83893
|
/**
|
|
83841
83894
|
* Defines whether the component will be on lighter or darker backgrounds.
|
|
83842
|
-
* @
|
|
83895
|
+
* @type {'default' | 'inverse'}
|
|
83843
83896
|
* @default 'default'
|
|
83844
83897
|
*/
|
|
83845
83898
|
appearance: {
|
|
@@ -83868,6 +83921,7 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
83868
83921
|
* Array of available options to display in the dropdown.
|
|
83869
83922
|
* This array contains all non-hidden options (e.g., hidden by filtering on input value).
|
|
83870
83923
|
* @private
|
|
83924
|
+
* @type {HTMLElement[]}
|
|
83871
83925
|
*/
|
|
83872
83926
|
availableOptions: {
|
|
83873
83927
|
state: true,
|
|
@@ -84166,6 +84220,7 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
84166
84220
|
|
|
84167
84221
|
/**
|
|
84168
84222
|
* Applies the defined value as the type attribute on `auro-input`.
|
|
84223
|
+
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number' | 'date'}
|
|
84169
84224
|
*/
|
|
84170
84225
|
type: {
|
|
84171
84226
|
type: String,
|
|
@@ -84225,6 +84280,7 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
84225
84280
|
/**
|
|
84226
84281
|
* Specifies the currently active option.
|
|
84227
84282
|
* @private
|
|
84283
|
+
* @type {HTMLElement}
|
|
84228
84284
|
*/
|
|
84229
84285
|
optionActive: {
|
|
84230
84286
|
type: Object,
|
|
@@ -86178,7 +86234,7 @@ let menuInstanceIdCounter = 0;
|
|
|
86178
86234
|
* @event {CustomEvent<Element>} auroMenu-activatedOption - Notifies that a menuoption has been made `active`.
|
|
86179
86235
|
* @event {CustomEvent<any>} auroMenu-customEventFired - Notifies that a custom event has been fired.
|
|
86180
86236
|
* @event {CustomEvent<{ loading: boolean; hasLoadingPlaceholder: boolean; }>} auroMenu-loadingChange - Notifies when the loading attribute is changed.
|
|
86181
|
-
* @event {CustomEvent<{ options: Array }>} auroMenu-optionsChange - Notifies that the set of available menu options has changed.
|
|
86237
|
+
* @event {CustomEvent<{ options: Array<HTMLElement> }>} auroMenu-optionsChange - Notifies that the set of available menu options has changed.
|
|
86182
86238
|
* @event {CustomEvent<any>} auroMenu-selectValueFailure - Notifies that an attempt to select a menuoption by matching a value has failed.
|
|
86183
86239
|
* @event {CustomEvent<any>} auroMenu-selectValueReset - Notifies that the component value has been reset.
|
|
86184
86240
|
* @event {CustomEvent<any>} auroMenu-selectedOption - Notifies that a new menuoption selection has been made.
|
|
@@ -86360,6 +86416,7 @@ class AuroMenu extends AuroElement$2 {
|
|
|
86360
86416
|
/**
|
|
86361
86417
|
* Specifies the current active menuOption.
|
|
86362
86418
|
* @readonly
|
|
86419
|
+
* @type {HTMLElement}
|
|
86363
86420
|
*/
|
|
86364
86421
|
optionActive: {
|
|
86365
86422
|
type: Object,
|
|
@@ -86369,6 +86426,7 @@ class AuroMenu extends AuroElement$2 {
|
|
|
86369
86426
|
/**
|
|
86370
86427
|
* The currently selected menu option(s). In single-select mode this is a single `HTMLElement` (or `undefined` when nothing is selected). In multi-select mode this is an array of `HTMLElement`s.
|
|
86371
86428
|
* @readonly
|
|
86429
|
+
* @type {HTMLElement | HTMLElement[]}
|
|
86372
86430
|
*/
|
|
86373
86431
|
optionSelected: {
|
|
86374
86432
|
// Allow HTMLElement, HTMLElement[] arrays and undefined
|
|
@@ -87694,7 +87752,7 @@ class AuroMenuOption extends AuroElement$2 {
|
|
|
87694
87752
|
},
|
|
87695
87753
|
|
|
87696
87754
|
/**
|
|
87697
|
-
*
|
|
87755
|
+
* When set, selecting this option dispatches a custom event of the given name from the parent `auro-menu` (and an `auroMenu-customEventFired` event) instead of selecting the option.
|
|
87698
87756
|
*/
|
|
87699
87757
|
event: {
|
|
87700
87758
|
type: String,
|
|
@@ -92680,7 +92738,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
92680
92738
|
}
|
|
92681
92739
|
};
|
|
92682
92740
|
|
|
92683
|
-
var formkitVersion$1 = '
|
|
92741
|
+
var formkitVersion$1 = '202608300041';
|
|
92684
92742
|
|
|
92685
92743
|
/**
|
|
92686
92744
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -93220,7 +93278,7 @@ class AuroDropdown extends AuroElement {
|
|
|
93220
93278
|
*/
|
|
93221
93279
|
hasTriggerContent: {
|
|
93222
93280
|
type: Boolean,
|
|
93223
|
-
attribute:
|
|
93281
|
+
attribute: false
|
|
93224
93282
|
},
|
|
93225
93283
|
|
|
93226
93284
|
/**
|
|
@@ -93343,6 +93401,7 @@ class AuroDropdown extends AuroElement {
|
|
|
93343
93401
|
|
|
93344
93402
|
/**
|
|
93345
93403
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
93404
|
+
* @type {() => void}
|
|
93346
93405
|
*/
|
|
93347
93406
|
onSlotChange: {
|
|
93348
93407
|
type: Function,
|
|
@@ -94850,7 +94909,7 @@ class AuroHelpText extends i$3 {
|
|
|
94850
94909
|
}
|
|
94851
94910
|
}
|
|
94852
94911
|
|
|
94853
|
-
var formkitVersion = '
|
|
94912
|
+
var formkitVersion = '202608300041';
|
|
94854
94913
|
|
|
94855
94914
|
var styleCss = i$6`.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{max-width:100%}.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%;box-sizing:border-box;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{overflow:hidden;height:auto;text-overflow:ellipsis;white-space:nowrap}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}`;
|
|
94856
94915
|
|
|
@@ -95100,7 +95159,7 @@ class AuroSelect extends AuroElement$1 {
|
|
|
95100
95159
|
*/
|
|
95101
95160
|
isPopoverVisible: {
|
|
95102
95161
|
type: Boolean,
|
|
95103
|
-
attribute:
|
|
95162
|
+
attribute: false,
|
|
95104
95163
|
reflect: false
|
|
95105
95164
|
},
|
|
95106
95165
|
|