@aurodesignsystem-dev/auro-formkit 0.0.0-pr1554.2 → 0.0.0-pr1554.21
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 +54 -13
- package/components/combobox/demo/getting-started.min.js +54 -13
- package/components/combobox/demo/index.min.js +54 -13
- package/components/combobox/dist/index.js +54 -13
- package/components/combobox/dist/registered.js +54 -13
- package/components/counter/demo/customize.min.js +31 -9
- package/components/counter/demo/index.min.js +31 -9
- package/components/counter/dist/index.js +31 -9
- package/components/counter/dist/registered.js +31 -9
- package/components/datepicker/demo/customize.min.js +50 -11
- package/components/datepicker/demo/index.min.js +50 -11
- package/components/datepicker/dist/index.js +50 -11
- package/components/datepicker/dist/registered.js +50 -11
- package/components/dropdown/demo/customize.min.js +30 -8
- package/components/dropdown/demo/getting-started.min.js +30 -8
- package/components/dropdown/demo/index.min.js +30 -8
- package/components/dropdown/dist/auro-dropdown.d.ts +8 -0
- package/components/dropdown/dist/index.js +30 -8
- package/components/dropdown/dist/registered.js +30 -8
- package/components/form/demo/customize.min.js +187 -46
- package/components/form/demo/getting-started.min.js +187 -46
- package/components/form/demo/index.min.js +187 -46
- package/components/form/demo/registerDemoDeps.min.js +187 -46
- package/components/input/demo/customize.min.js +19 -2
- package/components/input/demo/getting-started.min.js +19 -2
- package/components/input/demo/index.min.js +19 -2
- package/components/input/dist/index.js +19 -2
- package/components/input/dist/registered.js +19 -2
- 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 +31 -9
- package/components/select/demo/getting-started.min.js +31 -9
- package/components/select/demo/index.min.js +31 -9
- package/components/select/dist/index.js +31 -9
- package/components/select/dist/registered.js +31 -9
- package/custom-elements.json +10 -0
- package/package.json +1 -1
|
@@ -13380,7 +13380,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$3 {
|
|
|
13380
13380
|
}
|
|
13381
13381
|
};
|
|
13382
13382
|
|
|
13383
|
-
var formkitVersion$8 = '
|
|
13383
|
+
var formkitVersion$8 = '202607160836';
|
|
13384
13384
|
|
|
13385
13385
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
13386
13386
|
// See LICENSE in the project root for license information.
|
|
@@ -13668,6 +13668,18 @@ let AuroInput$2 = class AuroInput extends BaseInput$2 {
|
|
|
13668
13668
|
checkDisplayValueSlotChange() {
|
|
13669
13669
|
const slot = this.shadowRoot?.querySelector('slot[name="displayValue"]');
|
|
13670
13670
|
if (!slot) {
|
|
13671
|
+
// Shadow slot not yet rendered — fall back to checking light-DOM
|
|
13672
|
+
// children so hasDisplayValueContent isn't stuck false when called
|
|
13673
|
+
// before firstUpdated (e.g. from auro-combobox during mount).
|
|
13674
|
+
// Check for any element (including custom elements like <auro-icon>
|
|
13675
|
+
// that render via shadow DOM with no text content).
|
|
13676
|
+
const lightDomNodes = Array.from(this.querySelectorAll('[slot="displayValue"]:not(slot)'));
|
|
13677
|
+
this.hasDisplayValueContent = lightDomNodes.some((node) => (
|
|
13678
|
+
node.textContent.trim().length > 0 ||
|
|
13679
|
+
node.children.length > 0 ||
|
|
13680
|
+
node.shadowRoot !== null
|
|
13681
|
+
));
|
|
13682
|
+
this.requestUpdate();
|
|
13671
13683
|
return;
|
|
13672
13684
|
}
|
|
13673
13685
|
const nodes = slot.assignedNodes({ flatten: true });
|
|
@@ -13678,15 +13690,20 @@ let AuroInput$2 = class AuroInput extends BaseInput$2 {
|
|
|
13678
13690
|
// displayValue wrapper to render (with hasContent class) but show
|
|
13679
13691
|
// nothing, blocking the combobox's synthetic displayValue from
|
|
13680
13692
|
// being visible on preset/deeplink load.
|
|
13693
|
+
// Custom elements (e.g. <auro-icon>) that render via shadow DOM are
|
|
13694
|
+
// treated as content even when they have no text or light-DOM children.
|
|
13681
13695
|
this.hasDisplayValueContent = nodes.some((node) => {
|
|
13682
13696
|
if (node.nodeType === Node.TEXT_NODE) {
|
|
13683
13697
|
return node.textContent.trim().length > 0;
|
|
13684
13698
|
}
|
|
13685
13699
|
if (node.nodeType === Node.ELEMENT_NODE) {
|
|
13686
|
-
return node.textContent.trim().length > 0 ||
|
|
13700
|
+
return node.textContent.trim().length > 0 ||
|
|
13701
|
+
node.children.length > 0 ||
|
|
13702
|
+
node.shadowRoot !== null;
|
|
13687
13703
|
}
|
|
13688
13704
|
return false;
|
|
13689
13705
|
});
|
|
13706
|
+
this.requestUpdate();
|
|
13690
13707
|
}
|
|
13691
13708
|
|
|
13692
13709
|
firstUpdated() {
|
|
@@ -27789,7 +27806,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
|
|
|
27789
27806
|
}
|
|
27790
27807
|
};
|
|
27791
27808
|
|
|
27792
|
-
var formkitVersion$2$1 = '
|
|
27809
|
+
var formkitVersion$2$1 = '202607160836';
|
|
27793
27810
|
|
|
27794
27811
|
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}
|
|
27795
27812
|
`,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}}
|
|
@@ -33517,7 +33534,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
|
|
|
33517
33534
|
}
|
|
33518
33535
|
};
|
|
33519
33536
|
|
|
33520
|
-
var formkitVersion$1$3 = '
|
|
33537
|
+
var formkitVersion$1$3 = '202607160836';
|
|
33521
33538
|
|
|
33522
33539
|
let AuroElement$2$2 = class AuroElement extends i$3 {
|
|
33523
33540
|
static get properties() {
|
|
@@ -33657,6 +33674,15 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
33657
33674
|
this.matchWidth = false;
|
|
33658
33675
|
this.noHideOnThisFocusLoss = false;
|
|
33659
33676
|
|
|
33677
|
+
/**
|
|
33678
|
+
* When true, the dropdown skips its generic focus restoration on close.
|
|
33679
|
+
* Intended for internal consumer coordination (e.g. auro-combobox), not as a
|
|
33680
|
+
* declarative attribute.
|
|
33681
|
+
* Separate from noHideOnThisFocusLoss (which controls auto-close behavior).
|
|
33682
|
+
* @private
|
|
33683
|
+
*/
|
|
33684
|
+
this.noFocusRestoreOnClose = false;
|
|
33685
|
+
|
|
33660
33686
|
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
33661
33687
|
|
|
33662
33688
|
// Layout Config
|
|
@@ -33831,10 +33857,23 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
33831
33857
|
const slot = this.trigger.querySelector('slot[name="trigger"]');
|
|
33832
33858
|
if (slot) {
|
|
33833
33859
|
const assigned = slot.assignedElements();
|
|
33834
|
-
const
|
|
33835
|
-
|
|
33836
|
-
|
|
33837
|
-
|
|
33860
|
+
for (const el of assigned) {
|
|
33861
|
+
if (el.hasAttribute('disabled')) {
|
|
33862
|
+
continue;
|
|
33863
|
+
}
|
|
33864
|
+
// Try finding a focusable descendant first (handles non-focusable
|
|
33865
|
+
// wrappers like <div> containing a <button>). If none found, try
|
|
33866
|
+
// focusing the element directly (works for custom elements like
|
|
33867
|
+
// auro-input that have delegatesFocus or a custom focus() method).
|
|
33868
|
+
const descendants = getFocusableElements$4(el);
|
|
33869
|
+
if (descendants.length > 0) {
|
|
33870
|
+
descendants[0].focus();
|
|
33871
|
+
return;
|
|
33872
|
+
}
|
|
33873
|
+
el.focus();
|
|
33874
|
+
if (document.activeElement === el) {
|
|
33875
|
+
return;
|
|
33876
|
+
}
|
|
33838
33877
|
}
|
|
33839
33878
|
}
|
|
33840
33879
|
// Fallback: try DOM children (non-slotted content)
|
|
@@ -34294,7 +34333,7 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
34294
34333
|
}
|
|
34295
34334
|
|
|
34296
34335
|
const eventType = event.detail.eventType || "unknown";
|
|
34297
|
-
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
|
|
34336
|
+
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown" && !this.noFocusRestoreOnClose) {
|
|
34298
34337
|
this.focusTrigger();
|
|
34299
34338
|
}
|
|
34300
34339
|
|
|
@@ -34302,9 +34341,9 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
|
|
|
34302
34341
|
// On Tab-driven close (eventType "focusloss"), let focus advance naturally
|
|
34303
34342
|
// — restoring to the trigger would trap the user on this dropdown, forcing
|
|
34304
34343
|
// an extra Tab to move on. Escape and outside-click still restore.
|
|
34305
|
-
// When
|
|
34344
|
+
// When noFocusRestoreOnClose is true, the consumer (e.g. combobox) manages
|
|
34306
34345
|
// its own focus restoration — skip the generic trigger focus to avoid races.
|
|
34307
|
-
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.
|
|
34346
|
+
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.noFocusRestoreOnClose) {
|
|
34308
34347
|
// wait til the bib gets fully closed and rendered
|
|
34309
34348
|
setTimeout(() => {
|
|
34310
34349
|
// Skip if the bib re-opened, or if focus moved intentionally outside the dropdown (not to body).
|
|
@@ -47170,7 +47209,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$3 {
|
|
|
47170
47209
|
}
|
|
47171
47210
|
};
|
|
47172
47211
|
|
|
47173
|
-
var formkitVersion$7 = '
|
|
47212
|
+
var formkitVersion$7 = '202607160836';
|
|
47174
47213
|
|
|
47175
47214
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
47176
47215
|
// See LICENSE in the project root for license information.
|
|
@@ -47458,6 +47497,18 @@ let AuroInput$1 = class AuroInput extends BaseInput$1 {
|
|
|
47458
47497
|
checkDisplayValueSlotChange() {
|
|
47459
47498
|
const slot = this.shadowRoot?.querySelector('slot[name="displayValue"]');
|
|
47460
47499
|
if (!slot) {
|
|
47500
|
+
// Shadow slot not yet rendered — fall back to checking light-DOM
|
|
47501
|
+
// children so hasDisplayValueContent isn't stuck false when called
|
|
47502
|
+
// before firstUpdated (e.g. from auro-combobox during mount).
|
|
47503
|
+
// Check for any element (including custom elements like <auro-icon>
|
|
47504
|
+
// that render via shadow DOM with no text content).
|
|
47505
|
+
const lightDomNodes = Array.from(this.querySelectorAll('[slot="displayValue"]:not(slot)'));
|
|
47506
|
+
this.hasDisplayValueContent = lightDomNodes.some((node) => (
|
|
47507
|
+
node.textContent.trim().length > 0 ||
|
|
47508
|
+
node.children.length > 0 ||
|
|
47509
|
+
node.shadowRoot !== null
|
|
47510
|
+
));
|
|
47511
|
+
this.requestUpdate();
|
|
47461
47512
|
return;
|
|
47462
47513
|
}
|
|
47463
47514
|
const nodes = slot.assignedNodes({ flatten: true });
|
|
@@ -47468,15 +47519,20 @@ let AuroInput$1 = class AuroInput extends BaseInput$1 {
|
|
|
47468
47519
|
// displayValue wrapper to render (with hasContent class) but show
|
|
47469
47520
|
// nothing, blocking the combobox's synthetic displayValue from
|
|
47470
47521
|
// being visible on preset/deeplink load.
|
|
47522
|
+
// Custom elements (e.g. <auro-icon>) that render via shadow DOM are
|
|
47523
|
+
// treated as content even when they have no text or light-DOM children.
|
|
47471
47524
|
this.hasDisplayValueContent = nodes.some((node) => {
|
|
47472
47525
|
if (node.nodeType === Node.TEXT_NODE) {
|
|
47473
47526
|
return node.textContent.trim().length > 0;
|
|
47474
47527
|
}
|
|
47475
47528
|
if (node.nodeType === Node.ELEMENT_NODE) {
|
|
47476
|
-
return node.textContent.trim().length > 0 ||
|
|
47529
|
+
return node.textContent.trim().length > 0 ||
|
|
47530
|
+
node.children.length > 0 ||
|
|
47531
|
+
node.shadowRoot !== null;
|
|
47477
47532
|
}
|
|
47478
47533
|
return false;
|
|
47479
47534
|
});
|
|
47535
|
+
this.requestUpdate();
|
|
47480
47536
|
}
|
|
47481
47537
|
|
|
47482
47538
|
firstUpdated() {
|
|
@@ -52123,7 +52179,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
|
|
|
52123
52179
|
}
|
|
52124
52180
|
};
|
|
52125
52181
|
|
|
52126
|
-
var formkitVersion$1$2 = '
|
|
52182
|
+
var formkitVersion$1$2 = '202607160836';
|
|
52127
52183
|
|
|
52128
52184
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
52129
52185
|
// See LICENSE in the project root for license information.
|
|
@@ -56271,7 +56327,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
|
|
|
56271
56327
|
}
|
|
56272
56328
|
};
|
|
56273
56329
|
|
|
56274
|
-
var formkitVersion$6 = '
|
|
56330
|
+
var formkitVersion$6 = '202607160836';
|
|
56275
56331
|
|
|
56276
56332
|
let AuroElement$1$2 = class AuroElement extends i$3 {
|
|
56277
56333
|
static get properties() {
|
|
@@ -56411,6 +56467,15 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
|
|
|
56411
56467
|
this.matchWidth = false;
|
|
56412
56468
|
this.noHideOnThisFocusLoss = false;
|
|
56413
56469
|
|
|
56470
|
+
/**
|
|
56471
|
+
* When true, the dropdown skips its generic focus restoration on close.
|
|
56472
|
+
* Intended for internal consumer coordination (e.g. auro-combobox), not as a
|
|
56473
|
+
* declarative attribute.
|
|
56474
|
+
* Separate from noHideOnThisFocusLoss (which controls auto-close behavior).
|
|
56475
|
+
* @private
|
|
56476
|
+
*/
|
|
56477
|
+
this.noFocusRestoreOnClose = false;
|
|
56478
|
+
|
|
56414
56479
|
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
56415
56480
|
|
|
56416
56481
|
// Layout Config
|
|
@@ -56585,10 +56650,23 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
|
|
|
56585
56650
|
const slot = this.trigger.querySelector('slot[name="trigger"]');
|
|
56586
56651
|
if (slot) {
|
|
56587
56652
|
const assigned = slot.assignedElements();
|
|
56588
|
-
const
|
|
56589
|
-
|
|
56590
|
-
|
|
56591
|
-
|
|
56653
|
+
for (const el of assigned) {
|
|
56654
|
+
if (el.hasAttribute('disabled')) {
|
|
56655
|
+
continue;
|
|
56656
|
+
}
|
|
56657
|
+
// Try finding a focusable descendant first (handles non-focusable
|
|
56658
|
+
// wrappers like <div> containing a <button>). If none found, try
|
|
56659
|
+
// focusing the element directly (works for custom elements like
|
|
56660
|
+
// auro-input that have delegatesFocus or a custom focus() method).
|
|
56661
|
+
const descendants = getFocusableElements$3(el);
|
|
56662
|
+
if (descendants.length > 0) {
|
|
56663
|
+
descendants[0].focus();
|
|
56664
|
+
return;
|
|
56665
|
+
}
|
|
56666
|
+
el.focus();
|
|
56667
|
+
if (document.activeElement === el) {
|
|
56668
|
+
return;
|
|
56669
|
+
}
|
|
56592
56670
|
}
|
|
56593
56671
|
}
|
|
56594
56672
|
// Fallback: try DOM children (non-slotted content)
|
|
@@ -57048,7 +57126,7 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
|
|
|
57048
57126
|
}
|
|
57049
57127
|
|
|
57050
57128
|
const eventType = event.detail.eventType || "unknown";
|
|
57051
|
-
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
|
|
57129
|
+
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown" && !this.noFocusRestoreOnClose) {
|
|
57052
57130
|
this.focusTrigger();
|
|
57053
57131
|
}
|
|
57054
57132
|
|
|
@@ -57056,9 +57134,9 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
|
|
|
57056
57134
|
// On Tab-driven close (eventType "focusloss"), let focus advance naturally
|
|
57057
57135
|
// — restoring to the trigger would trap the user on this dropdown, forcing
|
|
57058
57136
|
// an extra Tab to move on. Escape and outside-click still restore.
|
|
57059
|
-
// When
|
|
57137
|
+
// When noFocusRestoreOnClose is true, the consumer (e.g. combobox) manages
|
|
57060
57138
|
// its own focus restoration — skip the generic trigger focus to avoid races.
|
|
57061
|
-
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.
|
|
57139
|
+
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.noFocusRestoreOnClose) {
|
|
57062
57140
|
// wait til the bib gets fully closed and rendered
|
|
57063
57141
|
setTimeout(() => {
|
|
57064
57142
|
// Skip if the bib re-opened, or if focus moved intentionally outside the dropdown (not to body).
|
|
@@ -60298,7 +60376,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
|
|
|
60298
60376
|
}
|
|
60299
60377
|
};
|
|
60300
60378
|
|
|
60301
|
-
var formkitVersion$5 = '
|
|
60379
|
+
var formkitVersion$5 = '202607160836';
|
|
60302
60380
|
|
|
60303
60381
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
60304
60382
|
// See LICENSE in the project root for license information.
|
|
@@ -62063,7 +62141,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
|
|
|
62063
62141
|
}
|
|
62064
62142
|
};
|
|
62065
62143
|
|
|
62066
|
-
var formkitVersion$4 = '
|
|
62144
|
+
var formkitVersion$4 = '202607160836';
|
|
62067
62145
|
|
|
62068
62146
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
62069
62147
|
// See LICENSE in the project root for license information.
|
|
@@ -67376,7 +67454,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
67376
67454
|
}
|
|
67377
67455
|
};
|
|
67378
67456
|
|
|
67379
|
-
var formkitVersion$2 = '
|
|
67457
|
+
var formkitVersion$2 = '202607160836';
|
|
67380
67458
|
|
|
67381
67459
|
let AuroElement$2$1 = class AuroElement extends i$3 {
|
|
67382
67460
|
static get properties() {
|
|
@@ -67516,6 +67594,15 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
67516
67594
|
this.matchWidth = false;
|
|
67517
67595
|
this.noHideOnThisFocusLoss = false;
|
|
67518
67596
|
|
|
67597
|
+
/**
|
|
67598
|
+
* When true, the dropdown skips its generic focus restoration on close.
|
|
67599
|
+
* Intended for internal consumer coordination (e.g. auro-combobox), not as a
|
|
67600
|
+
* declarative attribute.
|
|
67601
|
+
* Separate from noHideOnThisFocusLoss (which controls auto-close behavior).
|
|
67602
|
+
* @private
|
|
67603
|
+
*/
|
|
67604
|
+
this.noFocusRestoreOnClose = false;
|
|
67605
|
+
|
|
67519
67606
|
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
67520
67607
|
|
|
67521
67608
|
// Layout Config
|
|
@@ -67690,10 +67777,23 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
67690
67777
|
const slot = this.trigger.querySelector('slot[name="trigger"]');
|
|
67691
67778
|
if (slot) {
|
|
67692
67779
|
const assigned = slot.assignedElements();
|
|
67693
|
-
const
|
|
67694
|
-
|
|
67695
|
-
|
|
67696
|
-
|
|
67780
|
+
for (const el of assigned) {
|
|
67781
|
+
if (el.hasAttribute('disabled')) {
|
|
67782
|
+
continue;
|
|
67783
|
+
}
|
|
67784
|
+
// Try finding a focusable descendant first (handles non-focusable
|
|
67785
|
+
// wrappers like <div> containing a <button>). If none found, try
|
|
67786
|
+
// focusing the element directly (works for custom elements like
|
|
67787
|
+
// auro-input that have delegatesFocus or a custom focus() method).
|
|
67788
|
+
const descendants = getFocusableElements$2(el);
|
|
67789
|
+
if (descendants.length > 0) {
|
|
67790
|
+
descendants[0].focus();
|
|
67791
|
+
return;
|
|
67792
|
+
}
|
|
67793
|
+
el.focus();
|
|
67794
|
+
if (document.activeElement === el) {
|
|
67795
|
+
return;
|
|
67796
|
+
}
|
|
67697
67797
|
}
|
|
67698
67798
|
}
|
|
67699
67799
|
// Fallback: try DOM children (non-slotted content)
|
|
@@ -68153,7 +68253,7 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
68153
68253
|
}
|
|
68154
68254
|
|
|
68155
68255
|
const eventType = event.detail.eventType || "unknown";
|
|
68156
|
-
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
|
|
68256
|
+
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown" && !this.noFocusRestoreOnClose) {
|
|
68157
68257
|
this.focusTrigger();
|
|
68158
68258
|
}
|
|
68159
68259
|
|
|
@@ -68161,9 +68261,9 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
|
|
|
68161
68261
|
// On Tab-driven close (eventType "focusloss"), let focus advance naturally
|
|
68162
68262
|
// — restoring to the trigger would trap the user on this dropdown, forcing
|
|
68163
68263
|
// an extra Tab to move on. Escape and outside-click still restore.
|
|
68164
|
-
// When
|
|
68264
|
+
// When noFocusRestoreOnClose is true, the consumer (e.g. combobox) manages
|
|
68165
68265
|
// its own focus restoration — skip the generic trigger focus to avoid races.
|
|
68166
|
-
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.
|
|
68266
|
+
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.noFocusRestoreOnClose) {
|
|
68167
68267
|
// wait til the bib gets fully closed and rendered
|
|
68168
68268
|
setTimeout(() => {
|
|
68169
68269
|
// Skip if the bib re-opened, or if focus moved intentionally outside the dropdown (not to body).
|
|
@@ -81029,7 +81129,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
|
|
|
81029
81129
|
}
|
|
81030
81130
|
};
|
|
81031
81131
|
|
|
81032
|
-
var formkitVersion$1$1 = '
|
|
81132
|
+
var formkitVersion$1$1 = '202607160836';
|
|
81033
81133
|
|
|
81034
81134
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
81035
81135
|
// See LICENSE in the project root for license information.
|
|
@@ -81317,6 +81417,18 @@ class AuroInput extends BaseInput {
|
|
|
81317
81417
|
checkDisplayValueSlotChange() {
|
|
81318
81418
|
const slot = this.shadowRoot?.querySelector('slot[name="displayValue"]');
|
|
81319
81419
|
if (!slot) {
|
|
81420
|
+
// Shadow slot not yet rendered — fall back to checking light-DOM
|
|
81421
|
+
// children so hasDisplayValueContent isn't stuck false when called
|
|
81422
|
+
// before firstUpdated (e.g. from auro-combobox during mount).
|
|
81423
|
+
// Check for any element (including custom elements like <auro-icon>
|
|
81424
|
+
// that render via shadow DOM with no text content).
|
|
81425
|
+
const lightDomNodes = Array.from(this.querySelectorAll('[slot="displayValue"]:not(slot)'));
|
|
81426
|
+
this.hasDisplayValueContent = lightDomNodes.some((node) => (
|
|
81427
|
+
node.textContent.trim().length > 0 ||
|
|
81428
|
+
node.children.length > 0 ||
|
|
81429
|
+
node.shadowRoot !== null
|
|
81430
|
+
));
|
|
81431
|
+
this.requestUpdate();
|
|
81320
81432
|
return;
|
|
81321
81433
|
}
|
|
81322
81434
|
const nodes = slot.assignedNodes({ flatten: true });
|
|
@@ -81327,15 +81439,20 @@ class AuroInput extends BaseInput {
|
|
|
81327
81439
|
// displayValue wrapper to render (with hasContent class) but show
|
|
81328
81440
|
// nothing, blocking the combobox's synthetic displayValue from
|
|
81329
81441
|
// being visible on preset/deeplink load.
|
|
81442
|
+
// Custom elements (e.g. <auro-icon>) that render via shadow DOM are
|
|
81443
|
+
// treated as content even when they have no text or light-DOM children.
|
|
81330
81444
|
this.hasDisplayValueContent = nodes.some((node) => {
|
|
81331
81445
|
if (node.nodeType === Node.TEXT_NODE) {
|
|
81332
81446
|
return node.textContent.trim().length > 0;
|
|
81333
81447
|
}
|
|
81334
81448
|
if (node.nodeType === Node.ELEMENT_NODE) {
|
|
81335
|
-
return node.textContent.trim().length > 0 ||
|
|
81449
|
+
return node.textContent.trim().length > 0 ||
|
|
81450
|
+
node.children.length > 0 ||
|
|
81451
|
+
node.shadowRoot !== null;
|
|
81336
81452
|
}
|
|
81337
81453
|
return false;
|
|
81338
81454
|
});
|
|
81455
|
+
this.requestUpdate();
|
|
81339
81456
|
}
|
|
81340
81457
|
|
|
81341
81458
|
firstUpdated() {
|
|
@@ -82162,7 +82279,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
|
|
|
82162
82279
|
}
|
|
82163
82280
|
};
|
|
82164
82281
|
|
|
82165
|
-
var formkitVersion$3 = '
|
|
82282
|
+
var formkitVersion$3 = '202607160836';
|
|
82166
82283
|
|
|
82167
82284
|
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}`;
|
|
82168
82285
|
|
|
@@ -83207,7 +83324,6 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
83207
83324
|
// hidden when input.value is set in the same tick as the append.
|
|
83208
83325
|
if (typeof this.input.checkDisplayValueSlotChange === 'function') {
|
|
83209
83326
|
this.input.checkDisplayValueSlotChange();
|
|
83210
|
-
this.input.requestUpdate();
|
|
83211
83327
|
}
|
|
83212
83328
|
} else if (this.value) {
|
|
83213
83329
|
// No optionSelected yet (e.g. setMenuValue was called but the menu's
|
|
@@ -83228,7 +83344,6 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
83228
83344
|
this.input.appendChild(syntheticDV);
|
|
83229
83345
|
if (typeof this.input.checkDisplayValueSlotChange === 'function') {
|
|
83230
83346
|
this.input.checkDisplayValueSlotChange();
|
|
83231
|
-
this.input.requestUpdate();
|
|
83232
83347
|
}
|
|
83233
83348
|
}
|
|
83234
83349
|
|
|
@@ -83401,6 +83516,10 @@ class AuroCombobox extends AuroElement$3 {
|
|
|
83401
83516
|
// from combobox's light DOM and won't be detected by dropdown's contains() check.
|
|
83402
83517
|
this.dropdown.noHideOnThisFocusLoss = true;
|
|
83403
83518
|
|
|
83519
|
+
// Suppress the dropdown's generic focus restoration on close — the combobox
|
|
83520
|
+
// manages its own focus via setClearBtnFocus / setInputFocus / keyboard strategy.
|
|
83521
|
+
this.dropdown.noFocusRestoreOnClose = true;
|
|
83522
|
+
|
|
83404
83523
|
// Listen for the ID to be added to the dropdown so we can capture it and use it for accessibility.
|
|
83405
83524
|
this.dropdown.addEventListener('auroDropdown-idAdded', (event) => {
|
|
83406
83525
|
this.dropdownId = event.detail.id;
|
|
@@ -91019,7 +91138,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
91019
91138
|
}
|
|
91020
91139
|
};
|
|
91021
91140
|
|
|
91022
|
-
var formkitVersion$1 = '
|
|
91141
|
+
var formkitVersion$1 = '202607160836';
|
|
91023
91142
|
|
|
91024
91143
|
class AuroElement extends i$3 {
|
|
91025
91144
|
static get properties() {
|
|
@@ -91159,6 +91278,15 @@ class AuroDropdown extends AuroElement {
|
|
|
91159
91278
|
this.matchWidth = false;
|
|
91160
91279
|
this.noHideOnThisFocusLoss = false;
|
|
91161
91280
|
|
|
91281
|
+
/**
|
|
91282
|
+
* When true, the dropdown skips its generic focus restoration on close.
|
|
91283
|
+
* Intended for internal consumer coordination (e.g. auro-combobox), not as a
|
|
91284
|
+
* declarative attribute.
|
|
91285
|
+
* Separate from noHideOnThisFocusLoss (which controls auto-close behavior).
|
|
91286
|
+
* @private
|
|
91287
|
+
*/
|
|
91288
|
+
this.noFocusRestoreOnClose = false;
|
|
91289
|
+
|
|
91162
91290
|
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
91163
91291
|
|
|
91164
91292
|
// Layout Config
|
|
@@ -91333,10 +91461,23 @@ class AuroDropdown extends AuroElement {
|
|
|
91333
91461
|
const slot = this.trigger.querySelector('slot[name="trigger"]');
|
|
91334
91462
|
if (slot) {
|
|
91335
91463
|
const assigned = slot.assignedElements();
|
|
91336
|
-
const
|
|
91337
|
-
|
|
91338
|
-
|
|
91339
|
-
|
|
91464
|
+
for (const el of assigned) {
|
|
91465
|
+
if (el.hasAttribute('disabled')) {
|
|
91466
|
+
continue;
|
|
91467
|
+
}
|
|
91468
|
+
// Try finding a focusable descendant first (handles non-focusable
|
|
91469
|
+
// wrappers like <div> containing a <button>). If none found, try
|
|
91470
|
+
// focusing the element directly (works for custom elements like
|
|
91471
|
+
// auro-input that have delegatesFocus or a custom focus() method).
|
|
91472
|
+
const descendants = getFocusableElements(el);
|
|
91473
|
+
if (descendants.length > 0) {
|
|
91474
|
+
descendants[0].focus();
|
|
91475
|
+
return;
|
|
91476
|
+
}
|
|
91477
|
+
el.focus();
|
|
91478
|
+
if (document.activeElement === el) {
|
|
91479
|
+
return;
|
|
91480
|
+
}
|
|
91340
91481
|
}
|
|
91341
91482
|
}
|
|
91342
91483
|
// Fallback: try DOM children (non-slotted content)
|
|
@@ -91796,7 +91937,7 @@ class AuroDropdown extends AuroElement {
|
|
|
91796
91937
|
}
|
|
91797
91938
|
|
|
91798
91939
|
const eventType = event.detail.eventType || "unknown";
|
|
91799
|
-
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
|
|
91940
|
+
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown" && !this.noFocusRestoreOnClose) {
|
|
91800
91941
|
this.focusTrigger();
|
|
91801
91942
|
}
|
|
91802
91943
|
|
|
@@ -91804,9 +91945,9 @@ class AuroDropdown extends AuroElement {
|
|
|
91804
91945
|
// On Tab-driven close (eventType "focusloss"), let focus advance naturally
|
|
91805
91946
|
// — restoring to the trigger would trap the user on this dropdown, forcing
|
|
91806
91947
|
// an extra Tab to move on. Escape and outside-click still restore.
|
|
91807
|
-
// When
|
|
91948
|
+
// When noFocusRestoreOnClose is true, the consumer (e.g. combobox) manages
|
|
91808
91949
|
// its own focus restoration — skip the generic trigger focus to avoid races.
|
|
91809
|
-
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.
|
|
91950
|
+
if (!this.isPopoverVisible && eventType !== "focusloss" && !this.noFocusRestoreOnClose) {
|
|
91810
91951
|
// wait til the bib gets fully closed and rendered
|
|
91811
91952
|
setTimeout(() => {
|
|
91812
91953
|
// Skip if the bib re-opened, or if focus moved intentionally outside the dropdown (not to body).
|
|
@@ -93092,7 +93233,7 @@ class AuroHelpText extends i$3 {
|
|
|
93092
93233
|
}
|
|
93093
93234
|
}
|
|
93094
93235
|
|
|
93095
|
-
var formkitVersion = '
|
|
93236
|
+
var formkitVersion = '202607160836';
|
|
93096
93237
|
|
|
93097
93238
|
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 [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}`;
|
|
93098
93239
|
|