@aurodesignsystem-dev/auro-formkit 0.0.0-pr740.9 → 0.0.0-pr750.0
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/bibtemplate/dist/auro-bibtemplate.d.ts +6 -0
- package/components/bibtemplate/dist/index.js +25 -1
- package/components/bibtemplate/dist/registered.js +25 -1
- package/components/checkbox/demo/api.html +16 -10
- package/components/checkbox/demo/api.min.js +23 -16
- package/components/checkbox/demo/index.html +16 -10
- package/components/checkbox/demo/index.min.js +23 -16
- package/components/checkbox/demo/readme.html +16 -9
- package/components/checkbox/dist/index.js +23 -16
- package/components/checkbox/dist/registered.js +23 -16
- package/components/combobox/demo/api.html +16 -10
- package/components/combobox/demo/api.md +12 -6
- package/components/combobox/demo/api.min.js +442 -148
- package/components/combobox/demo/index.html +16 -10
- package/components/combobox/demo/index.min.js +442 -148
- package/components/combobox/demo/readme.html +16 -9
- package/components/combobox/dist/index.js +405 -136
- package/components/combobox/dist/registered.js +405 -136
- package/components/counter/demo/api.html +17 -10
- package/components/counter/demo/api.md +140 -7
- package/components/counter/demo/api.min.js +1171 -1016
- package/components/counter/demo/index.html +17 -10
- package/components/counter/demo/index.md +86 -0
- package/components/counter/demo/index.min.js +1171 -1016
- package/components/counter/demo/readme.html +16 -9
- package/components/counter/dist/auro-counter-group.d.ts +64 -23
- package/components/counter/dist/auro-counter.d.ts +10 -0
- package/components/counter/dist/index.js +1171 -1016
- package/components/counter/dist/registered.js +1171 -1016
- package/components/datepicker/demo/api.html +16 -10
- package/components/datepicker/demo/api.min.js +403 -123
- package/components/datepicker/demo/index.html +16 -10
- package/components/datepicker/demo/index.min.js +403 -123
- package/components/datepicker/demo/readme.html +16 -9
- package/components/datepicker/dist/auro-datepicker.d.ts +6 -0
- package/components/datepicker/dist/index.js +403 -123
- package/components/datepicker/dist/registered.js +403 -123
- package/components/dropdown/demo/api.html +16 -10
- package/components/dropdown/demo/api.md +77 -269
- package/components/dropdown/demo/api.min.js +336 -96
- package/components/dropdown/demo/index.html +16 -10
- package/components/dropdown/demo/index.md +45 -363
- package/components/dropdown/demo/index.min.js +336 -96
- package/components/dropdown/demo/readme.html +16 -9
- package/components/dropdown/dist/auro-dropdown.d.ts +35 -67
- package/components/dropdown/dist/auro-dropdownBib.d.ts +0 -6
- package/components/dropdown/dist/index.js +336 -96
- package/components/dropdown/dist/registered.js +336 -96
- package/components/form/demo/api.html +16 -9
- package/components/form/demo/autocomplete.html +19 -3
- package/components/form/demo/index.html +16 -9
- package/components/form/demo/readme.html +16 -9
- package/components/form/demo/working.html +19 -13
- package/components/helptext/dist/index.js +1 -1
- package/components/helptext/dist/registered.js +1 -1
- package/components/input/demo/api.html +16 -10
- package/components/input/demo/api.md +1 -1
- package/components/input/demo/api.min.js +14 -14
- package/components/input/demo/index.html +16 -10
- package/components/input/demo/index.min.js +14 -14
- package/components/input/demo/readme.html +16 -9
- package/components/input/dist/base-input.d.ts +1 -1
- package/components/input/dist/index.js +14 -14
- package/components/input/dist/registered.js +14 -14
- package/components/menu/demo/api.html +16 -32
- package/components/menu/demo/api.md +1 -1
- package/components/menu/demo/api.min.js +37 -12
- package/components/menu/demo/index.html +16 -10
- package/components/menu/demo/index.min.js +37 -12
- package/components/menu/demo/readme.html +16 -9
- package/components/menu/dist/auro-menu.d.ts +13 -2
- package/components/menu/dist/index.js +37 -12
- package/components/menu/dist/registered.js +37 -12
- package/components/radio/demo/api.html +16 -10
- package/components/radio/demo/api.md +0 -1
- package/components/radio/demo/api.min.js +61 -76
- package/components/radio/demo/index.html +16 -10
- package/components/radio/demo/index.min.js +61 -76
- package/components/radio/demo/readme.html +16 -9
- package/components/radio/dist/auro-radio.d.ts +8 -11
- package/components/radio/dist/index.js +61 -76
- package/components/radio/dist/registered.js +61 -76
- package/components/select/demo/api.html +16 -10
- package/components/select/demo/api.js +0 -2
- package/components/select/demo/api.md +53 -51
- package/components/select/demo/api.min.js +520 -358
- package/components/select/demo/index.html +16 -11
- package/components/select/demo/index.md +6 -158
- package/components/select/demo/index.min.js +520 -346
- package/components/select/demo/readme.html +16 -9
- package/components/select/dist/auro-select.d.ts +33 -8
- package/components/select/dist/index.js +483 -334
- package/components/select/dist/registered.js +483 -334
- package/package.json +26 -25
|
@@ -571,19 +571,19 @@ let AuroFormValidation$1 = class AuroFormValidation {
|
|
|
571
571
|
{
|
|
572
572
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
573
573
|
validity: 'tooShort',
|
|
574
|
-
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
574
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
575
575
|
},
|
|
576
576
|
{
|
|
577
577
|
check: (e) => e.value?.length > e.maxLength,
|
|
578
578
|
validity: 'tooLong',
|
|
579
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
579
|
+
message: e => e.getAttribute('setCustomValidityTooLong') || e.setCustomValidity || ''
|
|
580
580
|
}
|
|
581
581
|
],
|
|
582
582
|
pattern: [
|
|
583
583
|
{
|
|
584
584
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
585
585
|
validity: 'patternMismatch',
|
|
586
|
-
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
586
|
+
message: e => e.getAttribute('setCustomValidityPatternMismatch') || e.setCustomValidity || ''
|
|
587
587
|
}
|
|
588
588
|
]
|
|
589
589
|
},
|
|
@@ -778,10 +778,10 @@ let AuroFormValidation$1 = class AuroFormValidation {
|
|
|
778
778
|
if (!hasValue && elem.required && elem.touched) {
|
|
779
779
|
elem.validity = 'valueMissing';
|
|
780
780
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
781
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
781
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
782
782
|
this.validateType(elem);
|
|
783
783
|
this.validateElementAttributes(elem);
|
|
784
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
784
|
+
} else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
|
|
785
785
|
this.validateElementAttributes(elem);
|
|
786
786
|
}
|
|
787
787
|
}
|
|
@@ -1286,7 +1286,7 @@ class UtilitiesCalendarRender {
|
|
|
1286
1286
|
}
|
|
1287
1287
|
}
|
|
1288
1288
|
|
|
1289
|
-
var styleCss$e = i$2`.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([layout=classic]) [auro-input]::part(iconContainer){top:0;display:flex;height:100%;align-items:center}:host([layout=classic]) [auro-input]::part(accentIcon){transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1)}:host([layout=classic]) [auro-input]::part(helpText){display:none}:host([layout=classic]) [auro-input]::part(wrapper):focus-within:before{border-bottom-width:0 !important;box-shadow:unset !important;outline:unset !important}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent{display:flex;flex-direction:column}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent [auro-input]{flex:1}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent{flex-direction:row}:host([layout=classic]) [auro-input]::part(wrapper) [auro-input]:first-of-type{margin-right:var(--ds-size-150, 0.75rem);--ds-auro-input-border-color: transparent;--ds-auro-input-container-color: transparent}:host([layout=classic]) [auro-input]::part(wrapper) [auro-input]:not(:first-child)::part(wrapper)::after{position:absolute;left:50%;width:95%;height:1px;background-color:var(--ds-auro-datepicker-range-input-divider-color);content:"";transform:translateX(-50%)}:host([layout=classic]) [auro-input]::part(wrapper) .outerWrapper{position:relative;container:outerwrapper/inline-size}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent{display:flex;flex-direction:column}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent [auro-input]{flex:1}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) .dpTriggerContent{flex-direction:row}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:first-of-type{margin-right:var(--ds-size-150, 0.75rem)}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2){margin-left:var(--ds-size-150, 0.75rem)}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2)::part(accentIcon){display:none}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2)::part(label){left:0;width:100%}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2)::part(input){padding-left:0}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2):before{position:absolute;top:13px;left:calc(var(--ds-size-150, 0.75rem)*-1);display:block;width:1px;height:2rem;content:""}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:not(:first-child)::part(wrapper):after{content:none}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked])[range] [auro-input]{max-width:50%}@media screen and (max-width: 576px){
|
|
1289
|
+
var styleCss$e = i$2`.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([layout=classic]) [auro-input]::part(iconContainer){top:0;display:flex;height:100%;align-items:center}:host([layout=classic]) [auro-input]::part(accentIcon){transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1)}:host([layout=classic]) [auro-input]::part(helpText){display:none}:host([layout=classic]) [auro-input]::part(wrapper):focus-within:before{border-bottom-width:0 !important;box-shadow:unset !important;outline:unset !important}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent{display:flex;flex-direction:column}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent [auro-input]{flex:1}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent{flex-direction:row}:host([layout=classic]) [auro-input]::part(wrapper) [auro-input]:first-of-type{margin-right:var(--ds-size-150, 0.75rem);--ds-auro-input-border-color: transparent;--ds-auro-input-container-color: transparent}:host([layout=classic]) [auro-input]::part(wrapper) [auro-input]:not(:first-child)::part(wrapper)::after{position:absolute;left:50%;width:95%;height:1px;background-color:var(--ds-auro-datepicker-range-input-divider-color);content:"";transform:translateX(-50%)}:host([layout=classic]) [auro-input]::part(wrapper) .outerWrapper{position:relative;container:outerwrapper/inline-size}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent{display:flex;flex-direction:column}:host([layout=classic]) [auro-input]::part(wrapper) .dpTriggerContent [auro-input]{flex:1}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) .dpTriggerContent{flex-direction:row}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:first-of-type{margin-right:var(--ds-size-150, 0.75rem)}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2){margin-left:var(--ds-size-150, 0.75rem)}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2)::part(accentIcon){display:none}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2)::part(label){left:0;width:100%}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2)::part(input){padding-left:0}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:nth-child(2):before{position:absolute;top:13px;left:calc(var(--ds-size-150, 0.75rem)*-1);display:block;width:1px;height:2rem;content:""}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked]) [auro-input]:not(:first-child)::part(wrapper):after{content:none}:host([layout=classic]) [auro-input]::part(wrapper):not([stacked])[range] [auro-input]{max-width:50%}@media screen and (max-width: 576px){::part(popover){position:fixed !important;top:0 !important;left:0 !important;width:100vw !important;height:100vh !important;margin-bottom:var(--ds-size-200, 1rem);transform:unset !important}.calendarWrapper{display:flex;height:100dvh;flex-direction:row;justify-content:center}}`;
|
|
1290
1290
|
|
|
1291
1291
|
var colorCss$d = i$2`.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}[auro-input]::part(wrapper){--ds-auro-input-border-color: transparent;--ds-auro-input-container-color: transparent}.dpTriggerContent [auro-input]:nth-child(2):before{background-color:var(--ds-auro-datepicker-range-input-divider-color)}:host([onDark]){--ds-auro-datepicker-range-input-divider-color: var(--ds-basic-color-border-inverse, #ffffff)}`;
|
|
1292
1292
|
|
|
@@ -1296,7 +1296,7 @@ var shapeSizeCss$2 = i$2`.wrapper{overflow:hidden}.shape-classic-xl,.shape-class
|
|
|
1296
1296
|
|
|
1297
1297
|
var classicLayoutColor = i$2``;
|
|
1298
1298
|
|
|
1299
|
-
var snowflakeStyle = i$2`.accents{flex-grow:0;flex-shrink:0;display:flex;align-items:center;justify-content:center}.accents.left{padding-right:var(--ds-size-100, 0.5rem)}.accents.right{width:var(--ds-size-400, 2rem)}.mainContent{height:100%;max-height:100%;flex-grow:1;display:flex;flex-direction:column;justify-content:center;align-items:center}.inputSection{display:flex;flex-direction:row;align-items:center}.inputSection:not(:is(.disabled,.hasFocus,.hasValue)) .inputDivider{display:none}.inputContainer{display:flex;flex-direction:row;align-items:center;width:100%}.inputContainer:first-of-type{justify-content:flex-end}.inputContainer:last-of-type{justify-content:flex-start}:host([disabled]) .inputSection{display:none}:host([layout*=snowflake]) [auro-input]{flex:1;text-align:center}:host([layout*=snowflake]) [auro-input]::part(label),:host([layout*=snowflake]) [auro-input]::part(accent-left),:host([layout*=snowflake]) [auro-input]::part(accent-right){display:none}:host([layout*=snowflake]) [auro-input]::part(input){padding-bottom:unset;text-align:center;font-size:var(--ds-text-body-size-lg, 1.125rem);line-height:var(--ds-text-body-height-lg, 1.625rem);transition:unset}:host([layout*=snowflake]) [auro-input]::part(wrapper){min-height:unset;max-height:unset;box-shadow:unset}:host([layout*=snowflake]) [auro-input]::part(wrapper) .mainContent{padding-bottom:unset}:host([layout*=snowflake]) [auro-input]::part(inputHelpText){display:none}:host([layout*=snowflake]) [auro-dropdown]::part(trigger){width:100%}:host([layout*=snowflake]) .dpTriggerContent{width:100%}:host([layout*=snowflake]) .wrapper{height:60px;width:calc(100% - 48px);display:flex;flex-direction:row;justify-content:space-between;padding-left:24px;padding-right:24px}:host([layout*=snowflake]) label{font-size:var(--ds-text-body-size-lg, 1.125rem);line-height:var(--ds-text-body-height-lg, 1.625rem);font-weight:450;letter-spacing:0}:host([layout*=snowflake]) label.hasFocus,:host([layout*=snowflake]) label.hasValue{font-size:var(--ds-text-body-size-xs, 0.75rem);line-height:var(--ds-text-body-height-xs, 1rem)}:host([layout*=snowflake]) .inputDivider{height:18px;margin:4px 12px;width:2px}`;
|
|
1299
|
+
var snowflakeStyle = i$2`.accents{flex-grow:0;flex-shrink:0;display:flex;align-items:center;justify-content:center}.accents.left{padding-right:var(--ds-size-100, 0.5rem)}.accents.right{width:var(--ds-size-400, 2rem)}.mainContent{height:100%;max-height:100%;flex-grow:1;display:flex;flex-direction:column;justify-content:center;align-items:center}.inputSection{display:flex;flex-direction:row;align-items:center;width:100%;max-width:250px;margin:0 auto}.inputSection:not(:is(.disabled,.hasFocus,.hasValue)) .inputDivider{display:none}.inputContainer{display:flex;flex-direction:row;align-items:center;width:100%}.inputContainer:first-of-type{justify-content:flex-end}.inputContainer:last-of-type{justify-content:flex-start}:host([disabled]) .inputSection{display:none}:host([layout*=snowflake]) [auro-input]{flex:1;text-align:center}:host([layout*=snowflake]) [auro-input]::part(label),:host([layout*=snowflake]) [auro-input]::part(accent-left),:host([layout*=snowflake]) [auro-input]::part(accent-right){display:none}:host([layout*=snowflake]) [auro-input]::part(input){padding-bottom:unset;text-align:center;font-size:var(--ds-text-body-size-lg, 1.125rem);line-height:var(--ds-text-body-height-lg, 1.625rem);transition:unset}:host([layout*=snowflake]) [auro-input]::part(wrapper){min-height:unset;max-height:unset;box-shadow:unset}:host([layout*=snowflake]) [auro-input]::part(wrapper) .mainContent{padding-bottom:unset}:host([layout*=snowflake]) [auro-input]::part(inputHelpText){display:none}:host([layout*=snowflake]) [auro-dropdown]::part(trigger){width:100%}:host([layout*=snowflake]) .dpTriggerContent{width:100%}:host([layout*=snowflake]) .wrapper{height:60px;width:calc(100% - 48px);display:flex;flex-direction:row;justify-content:space-between;padding-left:24px;padding-right:24px}:host([layout*=snowflake]) label{font-size:var(--ds-text-body-size-lg, 1.125rem);line-height:var(--ds-text-body-height-lg, 1.625rem);font-weight:450;letter-spacing:0}:host([layout*=snowflake]) label.hasFocus,:host([layout*=snowflake]) label.hasValue{font-size:var(--ds-text-body-size-xs, 0.75rem);line-height:var(--ds-text-body-height-xs, 1rem)}:host([layout*=snowflake]) .inputDivider{height:18px;margin:4px 12px;width:2px}`;
|
|
1300
1300
|
|
|
1301
1301
|
var snowflakeColors = i$2`:host([layout=snowflake])[disabled] .mainContent label ::slotted(*){color:var(--ds-auro-icon-color)}:host([layout=snowflake]) label{color:var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([layout=snowflake]) .inputDivider{background-color:var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([layout=snowflake]) .error{color:var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host([layout=snowflake]) [auro-input]::part(input)::placeholder{color:var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([layout=snowflake]) [auro-dropdown]:not(:is([error],.hasFocus))::part(wrapper){--ds-auro-dropdown-trigger-border-color: transparent}`;
|
|
1302
1302
|
|
|
@@ -12726,6 +12726,30 @@ class AuroBibtemplate extends i {
|
|
|
12726
12726
|
AuroLibraryRuntimeUtils$3$1.prototype.registerComponent(name, AuroBibtemplate);
|
|
12727
12727
|
}
|
|
12728
12728
|
|
|
12729
|
+
/**
|
|
12730
|
+
* Prevents scrolling of the body when touching empty areas of the component.
|
|
12731
|
+
* @param {Event} event - The touchmove event.
|
|
12732
|
+
* @returns {void}
|
|
12733
|
+
*/
|
|
12734
|
+
preventBodyScroll(event) {
|
|
12735
|
+
if (event.target === this) {
|
|
12736
|
+
event.preventDefault();
|
|
12737
|
+
}
|
|
12738
|
+
}
|
|
12739
|
+
|
|
12740
|
+
connectedCallback() {
|
|
12741
|
+
super.connectedCallback();
|
|
12742
|
+
|
|
12743
|
+
this.preventBodyScroll = this.preventBodyScroll.bind(this);
|
|
12744
|
+
this.addEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
12745
|
+
}
|
|
12746
|
+
|
|
12747
|
+
disconnectedCallback() {
|
|
12748
|
+
super.disconnectedCallback();
|
|
12749
|
+
|
|
12750
|
+
this.removeEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
12751
|
+
}
|
|
12752
|
+
|
|
12729
12753
|
onCloseButtonClick() {
|
|
12730
12754
|
this.dispatchEvent(new Event("close-click", { bubbles: true,
|
|
12731
12755
|
composed: true }));
|
|
@@ -12757,7 +12781,7 @@ class AuroBibtemplate extends i {
|
|
|
12757
12781
|
<div id="bibTemplate" part="bibtemplate">
|
|
12758
12782
|
${this.isFullscreen ? u$3`
|
|
12759
12783
|
<div id="headerContainer">
|
|
12760
|
-
<${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
12784
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
12761
12785
|
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
12762
12786
|
</${this.buttonTag}>
|
|
12763
12787
|
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
@@ -16374,6 +16398,267 @@ class AuroFloatingUI {
|
|
|
16374
16398
|
}
|
|
16375
16399
|
}
|
|
16376
16400
|
|
|
16401
|
+
// Selectors for focusable elements
|
|
16402
|
+
const FOCUSABLE_SELECTORS = [
|
|
16403
|
+
'a[href]',
|
|
16404
|
+
'button:not([disabled])',
|
|
16405
|
+
'textarea:not([disabled])',
|
|
16406
|
+
'input:not([disabled])',
|
|
16407
|
+
'select:not([disabled])',
|
|
16408
|
+
'[role="tab"]:not([disabled])',
|
|
16409
|
+
'[role="link"]:not([disabled])',
|
|
16410
|
+
'[role="button"]:not([disabled])',
|
|
16411
|
+
'[tabindex]:not([tabindex="-1"])',
|
|
16412
|
+
'[contenteditable]:not([contenteditable="false"])'
|
|
16413
|
+
];
|
|
16414
|
+
|
|
16415
|
+
// List of custom components that are known to be focusable
|
|
16416
|
+
const FOCUSABLE_COMPONENTS = [
|
|
16417
|
+
'auro-checkbox',
|
|
16418
|
+
'auro-radio',
|
|
16419
|
+
'auro-dropdown',
|
|
16420
|
+
'auro-button',
|
|
16421
|
+
'auro-combobox',
|
|
16422
|
+
'auro-input',
|
|
16423
|
+
'auro-counter',
|
|
16424
|
+
'auro-menu',
|
|
16425
|
+
'auro-select',
|
|
16426
|
+
'auro-datepicker',
|
|
16427
|
+
'auro-hyperlink',
|
|
16428
|
+
'auro-accordion',
|
|
16429
|
+
];
|
|
16430
|
+
|
|
16431
|
+
/**
|
|
16432
|
+
* Determines if a given element is a custom focusable component.
|
|
16433
|
+
* Returns true if the element matches a known focusable component and is not disabled.
|
|
16434
|
+
*
|
|
16435
|
+
* @param {HTMLElement} element The element to check for focusability.
|
|
16436
|
+
* @returns {boolean} True if the element is a focusable custom component, false otherwise.
|
|
16437
|
+
*/
|
|
16438
|
+
function isFocusableComponent(element) {
|
|
16439
|
+
const componentName = element.tagName.toLowerCase();
|
|
16440
|
+
|
|
16441
|
+
// Guard Clause: Element is a focusable component
|
|
16442
|
+
if (!FOCUSABLE_COMPONENTS.some((name) => element.hasAttribute(name) || componentName === name)) return false;
|
|
16443
|
+
|
|
16444
|
+
// Guard Clause: Element is not disabled
|
|
16445
|
+
if (element.hasAttribute('disabled')) return false;
|
|
16446
|
+
|
|
16447
|
+
// Guard Clause: The element is a hyperlink and has no href attribute
|
|
16448
|
+
if (componentName.match("hyperlink") && !element.hasAttribute('href')) return false;
|
|
16449
|
+
|
|
16450
|
+
// If all guard clauses pass, the element is a focusable component
|
|
16451
|
+
return true;
|
|
16452
|
+
}
|
|
16453
|
+
|
|
16454
|
+
/**
|
|
16455
|
+
* Retrieves all focusable elements within the container in DOM order, including those in shadow DOM and slots.
|
|
16456
|
+
* Returns a unique, ordered array of elements that can receive focus.
|
|
16457
|
+
*
|
|
16458
|
+
* @param {HTMLElement} container The container to search within
|
|
16459
|
+
* @returns {Array<HTMLElement>} An array of focusable elements within the container.
|
|
16460
|
+
*/
|
|
16461
|
+
function getFocusableElements(container) {
|
|
16462
|
+
// Get elements in DOM order by walking the tree
|
|
16463
|
+
const orderedFocusableElements = [];
|
|
16464
|
+
|
|
16465
|
+
// Define a recursive function to collect focusable elements in DOM order
|
|
16466
|
+
const collectFocusableElements = (root) => {
|
|
16467
|
+
// Check if current element is focusable
|
|
16468
|
+
if (root.nodeType === Node.ELEMENT_NODE) {
|
|
16469
|
+
// Check if this is a custom component that is focusable
|
|
16470
|
+
const isComponentFocusable = isFocusableComponent(root);
|
|
16471
|
+
|
|
16472
|
+
if (isComponentFocusable) {
|
|
16473
|
+
// Add the component itself as a focusable element and don't traverse its shadow DOM
|
|
16474
|
+
orderedFocusableElements.push(root);
|
|
16475
|
+
return; // Skip traversing inside this component
|
|
16476
|
+
}
|
|
16477
|
+
|
|
16478
|
+
// Check if the element itself matches any selector
|
|
16479
|
+
for (const selector of FOCUSABLE_SELECTORS) {
|
|
16480
|
+
if (root.matches?.(selector)) {
|
|
16481
|
+
orderedFocusableElements.push(root);
|
|
16482
|
+
break; // Once we know it's focusable, no need to check other selectors
|
|
16483
|
+
}
|
|
16484
|
+
}
|
|
16485
|
+
|
|
16486
|
+
// Process shadow DOM only for non-Auro components
|
|
16487
|
+
if (root.shadowRoot) {
|
|
16488
|
+
// Process shadow DOM children in order
|
|
16489
|
+
if (root.shadowRoot.children) {
|
|
16490
|
+
Array.from(root.shadowRoot.children).forEach(child => {
|
|
16491
|
+
collectFocusableElements(child);
|
|
16492
|
+
});
|
|
16493
|
+
}
|
|
16494
|
+
}
|
|
16495
|
+
|
|
16496
|
+
// Process slots and their assigned nodes in order
|
|
16497
|
+
if (root.tagName === 'SLOT') {
|
|
16498
|
+
const assignedNodes = root.assignedNodes({ flatten: true });
|
|
16499
|
+
for (const node of assignedNodes) {
|
|
16500
|
+
collectFocusableElements(node);
|
|
16501
|
+
}
|
|
16502
|
+
} else {
|
|
16503
|
+
// Process light DOM children in order
|
|
16504
|
+
if (root.children) {
|
|
16505
|
+
Array.from(root.children).forEach(child => {
|
|
16506
|
+
collectFocusableElements(child);
|
|
16507
|
+
});
|
|
16508
|
+
}
|
|
16509
|
+
}
|
|
16510
|
+
}
|
|
16511
|
+
};
|
|
16512
|
+
|
|
16513
|
+
// Start the traversal from the container
|
|
16514
|
+
collectFocusableElements(container);
|
|
16515
|
+
|
|
16516
|
+
// Remove duplicates that might have been collected through different paths
|
|
16517
|
+
// while preserving order
|
|
16518
|
+
const uniqueElements = [];
|
|
16519
|
+
const seen = new Set();
|
|
16520
|
+
|
|
16521
|
+
for (const element of orderedFocusableElements) {
|
|
16522
|
+
if (!seen.has(element)) {
|
|
16523
|
+
seen.add(element);
|
|
16524
|
+
uniqueElements.push(element);
|
|
16525
|
+
}
|
|
16526
|
+
}
|
|
16527
|
+
|
|
16528
|
+
return uniqueElements;
|
|
16529
|
+
}
|
|
16530
|
+
|
|
16531
|
+
/**
|
|
16532
|
+
* FocusTrap manages keyboard focus within a specified container element, ensuring that focus does not leave the container when tabbing.
|
|
16533
|
+
* It is commonly used for modal dialogs or overlays to improve accessibility by trapping focus within interactive UI components.
|
|
16534
|
+
*/
|
|
16535
|
+
class FocusTrap {
|
|
16536
|
+
/**
|
|
16537
|
+
* Creates a new FocusTrap instance for the given container element.
|
|
16538
|
+
* Initializes event listeners and prepares the container for focus management.
|
|
16539
|
+
*
|
|
16540
|
+
* @param {HTMLElement} container The DOM element to trap focus within.
|
|
16541
|
+
* @throws {Error} If the provided container is not a valid HTMLElement.
|
|
16542
|
+
*/
|
|
16543
|
+
constructor(container) {
|
|
16544
|
+
if (!container || !(container instanceof HTMLElement)) {
|
|
16545
|
+
throw new Error("FocusTrap requires a valid HTMLElement.");
|
|
16546
|
+
}
|
|
16547
|
+
|
|
16548
|
+
this.container = container;
|
|
16549
|
+
this.tabDirection = 'forward'; // or 'backward'
|
|
16550
|
+
|
|
16551
|
+
this._init();
|
|
16552
|
+
}
|
|
16553
|
+
|
|
16554
|
+
/**
|
|
16555
|
+
* Initializes the focus trap by setting up event listeners and attributes on the container.
|
|
16556
|
+
* Prepares the container for focus management, including support for shadow DOM and inert attributes.
|
|
16557
|
+
*
|
|
16558
|
+
* @private
|
|
16559
|
+
*/
|
|
16560
|
+
_init() {
|
|
16561
|
+
|
|
16562
|
+
// Add inert attribute to prevent focusing programmatically as well (if supported)
|
|
16563
|
+
if ('inert' in HTMLElement.prototype) {
|
|
16564
|
+
this.container.inert = false; // Ensure the container isn't inert
|
|
16565
|
+
this.container.setAttribute('data-focus-trap-container', true); // Mark for identification
|
|
16566
|
+
}
|
|
16567
|
+
|
|
16568
|
+
// Track tab direction
|
|
16569
|
+
this.container.addEventListener('keydown', this._onKeydown);
|
|
16570
|
+
}
|
|
16571
|
+
|
|
16572
|
+
/**
|
|
16573
|
+
* Handles keydown events to manage tab navigation within the container.
|
|
16574
|
+
* Ensures that focus wraps around when reaching the first or last focusable element.
|
|
16575
|
+
*
|
|
16576
|
+
* @param {KeyboardEvent} e The keyboard event triggered by user interaction.
|
|
16577
|
+
* @private
|
|
16578
|
+
*/
|
|
16579
|
+
_onKeydown = (e) => {
|
|
16580
|
+
|
|
16581
|
+
if (e.key === 'Tab') {
|
|
16582
|
+
|
|
16583
|
+
// Set the tab direction based on the key pressed
|
|
16584
|
+
this.tabDirection = e.shiftKey ? 'backward' : 'forward';
|
|
16585
|
+
|
|
16586
|
+
// Get the active element(s) in the document and shadow root
|
|
16587
|
+
// This will include the active element in the shadow DOM if it exists
|
|
16588
|
+
// Active element may be inside the shadow DOM depending on delegatesFocus, so we need to check both
|
|
16589
|
+
let activeElement = document.activeElement;
|
|
16590
|
+
const actives = [activeElement];
|
|
16591
|
+
while (activeElement?.shadowRoot?.activeElement) {
|
|
16592
|
+
actives.push(activeElement.shadowRoot.activeElement);
|
|
16593
|
+
activeElement = activeElement.shadowRoot.activeElement;
|
|
16594
|
+
}
|
|
16595
|
+
|
|
16596
|
+
// Update the focusable elements
|
|
16597
|
+
const focusables = this._getFocusableElements();
|
|
16598
|
+
|
|
16599
|
+
// If we're at either end of the focusable elements, wrap around to the other end
|
|
16600
|
+
const focusIndex =
|
|
16601
|
+
(actives.includes(focusables[0]) || actives.includes(this.container)) && this.tabDirection === 'backward'
|
|
16602
|
+
? focusables.length - 1
|
|
16603
|
+
: actives.includes(focusables[focusables.length - 1]) && this.tabDirection === 'forward'
|
|
16604
|
+
? 0
|
|
16605
|
+
: null;
|
|
16606
|
+
|
|
16607
|
+
if (focusIndex !== null) {
|
|
16608
|
+
focusables[focusIndex].focus();
|
|
16609
|
+
e.preventDefault(); // Prevent default tab behavior
|
|
16610
|
+
e.stopPropagation(); // Stop the event from bubbling up
|
|
16611
|
+
}
|
|
16612
|
+
}
|
|
16613
|
+
};
|
|
16614
|
+
|
|
16615
|
+
/**
|
|
16616
|
+
* Retrieves all focusable elements within the container in DOM order, including those in shadow DOM and slots.
|
|
16617
|
+
* Returns a unique, ordered array of elements that can receive focus.
|
|
16618
|
+
*
|
|
16619
|
+
* @returns {Array<HTMLElement>} An array of focusable elements within the container.
|
|
16620
|
+
* @private
|
|
16621
|
+
*/
|
|
16622
|
+
_getFocusableElements() {
|
|
16623
|
+
// Use the imported utility function to get focusable elements
|
|
16624
|
+
const elements = getFocusableElements(this.container);
|
|
16625
|
+
|
|
16626
|
+
// Filter out any elements with the 'focus-bookend' class
|
|
16627
|
+
return elements;
|
|
16628
|
+
}
|
|
16629
|
+
|
|
16630
|
+
/**
|
|
16631
|
+
* Moves focus to the first focusable element within the container.
|
|
16632
|
+
* Useful for setting initial focus when activating the focus trap.
|
|
16633
|
+
*/
|
|
16634
|
+
focusFirstElement() {
|
|
16635
|
+
const focusables = this._getFocusableElements();
|
|
16636
|
+
if (focusables.length) focusables[0].focus();
|
|
16637
|
+
}
|
|
16638
|
+
|
|
16639
|
+
/**
|
|
16640
|
+
* Moves focus to the last focusable element within the container.
|
|
16641
|
+
* Useful for setting focus when deactivating or cycling focus in reverse.
|
|
16642
|
+
*/
|
|
16643
|
+
focusLastElement() {
|
|
16644
|
+
const focusables = this._getFocusableElements();
|
|
16645
|
+
if (focusables.length) focusables[focusables.length - 1].focus();
|
|
16646
|
+
}
|
|
16647
|
+
|
|
16648
|
+
/**
|
|
16649
|
+
* Removes event listeners and attributes added by the focus trap.
|
|
16650
|
+
* Call this method to clean up when the focus trap is no longer needed.
|
|
16651
|
+
*/
|
|
16652
|
+
disconnect() {
|
|
16653
|
+
|
|
16654
|
+
if (this.container.hasAttribute('data-focus-trap-container')) {
|
|
16655
|
+
this.container.removeAttribute('data-focus-trap-container');
|
|
16656
|
+
}
|
|
16657
|
+
|
|
16658
|
+
this.container.removeEventListener('keydown', this._onKeydown);
|
|
16659
|
+
}
|
|
16660
|
+
}
|
|
16661
|
+
|
|
16377
16662
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
16378
16663
|
// See LICENSE in the project root for license information.
|
|
16379
16664
|
|
|
@@ -16811,11 +17096,11 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
16811
17096
|
|
|
16812
17097
|
var iconVersion$2 = '6.1.2';
|
|
16813
17098
|
|
|
16814
|
-
var styleCss$1$2 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){top:0;left:0
|
|
17099
|
+
var styleCss$1$2 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
16815
17100
|
|
|
16816
17101
|
var colorCss$2$1 = i$2`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
16817
17102
|
|
|
16818
|
-
var tokensCss$1$2 = i$2`:host(:not([ondark])){--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-muted, #676767);--ds-auro-dropdown-trigger-background-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-dropdown-trigger-container-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-border-bold, #585e67);--ds-auro-dropdown-trigger-outline-color: transparent;--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-
|
|
17103
|
+
var tokensCss$1$2 = i$2`:host(:not([ondark])){--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-muted, #676767);--ds-auro-dropdown-trigger-background-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-dropdown-trigger-container-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-border-bold, #585e67);--ds-auro-dropdown-trigger-outline-color: transparent;--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-dropdownbib-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-background-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-dropdownbib-container-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-dropdownbib-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]){--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db);--ds-auro-dropdown-trigger-background-color: var(--ds-advanced-color-shared-background-inverse, rgba(255, 255, 255, 0.15));--ds-auro-dropdown-trigger-container-color: var(--ds-advanced-color-shared-background-inverse, rgba(255, 255, 255, 0.15));--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-border-inverse, #ffffff);--ds-auro-dropdown-trigger-outline-color: transparent;--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-inverse, #ffffff);--ds-auro-dropdownbib-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-background-color: var(--ds-advanced-color-shared-background-inverse, rgba(255, 255, 255, 0.15));--ds-auro-dropdownbib-container-color: var(--ds-advanced-color-shared-background-inverse, rgba(255, 255, 255, 0.15));--ds-auro-dropdownbib-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}`;
|
|
16819
17104
|
|
|
16820
17105
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
16821
17106
|
// See LICENSE in the project root for license information.
|
|
@@ -16975,17 +17260,6 @@ class AuroDropdownBib extends i {
|
|
|
16975
17260
|
}
|
|
16976
17261
|
}
|
|
16977
17262
|
});
|
|
16978
|
-
|
|
16979
|
-
this.preventBodyScroll = this.preventBodyScroll.bind(this);
|
|
16980
|
-
this.addEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
16981
|
-
this.addEventListener('touchstart', this.preventBodyScroll, { passive: false });
|
|
16982
|
-
}
|
|
16983
|
-
|
|
16984
|
-
disconnectedCallback() {
|
|
16985
|
-
super.disconnectedCallback();
|
|
16986
|
-
|
|
16987
|
-
this.removeEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
16988
|
-
this.removeEventListener('touchstart', this.preventBodyScroll, { passive: false });
|
|
16989
17263
|
}
|
|
16990
17264
|
|
|
16991
17265
|
firstUpdated(changedProperties) {
|
|
@@ -17001,19 +17275,6 @@ class AuroDropdownBib extends i {
|
|
|
17001
17275
|
}));
|
|
17002
17276
|
}
|
|
17003
17277
|
|
|
17004
|
-
/**
|
|
17005
|
-
* Prevents scrolling of the body when touching empty areas of the component.
|
|
17006
|
-
* @param {Event} event - The touchmove event.
|
|
17007
|
-
* @returns {void}
|
|
17008
|
-
*/
|
|
17009
|
-
preventBodyScroll(event) {
|
|
17010
|
-
// when touchmove/touchstart on empty space
|
|
17011
|
-
if (event.target === this) {
|
|
17012
|
-
event.preventDefault();
|
|
17013
|
-
event.stopImmediatePropagation();
|
|
17014
|
-
}
|
|
17015
|
-
}
|
|
17016
|
-
|
|
17017
17278
|
// function that renders the HTML and CSS into the scope of the component
|
|
17018
17279
|
render() {
|
|
17019
17280
|
const classes = {
|
|
@@ -17036,19 +17297,19 @@ var dropdownVersion$1 = '3.0.0';
|
|
|
17036
17297
|
|
|
17037
17298
|
var shapeSizeCss$1 = i$2`.wrapper{overflow:hidden}.shape-classic-xl,.shape-classic-lg,.shape-classic-md,.shape-classic-sm,.shape-classic-xs{min-height:58px;max-height:58px;border-style:solid;border-width:1px;border-radius:var(--ds-border-radius, 0.375rem)}.shape-classic-xl.simple,.shape-classic-lg.simple,.shape-classic-md.simple,.shape-classic-sm.simple,.shape-classic-xs.simple{border-width:0px;min-height:60px;max-height:60px;background-color:unset;box-shadow:none}.shape-classic-xl.thin,.shape-classic-lg.thin,.shape-classic-md.thin,.shape-classic-sm.thin,.shape-classic-xs.thin{border-width:1px;min-height:58px;max-height:58px;background-color:unset}.shape-classic-xl.parentBorder,.shape-classic-lg.parentBorder,.shape-classic-md.parentBorder,.shape-classic-sm.parentBorder,.shape-classic-xs.parentBorder{border:0;box-shadow:unset;min-height:56px;max-height:56px}.shape-snowflake-xl,.shape-snowflake-lg,.shape-snowflake-md,.shape-snowflake-sm,.shape-snowflake-xs{min-height:56px;max-height:56px;border-style:solid;border-width:2px;border-color:transparent;border-radius:30px}.shape-snowflake-xl.simple,.shape-snowflake-lg.simple,.shape-snowflake-md.simple,.shape-snowflake-sm.simple,.shape-snowflake-xs.simple{border-width:0px;min-height:60px;max-height:60px;background-color:unset;box-shadow:none}.shape-snowflake-xl.thin,.shape-snowflake-lg.thin,.shape-snowflake-md.thin,.shape-snowflake-sm.thin,.shape-snowflake-xs.thin{border-width:1px;min-height:58px;max-height:58px;background-color:unset}.shape-snowflake-xl.parentBorder,.shape-snowflake-lg.parentBorder,.shape-snowflake-md.parentBorder,.shape-snowflake-sm.parentBorder,.shape-snowflake-xs.parentBorder{border:0;box-shadow:unset;min-height:56px;max-height:56px}.shape-box-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent}.shape-box-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-box-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-box-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-rounded-lg{min-height:56px;max-height:56px;border-style:solid;border-width:2px;border-color:transparent;border-radius:6px}.shape-rounded-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-rounded-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-rounded-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-pill-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px}.shape-pill-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-left-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px 0 0 36px}.shape-pill-left-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-left-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-left-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-right-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent;border-radius:0 36px 36px 0}.shape-pill-right-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-right-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-right-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-md{min-height:44px;max-height:44px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px}.shape-pill-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-left-md{min-height:44px;max-height:44px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px 0 0 36px}.shape-pill-left-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-left-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-left-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-right-md{min-height:44px;max-height:44px;border-style:solid;border-width:2px;border-color:transparent;border-radius:0 36px 36px 0}.shape-pill-right-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-right-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-right-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}`;
|
|
17038
17299
|
|
|
17039
|
-
var colorCss$1$2 = i$2`:host .wrapper{border-color:var(--ds-auro-dropdown-trigger-border-color);background-color:var(--ds-auro-dropdown-trigger-background-color);color:var(--ds-auro-dropdown-trigger-text-color)}:host(:not([ondark])) .wrapper:focus,:host(:not([ondark])) .wrapper:
|
|
17300
|
+
var colorCss$1$2 = i$2`:host(:not([layout*=classic])){--ds-auro-dropdown-trigger-border-color: transparent}:host(:not([ondark])) .wrapper{border-color:var(--ds-auro-dropdown-trigger-border-color);background-color:var(--ds-auro-dropdown-trigger-background-color);color:var(--ds-auro-dropdown-trigger-text-color)}:host(:not([ondark])) .wrapper:focus-within,:host(:not([ondark])) .wrapper:active{--ds-auro-dropdown-trigger-border-color: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-dropdown-trigger-outline-color: var(--ds-advanced-color-state-focused, #01426a)}:host(:not([onDark])[disabled]){--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0);--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0);--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([ondark])[error]){--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]) .label{color:var(--ds-auro-dropdown-label-text-color)}:host([onDark]) .wrapper{border-color:var(--ds-auro-dropdown-trigger-border-color);background-color:var(--ds-auro-dropdown-trigger-background-color);color:var(--ds-auro-dropdown-trigger-text-color)}:host([onDark]) .wrapper:focus-within,:host([onDark]) .wrapper:active{--ds-auro-dropdown-trigger-border-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-dropdown-trigger-outline-color: var(--ds-advanced-color-state-focused-inverse, #ffffff)}:host([onDark][disabled]){--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894);--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894);--ds-auro-dropdown-trigger-container-color: var(--ds-advanced-color-shared-background-inverse-disabled, rgba(255, 255, 255, 0.1))}:host([ondark][error]){--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}`;
|
|
17040
17301
|
|
|
17041
|
-
var classicColorCss$1 = i$2
|
|
17302
|
+
var classicColorCss$1 = i$2``;
|
|
17042
17303
|
|
|
17043
|
-
var classicLayoutCss = i$2`:host([layout*=classic]){position:relative;max-width:100%}:host([layout*=classic]) #bibSizer{position:absolute;z-index:-1;opacity:0;pointer-events:none}:host([layout*=classic]) .label{font-size:var(--ds-text-body-size-xs, 0.75rem);line-height:var(--ds-text-body-size-default, 1rem);transition:font-size .3s cubic-bezier(0.215, 0.61, 0.355, 1);white-space:normal}:host([layout*=classic]) .label[hasTrigger=false]{font-size:var(--ds-text-body-size-default, 1rem)}:host([layout*=classic]) .
|
|
17304
|
+
var classicLayoutCss = i$2`:host([layout*=classic]){position:relative;max-width:100%}:host([layout*=classic]) #bibSizer{position:absolute;z-index:-1;opacity:0;pointer-events:none}:host([layout*=classic]) .label{font-size:var(--ds-text-body-size-xs, 0.75rem);line-height:var(--ds-text-body-size-default, 1rem);transition:font-size .3s cubic-bezier(0.215, 0.61, 0.355, 1);white-space:normal}:host([layout*=classic]) .label[hasTrigger=false]{font-size:var(--ds-text-body-size-default, 1rem)}:host([layout*=classic]) .wrapper{display:flex;flex-direction:row;box-shadow:inset 0 0 0 1px var(--ds-auro-dropdown-trigger-outline-color)}@media(hover: hover){:host([layout*=classic]) .wrapper:hover{cursor:pointer}}:host([layout*=classic]) .triggerContentWrapper{overflow:hidden;flex:1;justify-content:start;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) #showStateIcon{display:flex;overflow:hidden;height:100%;align-items:center;padding-right:var(--ds-size-150, 0.75rem)}:host([layout*=classic]) #showStateIcon [auro-icon]{height:var(--ds-size-300, 1.5rem);line-height:var(--ds-size-300, 1.5rem)}:host([layout*=classic]) #showStateIcon[data-expanded=true] [auro-icon]{transform:rotate(-180deg)}:host([matchwidth]) #bibSizer{width:100%}`;
|
|
17044
17305
|
|
|
17045
|
-
var styleEmphasizedCss = i$2`:host{display:block}.layout-emphasized .chevron,.layout-emphasized-left .chevron,.layout-emphasized-right .chevron{margin-right:var(--ds-size-300, 1.5rem)}.wrapper{display:flex;flex-direction:row
|
|
17306
|
+
var styleEmphasizedCss = i$2`:host{display:block}.layout-emphasized .chevron,.layout-emphasized-left .chevron,.layout-emphasized-right .chevron{margin-right:var(--ds-size-300, 1.5rem)}.wrapper{display:flex;flex:1;flex-direction:row;align-items:center;justify-content:center;outline:none}.triggerContentWrapper{display:flex;overflow:hidden;width:100%;flex:1;align-items:center;justify-content:center;text-overflow:ellipsis;white-space:nowrap}:host([layout*=emphasized][shape*=pill]:not([layout*=right])) .leftIndent{width:calc(100% - var(--ds-size-300, 1.5rem));margin-left:var(--ds-size-300, 1.5rem)}:host([layout*=emphasized][shape*=pill]:not([layout*=left])) .rightIndent{width:calc(100% - var(--ds-size-300, 1.5rem));margin-right:var(--ds-size-300, 1.5rem)}:host([layout*=emphasized][shape*=pill]:not([layout*=left]):not([layout*=right])) .rightIndent{width:calc(100% - var(--ds-size-600, 3rem));margin-right:var(--ds-size-300, 1.5rem)}`;
|
|
17046
17307
|
|
|
17047
|
-
var styleSnowflakeCss = i$2`:host{display:block}.wrapper{display:flex;flex-direction:row
|
|
17308
|
+
var styleSnowflakeCss = i$2`:host{display:block}.wrapper{display:flex;flex:1;flex-direction:row;align-items:center;justify-content:center;outline:none}.triggerContentWrapper{display:flex;overflow:hidden;width:100%;flex:1;align-items:center;justify-content:center;text-overflow:ellipsis;white-space:nowrap}:host([layout*=snowflake]) .leftIndent{width:calc(100% - var(--ds-size-600, 3rem));margin-left:var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .rightIndent{width:calc(100% - var(--ds-size-600, 3rem));margin-right:var(--ds-size-300, 1.5rem)}.layout-snowflake .chevron,.layout-snowflake-left .chevron,.layout-snowflake-right .chevron{margin-right:var(--ds-size-300, 1.5rem)}`;
|
|
17048
17309
|
|
|
17049
17310
|
var colorCss$5 = i$2`:host([error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]){--ds-auro-helptext-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}.helptext-wrapper{color:var(--ds-auro-helptext-color)}`;
|
|
17050
17311
|
|
|
17051
|
-
var styleCss$6 = i$2
|
|
17312
|
+
var styleCss$6 = i$2`:host{position:relative;display:block}.helptext-wrapper{display:none;font-size:12px;font-weight:450;letter-spacing:0;line-height:16px}:host([large]) .helptext-wrapper{font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}.helptext-wrapper[visible]{display:block}::slotted(*:not(:empty)){margin-top:var(--ds-size-50, 0.25rem);margin-bottom:0}::slotted(p){margin-block:0}`;
|
|
17052
17313
|
|
|
17053
17314
|
var tokensCss$6 = i$2`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
17054
17315
|
|
|
@@ -17353,10 +17614,8 @@ let AuroElement$4 = class AuroElement extends i {
|
|
|
17353
17614
|
// See LICENSE in the project root for license information.
|
|
17354
17615
|
|
|
17355
17616
|
|
|
17356
|
-
|
|
17357
|
-
* @attr { Boolean } disableEventShow - If declared, the dropdown will only show by calling the API .show() public method.
|
|
17617
|
+
/*
|
|
17358
17618
|
* @slot - Default slot for the popover content.
|
|
17359
|
-
* @slot label - Defines the content of the label.
|
|
17360
17619
|
* @slot helpText - Defines the content of the helpText.
|
|
17361
17620
|
* @slot trigger - Defines the content of the trigger.
|
|
17362
17621
|
* @csspart trigger - The trigger content container.
|
|
@@ -17375,18 +17634,22 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17375
17634
|
this.matchWidth = false;
|
|
17376
17635
|
this.noHideOnThisFocusLoss = false;
|
|
17377
17636
|
|
|
17378
|
-
this.errorMessage =
|
|
17637
|
+
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
17379
17638
|
|
|
17380
17639
|
// Layout Config
|
|
17381
|
-
this.layout =
|
|
17382
|
-
this.shape =
|
|
17383
|
-
this.size =
|
|
17640
|
+
this.layout = undefined;
|
|
17641
|
+
this.shape = undefined;
|
|
17642
|
+
this.size = undefined;
|
|
17384
17643
|
|
|
17385
17644
|
this.parentBorder = false;
|
|
17386
17645
|
|
|
17387
17646
|
this.privateDefaults();
|
|
17388
17647
|
}
|
|
17389
17648
|
|
|
17649
|
+
/**
|
|
17650
|
+
* @private
|
|
17651
|
+
* @returns {object} Class definition for the wrapper element.
|
|
17652
|
+
*/
|
|
17390
17653
|
get commonWrapperClasses() {
|
|
17391
17654
|
return {
|
|
17392
17655
|
'trigger': true,
|
|
@@ -17404,13 +17667,10 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17404
17667
|
privateDefaults() {
|
|
17405
17668
|
this.chevron = false;
|
|
17406
17669
|
this.disabled = false;
|
|
17670
|
+
this.disableFocusTrap = false;
|
|
17407
17671
|
this.error = false;
|
|
17408
|
-
this.inset = false;
|
|
17409
|
-
this.rounded = false;
|
|
17410
17672
|
this.tabIndex = 0;
|
|
17411
17673
|
this.noToggle = false;
|
|
17412
|
-
this.a11yAutocomplete = 'none';
|
|
17413
|
-
this.labeled = true;
|
|
17414
17674
|
this.a11yRole = 'button';
|
|
17415
17675
|
this.onDark = false;
|
|
17416
17676
|
this.showTriggerBorders = true;
|
|
@@ -17506,6 +17766,18 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17506
17766
|
this.floater.showBib();
|
|
17507
17767
|
}
|
|
17508
17768
|
|
|
17769
|
+
/**
|
|
17770
|
+
* When bib is open, focus on the first element inside of bib.
|
|
17771
|
+
* If not, trigger element will get focus.
|
|
17772
|
+
*/
|
|
17773
|
+
focus() {
|
|
17774
|
+
if (this.isPopoverVisible && this.focusTrap) {
|
|
17775
|
+
this.focusTrap.focusFirstElement();
|
|
17776
|
+
} else {
|
|
17777
|
+
this.trigger.focus();
|
|
17778
|
+
}
|
|
17779
|
+
}
|
|
17780
|
+
|
|
17509
17781
|
// function to define props used within the scope of this component
|
|
17510
17782
|
static get properties() {
|
|
17511
17783
|
return {
|
|
@@ -17519,6 +17791,15 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17519
17791
|
reflect: true
|
|
17520
17792
|
},
|
|
17521
17793
|
|
|
17794
|
+
/**
|
|
17795
|
+
* If declared, the dropdown will only show by calling the API .show() public method.
|
|
17796
|
+
* @default false
|
|
17797
|
+
*/
|
|
17798
|
+
disableEventShow: {
|
|
17799
|
+
type: Boolean,
|
|
17800
|
+
reflect: true
|
|
17801
|
+
},
|
|
17802
|
+
|
|
17522
17803
|
/**
|
|
17523
17804
|
* If declared, applies a border around the trigger slot.
|
|
17524
17805
|
*/
|
|
@@ -17537,17 +17818,17 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17537
17818
|
},
|
|
17538
17819
|
|
|
17539
17820
|
/**
|
|
17540
|
-
* If declared, the dropdown
|
|
17821
|
+
* If declared, the dropdown is not interactive.
|
|
17541
17822
|
*/
|
|
17542
|
-
|
|
17823
|
+
disabled: {
|
|
17543
17824
|
type: Boolean,
|
|
17544
17825
|
reflect: true
|
|
17545
17826
|
},
|
|
17546
17827
|
|
|
17547
17828
|
/**
|
|
17548
|
-
* If declared, the
|
|
17829
|
+
* If declared, the focus trap inside of bib will be turned off.
|
|
17549
17830
|
*/
|
|
17550
|
-
|
|
17831
|
+
disableFocusTrap: {
|
|
17551
17832
|
type: Boolean,
|
|
17552
17833
|
reflect: true
|
|
17553
17834
|
},
|
|
@@ -17592,22 +17873,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17592
17873
|
reflect: true
|
|
17593
17874
|
},
|
|
17594
17875
|
|
|
17595
|
-
/**
|
|
17596
|
-
* Makes the trigger to be full width of its parent container.
|
|
17597
|
-
*/
|
|
17598
|
-
fluid: {
|
|
17599
|
-
type: Boolean,
|
|
17600
|
-
reflect: true
|
|
17601
|
-
},
|
|
17602
|
-
|
|
17603
|
-
/**
|
|
17604
|
-
* If declared, will apply padding around trigger slot content.
|
|
17605
|
-
*/
|
|
17606
|
-
inset: {
|
|
17607
|
-
type: Boolean,
|
|
17608
|
-
reflect: true
|
|
17609
|
-
},
|
|
17610
|
-
|
|
17611
17876
|
/**
|
|
17612
17877
|
* If true, the dropdown bib is displayed.
|
|
17613
17878
|
*/
|
|
@@ -17651,15 +17916,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17651
17916
|
reflect: true
|
|
17652
17917
|
},
|
|
17653
17918
|
|
|
17654
|
-
/**
|
|
17655
|
-
* Defines if there is a label preset.
|
|
17656
|
-
* @private
|
|
17657
|
-
*/
|
|
17658
|
-
labeled: {
|
|
17659
|
-
type: Boolean,
|
|
17660
|
-
reflect: true
|
|
17661
|
-
},
|
|
17662
|
-
|
|
17663
17919
|
/**
|
|
17664
17920
|
* Defines if the trigger should size based on the parent element providing the border UI.
|
|
17665
17921
|
* @private
|
|
@@ -17720,6 +17976,9 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17720
17976
|
reflect: true
|
|
17721
17977
|
},
|
|
17722
17978
|
|
|
17979
|
+
/**
|
|
17980
|
+
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
17981
|
+
*/
|
|
17723
17982
|
onSlotChange: {
|
|
17724
17983
|
type: Function,
|
|
17725
17984
|
reflect: false
|
|
@@ -17734,14 +17993,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17734
17993
|
reflect: true
|
|
17735
17994
|
},
|
|
17736
17995
|
|
|
17737
|
-
/**
|
|
17738
|
-
* If declared, will apply border-radius to trigger and default slots.
|
|
17739
|
-
*/
|
|
17740
|
-
rounded: {
|
|
17741
|
-
type: Boolean,
|
|
17742
|
-
reflect: true
|
|
17743
|
-
},
|
|
17744
|
-
|
|
17745
17996
|
/**
|
|
17746
17997
|
* @private
|
|
17747
17998
|
*/
|
|
@@ -17756,22 +18007,14 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17756
18007
|
type: String || undefined,
|
|
17757
18008
|
attribute: false,
|
|
17758
18009
|
reflect: false
|
|
17759
|
-
},
|
|
17760
|
-
|
|
17761
|
-
/**
|
|
17762
|
-
* The value for the aria-autocomplete attribute of the trigger element.
|
|
17763
|
-
*/
|
|
17764
|
-
a11yAutocomplete: {
|
|
17765
|
-
type: String,
|
|
17766
|
-
attribute: false,
|
|
17767
18010
|
}
|
|
17768
18011
|
};
|
|
17769
18012
|
}
|
|
17770
18013
|
|
|
17771
18014
|
static get styles() {
|
|
17772
18015
|
return [
|
|
17773
|
-
colorCss$1$2,
|
|
17774
18016
|
tokensCss$1$2,
|
|
18017
|
+
colorCss$1$2,
|
|
17775
18018
|
|
|
17776
18019
|
// default layout
|
|
17777
18020
|
classicColorCss$1,
|
|
@@ -17834,6 +18077,12 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17834
18077
|
this.handleTriggerContentSlotChange();
|
|
17835
18078
|
}
|
|
17836
18079
|
|
|
18080
|
+
if (changedProperties.has('isPopoverVisible')) {
|
|
18081
|
+
this.updateFocusTrap();
|
|
18082
|
+
if (!this.isPopoverVisible && this.hasFocus) {
|
|
18083
|
+
this.trigger.focus();
|
|
18084
|
+
}
|
|
18085
|
+
}
|
|
17837
18086
|
}
|
|
17838
18087
|
|
|
17839
18088
|
firstUpdated() {
|
|
@@ -17854,9 +18103,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17854
18103
|
}
|
|
17855
18104
|
|
|
17856
18105
|
this.bibContent = this.floater.element.bib;
|
|
17857
|
-
this.bibContent.setAttribute('role', 'dialog');
|
|
17858
|
-
this.bibContent.setAttribute('aria-modal', 'true');
|
|
17859
|
-
this.bibContent.setAttribute('aria-labelledby', 'triggerLabel');
|
|
17860
18106
|
|
|
17861
18107
|
// Add the tag name as an attribute if it is different than the component name
|
|
17862
18108
|
this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
|
|
@@ -17902,6 +18148,27 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17902
18148
|
this.hasFocus = true;
|
|
17903
18149
|
}
|
|
17904
18150
|
|
|
18151
|
+
/**
|
|
18152
|
+
* @private
|
|
18153
|
+
*/
|
|
18154
|
+
updateFocusTrap() {
|
|
18155
|
+
// If the dropdown is open, create a focus trap and focus the first element
|
|
18156
|
+
if (this.isPopoverVisible && !this.disableFocusTrap) {
|
|
18157
|
+
this.focusTrap = new FocusTrap(this.bibContent);
|
|
18158
|
+
this.focusTrap.focusFirstElement();
|
|
18159
|
+
return;
|
|
18160
|
+
}
|
|
18161
|
+
|
|
18162
|
+
// Guard Clause: Ensure there is a focus trap currently active before continuing
|
|
18163
|
+
if (!this.focusTrap) {
|
|
18164
|
+
return;
|
|
18165
|
+
}
|
|
18166
|
+
|
|
18167
|
+
// If the dropdown is not open, disconnect the focus trap if it exists
|
|
18168
|
+
this.focusTrap.disconnect();
|
|
18169
|
+
this.focusTrap = undefined;
|
|
18170
|
+
}
|
|
18171
|
+
|
|
17905
18172
|
/**
|
|
17906
18173
|
* Function to support @focusout event.
|
|
17907
18174
|
* @private
|
|
@@ -18187,10 +18454,7 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
18187
18454
|
id="bib"
|
|
18188
18455
|
shape="${this.shape}"
|
|
18189
18456
|
?data-show="${this.isPopoverVisible}"
|
|
18190
|
-
?isfullscreen="${this.isBibFullscreen}"
|
|
18191
|
-
?common="${this.common}"
|
|
18192
|
-
?rounded="${this.common || this.rounded}"
|
|
18193
|
-
?inset="${this.common || this.inset}">
|
|
18457
|
+
?isfullscreen="${this.isBibFullscreen}">
|
|
18194
18458
|
<div class="slotContent">
|
|
18195
18459
|
<slot @slotchange="${this.handleDefaultSlot}"></slot>
|
|
18196
18460
|
</div>
|
|
@@ -18298,19 +18562,19 @@ var styleCss$4 = i$2`.util_displayInline{display:inline}.util_displayInlineBlock
|
|
|
18298
18562
|
|
|
18299
18563
|
var styleDefaultCss = i$2`.layoutDefault .typeIcon,:host(:not([layout])) .typeIcon{display:flex;flex-direction:row;align-items:center}.layoutDefault .typeIcon [auro-icon],:host(:not([layout])) .typeIcon [auro-icon]{--ds-auro-icon-size: var(--ds-size-300, 1.5rem);height:var(--ds-size-300, 1.5rem);margin-right:var(--ds-size-100, 0.5rem)}.layoutDefault .notificationIcons,:host(:not([layout])) .notificationIcons{display:flex;flex-direction:row;padding-right:var(--ds-size-100, 0.5rem)}:host([class=layoutDefault][bordered]) .typeIcon,:host(:not([layout])[bordered]) .typeIcon{padding-left:var(--ds-size-100, 0.5rem)}:host([class=layoutDefault][bordered]) .notificationIcons,:host(:not([layout])[bordered]) .notificationIcons{align-items:center}:host([class=layoutDefault][bordered]) .notification:not(:first-of-type),:host(:not([layout])[bordered]) .notification:not(:first-of-type){margin-left:var(--ds-size-100, 0.5rem)}:host([class=layoutDefault][bordered]) .alertNotification,:host(:not([layout])[bordered]) .alertNotification{width:calc(var(--ds-size-300, 1.5rem) + var(--ds-size-25, 0.125rem));height:calc(var(--ds-size-300, 1.5rem) + var(--ds-size-25, 0.125rem))}:host([class=layoutDefault][bordered]) .passwordBtn,:host(:not([layout])[bordered]) .passwordBtn{width:calc(var(--ds-size-300, 1.5rem));height:calc(var(--ds-size-300, 1.5rem))}:host([class=layoutDefault][bordered]) .notificationBtn,:host(:not([layout])[bordered]) .notificationBtn{display:block;width:var(--ds-size-300, 1.5rem);height:var(--ds-size-300, 1.5rem);padding:0;border:0;background:unset;cursor:pointer}:host([class=layoutDefault][bordered]) .notificationBtn [auro-icon],:host(:not([layout])[bordered]) .notificationBtn [auro-icon]{display:block;height:var(--ds-size-300, 1.5rem);--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([class=layoutDefault][bordered]) .notificationBtn [auro-icon][hidden],:host(:not([layout])[bordered]) .notificationBtn [auro-icon][hidden]{display:none}:host([class=layoutDefault]:not([bordered])) .typeIcon,:host([class=layoutDefault]:not([bordered])) .notificationIcons,:host(:not([layout]):not([bordered])) .typeIcon,:host(:not([layout]):not([bordered])) .notificationIcons{align-items:flex-end;padding-bottom:var(--ds-size-50, 0.25rem)}:host([class=layoutDefault]:not([bordered])) .clearBtn,:host(:not([layout]):not([bordered])) .clearBtn{transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1);overflow:hidden;width:0;opacity:0}.layoutDefault .wrapper:hover .clearBtn,.layoutDefault .wrapper:focus-within .clearBtn,:host(:not([layout])) .wrapper:hover .clearBtn,:host(:not([layout])) .wrapper:focus-within .clearBtn{width:calc(var(--ds-size-200, 1rem) + var(--ds-size-25, 0.125rem));height:calc(var(--ds-size-200, 1rem) + var(--ds-size-25, 0.125rem));opacity:1}:host([class=layoutDefault]:focus-within[type=password]) .notificationIcons[hasValue] .alertNotification,:host(:not([layout]):focus-within[type=password]) .notificationIcons[hasValue] .alertNotification{overflow:hidden;width:0;height:0;padding:0;margin:0;visibility:hidden}.layoutDefault input,:host(:not([layout])) input{border:unset}.layoutDefault .wrapper,:host(:not([layout])) .wrapper{position:relative;overflow:hidden;border-style:solid}:host([class=layoutDefault]:not([bordered],[borderless])) .wrapper,:host(:not([layout]):not([bordered],[borderless])) .wrapper{border-width:1px 0}:host([class=layoutDefault][bordered]) .wrapper,:host(:not([layout])[bordered]) .wrapper{border-width:1px;border-radius:var(--ds-border-radius, 0.375rem)}:host([class=layoutDefault]:not([borderless])) .wrapper:focus-within:before,:host(:not([layout]):not([borderless])) .wrapper:focus-within:before{position:absolute;display:block;border-bottom-width:1px;border-bottom-style:solid;content:"";inset:0;pointer-events:none}:host([class=layoutDefault][validity]:not([validity=valid])) .wrapper:before,:host(:not([layout])[validity]:not([validity=valid])) .wrapper:before{border-bottom:0}:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.layoutDefault :host,:host(:not([layout])) :host{position:relative;display:block}.layoutDefault .wrapper,:host(:not([layout])) .wrapper{display:flex;flex-direction:row}.layoutDefault .main,:host(:not([layout])) .main{display:flex;flex-direction:row;position:relative;flex:1}`;
|
|
18300
18564
|
|
|
18301
|
-
var colorBaseCss = i$2`.wrapper{border-color:var(--ds-auro-input-border-color);background-color:var(--ds-auro-input-background-color);color:var(--ds-auro-input-text-color)}.wrapper label{color:var(--ds-auro-input-label-text-color)}.wrapper input{caret-color:var(--ds-auro-input-caret-color);color:var(--ds-auro-input-text-color)}.wrapper input::placeholder{color:var(--ds-auro-input-placeholder-text-color)}.wrapper input:focus::placeholder{color:var(--ds-auro-input-placeholder-text-color)}.wrapper .displayValue{background-color:var(--ds-auro-input-background-color)}:host(:not([ondark])) .wrapper:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-border-brand, #00274a)}:host([ondark]) .wrapper:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-border-inverse, #ffffff)}:host(:is([validity]:not([validity=valid]))) .wrapper{--ds-auro-input-border-color: var(--ds-basic-color-status-error, #e31f26)}:host([ondark]:is([validity]:not([validity=valid]))) .wrapper{--ds-auro-input-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host(:not([ondark])[disabled]){--ds-auro-input-border-color: var(--ds-
|
|
18565
|
+
var colorBaseCss = i$2`.wrapper{border-color:var(--ds-auro-input-border-color);background-color:var(--ds-auro-input-background-color);color:var(--ds-auro-input-text-color)}.wrapper label{color:var(--ds-auro-input-label-text-color)}.wrapper input{caret-color:var(--ds-auro-input-caret-color);color:var(--ds-auro-input-text-color)}.wrapper input::placeholder{color:var(--ds-auro-input-placeholder-text-color)}.wrapper input:focus::placeholder{color:var(--ds-auro-input-placeholder-text-color)}.wrapper .displayValue{background-color:var(--ds-auro-input-background-color)}:host(:not([ondark])) .wrapper:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-border-brand, #00274a)}:host([ondark]) .wrapper:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-border-inverse, #ffffff)}:host(:is([validity]:not([validity=valid]))) .wrapper{--ds-auro-input-border-color: var(--ds-basic-color-status-error, #e31f26)}:host([ondark]:is([validity]:not([validity=valid]))) .wrapper{--ds-auro-input-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host(:not([ondark])[disabled]){--ds-auro-input-border-color: var(--ds-basic-color-border-subtle, #dddddd);--ds-auro-input-label-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0);--ds-auro-input-placeholder-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host([ondark][disabled]){--ds-auro-input-border-color: var(--ds-advanced-color-button-primary-border-inverse-disabled, rgba(255, 255, 255, 0.75));--ds-auro-input-label-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894);--ds-auro-input-placeholder-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}`;
|
|
18302
18566
|
|
|
18303
18567
|
var tokensCss$4 = i$2`:host(:not([ondark])){--ds-auro-input-border-color: var(--ds-basic-color-border-bold, #585e67);--ds-auro-input-background-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-input-container-color: var(--ds-basic-color-surface-default, #ffffff);--ds-auro-input-caret-color: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-input-label-text-color: var(--ds-basic-color-texticon-muted, #676767);--ds-auro-input-placeholder-text-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-input-text-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-input-error-icon-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-input-outline-color: transparent}:host([ondark]){--ds-auro-input-border-color: var(--ds-basic-color-border-inverse, #ffffff);--ds-auro-input-background-color: var(--ds-advanced-color-shared-background-inverse, rgba(255, 255, 255, 0.15));--ds-auro-input-container-color: var(--ds-advanced-color-shared-background-inverse, rgba(255, 255, 255, 0.15));--ds-auro-input-caret-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-input-label-text-color: var(--ds-basic-color-texticon-inverse, #ffffff);--ds-auro-input-placeholder-text-color: var(--ds-basic-color-texticon-inverse, #ffffff);--ds-auro-input-text-color: var(--ds-basic-color-texticon-inverse, #ffffff);--ds-auro-input-error-icon-color: var(--ds-basic-color-status-error-subtle, #fbc6c6);--ds-auro-input-outline-color: transparent}`;
|
|
18304
18568
|
|
|
18305
|
-
var classicStyleCss = i$2`.layout-classic{display:flex;flex-direction:row;box-shadow:inset 0 0 0 1px var(--ds-auro-input-outline-color)}.layout-classic .mainContent{position:relative;display:flex;flex:1;flex-direction:column;justify-content:center;cursor:text}.layout-classic .mainContent label{cursor:text;font-size:var(--ds-text-body-size-xs);line-height:20px;transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1)}.layout-classic .mainContent input{height:auto;font-size:var(--ds-basic-text-body-default-font-size, 16px);line-height:var(--ds-basic-text-body-default-line-height, 24px);transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1)}.layout-classic .mainContent:has(input.util_displayHiddenVisually) label{padding-top:0;font-size:var(--ds-text-body-size-default, 1rem);justify-self:flex-start;line-height:var(--ds-text-body-size-default)}.layout-classic .mainContent:has(input.util_displayHiddenVisually) input{height:0;padding-bottom:0;line-height:0}.layout-classic .accents{padding:0
|
|
18569
|
+
var classicStyleCss = i$2`.layout-classic{display:flex;flex-direction:row;box-shadow:inset 0 0 0 1px var(--ds-auro-input-outline-color)}.layout-classic .mainContent{position:relative;display:flex;flex:1;flex-direction:column;justify-content:center;cursor:text}.layout-classic .mainContent label{cursor:text;font-size:var(--ds-text-body-size-xs);line-height:20px;transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1)}.layout-classic .mainContent input{height:auto;font-size:var(--ds-basic-text-body-default-font-size, 16px);line-height:var(--ds-basic-text-body-default-line-height, 24px);transition:all .3s cubic-bezier(0.215, 0.61, 0.355, 1)}.layout-classic .mainContent:has(input.util_displayHiddenVisually) label{padding-top:0;font-size:var(--ds-text-body-size-default, 1rem);justify-self:flex-start;line-height:var(--ds-text-body-size-default)}.layout-classic .mainContent:has(input.util_displayHiddenVisually) input{height:0;padding-bottom:0;line-height:0}.layout-classic .accents .typeIcon>*{margin-left:var(--ds-size-50, 0.25rem)}.layout-classic .accents.left{padding-right:var(--ds-size-50, 0.25rem)}.layout-classic .accents.right{padding-left:var(--ds-size-50, 0.25rem)}.layout-classic .accents.right .notification{margin-right:var(--ds-size-50, 0.25rem)}.layout-classic.withValue{justify-content:flex-start}.layout-classic:focus-within{justify-content:flex-start}.layout-classic:focus-within .alertNotification{display:none}`;
|
|
18306
18570
|
|
|
18307
18571
|
var classicColorCss = i$2`.layout-classic label{color:var(--ds-auro-input-label-text-color)}.layout-classic:focus-within{--ds-auro-input-outline-color: var(--ds-auro-input-border-color)}:host(:not([ondark])) .layout-classic:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-border-brand, #00274a);--ds-auro-input-outline-color: var(--ds-basic-color-border-brand, #00274a)}:host([ondark]) .layout-classic:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-border-inverse, #ffffff);--ds-auro-input-outline-color: var(--ds-basic-color-border-inverse, #ffffff)}:host([layout*=classic]:not([ondark]):is([validity]:not([validity=valid]))){--ds-auro-input-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-input-outline-color: var(--ds-basic-color-status-error, #e31f26)}:host([layout*=classic]:not([ondark]):is([validity]:not([validity=valid]))) .layout-classic:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-input-outline-color: var(--ds-basic-color-status-error, #e31f26)}:host([layout*=classic][ondark]:is([validity]:not([validity=valid]))){--ds-auro-input-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6);--ds-auro-input-outline-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host([layout*=classic][ondark]:is([validity]:not([validity=valid]))) .layout-classic:focus-within{--ds-auro-input-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6);--ds-auro-input-outline-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}`;
|
|
18308
18572
|
|
|
18309
|
-
var emphasizedStyleCss = i$2`:host([layout*=emphasized][shape*=pill]:not([layout*=right])) .leftIndent{margin-left:
|
|
18573
|
+
var emphasizedStyleCss = i$2`:host([layout*=emphasized][shape*=pill]:not([layout*=right])) .leftIndent{margin-left:var(--ds-size-150, 0.75rem);width:calc(100% - var(--ds-size-150, 0.75rem))}:host([layout*=emphasized][shape*=pill]:not([layout*=left])) .rightIndent{margin-right:var(--ds-size-150, 0.75rem);width:calc(100% - var(--ds-size-150, 0.75rem))}:host([layout*=emphasized][shape*=pill]:not([layout*=left]):not([layout*=right])) .rightIndent{margin-right:var(--ds-size-150, 0.75rem);width:calc(100% - var(--ds-size-300, 1.5rem))}.layout-emphasized,.layout-emphasized-left,.layout-emphasized-right{display:flex;flex-direction:row;align-items:center;justify-content:center}.layout-emphasized label,.layout-emphasized-left label,.layout-emphasized-right label{text-transform:uppercase;font-size:32px;line-height:38px}.layout-emphasized input,.layout-emphasized-left input,.layout-emphasized-right input{text-align:center;font-size:14px;line-height:20px}.layout-emphasized .mainContent,.layout-emphasized-left .mainContent,.layout-emphasized-right .mainContent{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1}.layout-emphasized .displayValue,.layout-emphasized-left .displayValue,.layout-emphasized-right .displayValue{position:absolute;top:0;right:0;bottom:0;left:0;display:none}.layout-emphasized .displayValue.hasContent:is(.withValue):not(.hasFocus),.layout-emphasized-left .displayValue.hasContent:is(.withValue):not(.hasFocus),.layout-emphasized-right .displayValue.hasContent:is(.withValue):not(.hasFocus){display:block}.layout-emphasized .displayValueWrapper,.layout-emphasized-left .displayValueWrapper,.layout-emphasized-right .displayValueWrapper{transform:translateY(-50%)}.layout-emphasized.withValue,.layout-emphasized-left.withValue,.layout-emphasized-right.withValue{justify-content:flex-start}.layout-emphasized.withValue label,.layout-emphasized-left.withValue label,.layout-emphasized-right.withValue label{display:block;text-transform:unset;font-size:10px;line-height:14px;width:100%;text-align:left}.layout-emphasized.withValue input,.layout-emphasized-left.withValue input,.layout-emphasized-right.withValue input{text-transform:uppercase;font-size:32px;line-height:38px;text-align:left;width:100%}.layout-emphasized:not(:focus-within):not(:is([validity]:not([validity=valid]))),.layout-emphasized-left:not(:focus-within):not(:is([validity]:not([validity=valid]))),.layout-emphasized-right:not(:focus-within):not(:is([validity]:not([validity=valid]))){--ds-auro-input-border-color: transparent}.layout-emphasized:focus-within,.layout-emphasized-left:focus-within,.layout-emphasized-right:focus-within{justify-content:flex-start}.layout-emphasized:focus-within label,.layout-emphasized-left:focus-within label,.layout-emphasized-right:focus-within label{display:block;text-transform:unset;font-size:10px;line-height:14px;width:100%;text-align:left}.layout-emphasized:focus-within input,.layout-emphasized-left:focus-within input,.layout-emphasized-right:focus-within input{text-transform:uppercase;font-size:32px;line-height:38px;text-align:left;width:100%}.layout-emphasized:focus-within .alertNotification,.layout-emphasized-left:focus-within .alertNotification,.layout-emphasized-right:focus-within .alertNotification{display:none}.layout-emphasized .accents.left,.layout-emphasized-left .accents.left,.layout-emphasized-right .accents.left{padding-left:var(--ds-size-150, 0.75rem)}.layout-emphasized .accents.right,.layout-emphasized-left .accents.right,.layout-emphasized-right .accents.right{padding-right:var(--ds-size-150, 0.75rem)}.layout-emphasized-left .alertNotification{margin-right:var(--ds-size-50, 0.25rem)}.layout-emphasized-left .clear{margin-left:var(--ds-size-50, 0.25rem)}.layout-emphasized-right .alertNotification{margin-left:var(--ds-size-50, 0.25rem)}.layout-emphasized-right .clear{margin-right:var(--ds-size-50, 0.25rem)}`;
|
|
18310
18574
|
|
|
18311
18575
|
var emphasizedColorCss = i$2`.layout-emphasized:focus-within,.layout-emphasized.withValue,.layout-emphasized-left:focus-within,.layout-emphasized-left.withValue,.layout-emphasized-right:focus-within,.layout-emphasized-right.withValue{--ds-auro-input-label-text-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}.layout-emphasized:focus-within,.layout-emphasized-left:focus-within,.layout-emphasized-right:focus-within{--auro-input-border-color: var(--ds-auro-input-border-color)}`;
|
|
18312
18576
|
|
|
18313
|
-
var snowflakeStyleCss = i$2`:root{--ds-advanced-color-button-flat-text: #676767;--ds-advanced-color-button-flat-text-disabled: #d0d0d0;--ds-advanced-color-button-flat-text-hover: #525252;--ds-advanced-color-button-flat-text-inverse: #ffffff;--ds-advanced-color-button-flat-text-inverse-disabled: #7e8894;--ds-advanced-color-button-flat-text-inverse-hover: #adadad;--ds-advanced-color-button-ghost-background-hover: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-ghost-background-inverse-hover: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-ghost-text: #01426a;--ds-advanced-color-button-ghost-text-disabled: #d0d0d0;--ds-advanced-color-button-ghost-text-inverse: #ffffff;--ds-advanced-color-button-ghost-text-inverse-disabled: #7e8894;--ds-advanced-color-button-primary-background: #01426a;--ds-advanced-color-button-primary-background-disabled: #acc9e2;--ds-advanced-color-button-primary-background-hover: #00274a;--ds-advanced-color-button-primary-background-inactive: #cfe0ef;--ds-advanced-color-button-primary-background-inactive-hover: #89b2d4;--ds-advanced-color-button-primary-background-inverse: #ffffff;--ds-advanced-color-button-primary-background-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-background-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-border: #01426a;--ds-advanced-color-button-primary-border-disabled: #acc9e2;--ds-advanced-color-button-primary-border-hover: #00274a;--ds-advanced-color-button-primary-border-inverse: #ffffff;--ds-advanced-color-button-primary-border-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-border-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-text: #ffffff;--ds-advanced-color-button-primary-text-disabled: #ffffff;--ds-advanced-color-button-primary-text-inverse: #01426a;--ds-advanced-color-button-secondary-background: #ffffff;--ds-advanced-color-button-secondary-background-disabled: #f7f7f7;--ds-advanced-color-button-secondary-background-hover: #f2f2f2;--ds-advanced-color-button-secondary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-secondary-border: #01426a;--ds-advanced-color-button-secondary-border-hover: #00274a;--ds-advanced-color-button-secondary-border-disabled: #cfe0ef;--ds-advanced-color-button-secondary-border-inverse: #ffffff;--ds-advanced-color-button-secondary-border-inverse-disabled: #dddddd;--ds-advanced-color-button-secondary-text: #01426a;--ds-advanced-color-button-secondary-text-hover: #00274a;--ds-advanced-color-button-secondary-text-inverse: #ffffff;--ds-advanced-color-button-tertiary-background: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-tertiary-background-hover: rgba(0, 0, 0, 0.1);--ds-advanced-color-button-tertiary-background-inverse: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-tertiary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-tertiary-text: #01426a;--ds-advanced-color-button-tertiary-text-hover: #00274a;--ds-advanced-color-button-tertiary-text-inverse: #ffffff;--ds-advanced-color-accents-accent1: #b2d583;--ds-advanced-color-accents-accent1-bold: #92c450;--ds-advanced-color-accents-accent1-muted: #deedca;--ds-advanced-color-accents-accent2: #fad362;--ds-advanced-color-accents-accent2-bold: #f2ba14;--ds-advanced-color-accents-accent2-muted: #fde398;--ds-advanced-color-accents-accent3: #63beff;--ds-advanced-color-accents-accent3-bold: #0074ca;--ds-advanced-color-accents-accent3-muted: #aedeff;--ds-advanced-color-accents-accent4: #feb17a;--ds-advanced-color-accents-accent4-bold: #fb7f24;--ds-advanced-color-accents-accent4-muted: #ffe2cf;--ds-advanced-color-accents-transparency: rgba(0, 0, 0, 0.1);--ds-advanced-color-accents-transparency-inverse: rgba(255, 255, 255, 0.2);--ds-advanced-color-avatar-gradient-bottom: #cfe0ef;--ds-advanced-color-avatar-gradient-top: #6899c6;--ds-advanced-color-boolean-disabled-inverse: #7e8894;--ds-advanced-color-boolean-error: #e31f26;--ds-advanced-color-boolean-error-hover: #b1161c;--ds-advanced-color-boolean-error-inverse: #f9a4a8;--ds-advanced-color-boolean-error-inverse-hover: #f15f65;--ds-advanced-color-boolean-indicator: #ffffff;--ds-advanced-color-boolean-indicator-inverse: #00274a;--ds-advanced-color-boolean-isfalse: #ffffff;--ds-advanced-color-boolean-isfalse-border: #585e67;--ds-advanced-color-boolean-isfalse-border-inverse: #ffffff;--ds-advanced-color-boolean-isfalse-hover: #f2f2f2;--ds-advanced-color-boolean-isfalse-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-boolean-isfalse-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-boolean-istrue: #01426a;--ds-advanced-color-boolean-istrue-hover: #00274a;--ds-advanced-color-boolean-istrue-inverse: #ffffff;--ds-advanced-color-boolean-istrue-inverse-hover: rgba(255, 255, 255, 0.7);--ds-advanced-color-flightline-indicator: #00274a;--ds-advanced-color-flightline-line: #00274a;--ds-advanced-color-hyperlink-text: #2875b5;--ds-advanced-color-hyperlink-text-hover: #01426a;--ds-advanced-color-hyperlink-text-inverse: #ffffff;--ds-advanced-color-hyperlink-text-inverse-hover: #ebf3f9;--ds-advanced-color-shared-background: #ffffff;--ds-advanced-color-shared-background-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-shared-background-inverse-disabled: rgba(255, 255, 255, 0.1);--ds-advanced-color-shared-background-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-shared-background-muted: #f7f7f7;--ds-advanced-color-shared-background-strong: #7e7e7e;--ds-advanced-color-shared-scrim: rgba(0, 0, 0, 0.5);--ds-advanced-color-shared-text-accent: #2875b5;--ds-advanced-color-skeleton-background: #f7f8fa;--ds-advanced-color-skeleton-wave: #e4e8ec;--ds-advanced-color-state-background-disabled: #dddddd;--ds-advanced-color-state-background-hover: #f2f2f2;--ds-advanced-color-state-background-inverse-disabled: #7e8894;--ds-advanced-color-state-error-inverse: #f9a4a8;--ds-advanced-color-state-focused: #01426a;--ds-advanced-color-state-focused-inverse: #ffffff;--ds-advanced-color-state-selected: #01426a;--ds-advanced-color-state-selected-hover: #00274a;--ds-basic-color-border-bold: #585e67;--ds-basic-color-border-brand: #00274a;--ds-basic-color-border-default: #959595;--ds-basic-color-border-divider: rgba(0, 0, 0, 0.15);--ds-basic-color-border-divider-inverse: rgba(255, 255, 255, 0.4);--ds-basic-color-border-inverse: #ffffff;--ds-basic-color-border-subtle: #dddddd;--ds-basic-color-brand-primary: #01426a;--ds-basic-color-brand-primary-bold: #00274a;--ds-basic-color-brand-primary-muted: #ebf3f9;--ds-basic-color-brand-primary-subtle: #2875b5;--ds-basic-color-brand-secondary: #5de3f7;--ds-basic-color-brand-secondary-bold: #18c3dd;--ds-basic-color-brand-secondary-muted: #ebfafd;--ds-basic-color-brand-secondary-subtle: #b4eff9;--ds-basic-color-brand-tertiary: #a3cd6a;--ds-basic-color-brand-tertiary-bold: #7daf3b;--ds-basic-color-brand-tertiary-muted: #eaf3dd;--ds-basic-color-brand-tertiary-subtle: #c9e1a7;--ds-basic-color-fare-basiceconomy: #97eaf8;--ds-basic-color-fare-business: #01426a;--ds-basic-color-fare-economy: #0074ca;--ds-basic-color-fare-first: #00274a;--ds-basic-color-fare-premiumeconomy: #005154;--ds-basic-color-page-background-default: #ebfafd;--ds-basic-color-page-background-utility: #ffffff;--ds-basic-color-status-default: #afb9c6;--ds-basic-color-status-error: #e31f26;--ds-basic-color-status-error-subtle: #fbc6c6;--ds-basic-color-status-info: #01426a;--ds-basic-color-status-info-subtle: #ebf3f9;--ds-basic-color-status-success: #447a1f;--ds-basic-color-status-success-subtle: #d6eac7;--ds-basic-color-status-warning: #fac200;--ds-basic-color-status-warning-subtle: #fff0b2;--ds-basic-color-surface-accent1: #5de3f7;--ds-basic-color-surface-accent1-muted: #ebfafd;--ds-basic-color-surface-accent1-subtle: #b4eff9;--ds-basic-color-surface-accent2: #a3cd6a;--ds-basic-color-surface-accent2-muted: #eaf3dd;--ds-basic-color-surface-default: #ffffff;--ds-basic-color-surface-inverse: #00274a;--ds-basic-color-surface-inverse-subtle: #2875b5;--ds-basic-color-surface-neutral-medium: #c5c5c5;--ds-basic-color-surface-neutral-subtle: #f7f7f7;--ds-basic-color-texticon-accent1: #265688;--ds-basic-color-texticon-default: #2a2a2a;--ds-basic-color-texticon-disabled: #d0d0d0;--ds-basic-color-texticon-inverse: #ffffff;--ds-basic-color-texticon-inverse-disabled: #7e8894;--ds-basic-color-texticon-inverse-muted: #ccd2db;--ds-basic-color-texticon-muted: #676767;--ds-basic-color-tier-program-loungetier-lounge: #01426a;--ds-basic-color-tier-program-loungetier-loungeplus: #53b390;--ds-basic-color-tier-program-loyaltytier-bronze: #d99f6d;--ds-basic-color-tier-program-loyaltytier-bronze-muted: #eed4be;--ds-basic-color-tier-program-loyaltytier-cobalt: #030772;--ds-basic-color-tier-program-loyaltytier-cobalt-muted: #a9b6d6;--ds-basic-color-tier-program-loyaltytier-copper: #cb7457;--ds-basic-color-tier-program-loyaltytier-copper-muted: #e7bfb1;--ds-basic-color-tier-program-loyaltytier-gold: #fbdc7a;--ds-basic-color-tier-program-loyaltytier-gold-muted: #fdefc4;--ds-basic-color-tier-program-loyaltytier-nickel: #abaab1;--ds-basic-color-tier-program-loyaltytier-nickel-muted: #e5e4e7;--ds-basic-color-tier-program-loyaltytier-platinum: #bcb8a4;--ds-basic-color-tier-program-loyaltytier-platinum-muted: #dad8cd;--ds-basic-color-tier-program-loyaltytier-silver: #e4e9ec;--ds-basic-color-tier-program-loyaltytier-silver-muted: #f9fafb;--ds-basic-color-tier-program-loyaltytier-titanium: #282828;--ds-basic-color-tier-program-loyaltytier-titanium-muted: #545454;--ds-basic-color-tier-program-oneworld-emerald: #139142;--ds-basic-color-tier-program-oneworld-ruby: #a41d4a;--ds-basic-color-tier-program-oneworld-sapphire: #015daa;--ds-basic-type-brand-family-primary: "AS Circular";--ds-basic-type-brand-family-secondary: "Good OT";--ds-basic-type-brand-line-height-primary: 1.3;--ds-basic-type-brand-line-height-secondary: 1;--ds-basic-type-brand-letter-spacing-primary: 0;--ds-basic-type-brand-letter-spacing-secondary: 0.05em;--ds-basic-type-brand-letter-spacing-tertiary: 0.10em;--ds-basic-type-family-accent: "Good OT", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-body: "AS Circular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-display: "AS Circular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-heading: "AS Circular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-letter-spacing-accent: 0.05em;--ds-basic-type-letter-spacing-accent2: 0.10em;--ds-basic-type-letter-spacing-body: 0;--ds-basic-type-letter-spacing-display: 0;--ds-basic-type-letter-spacing-heading: 0;--ds-basic-type-line-height-accent: 1.3;--ds-basic-type-line-height-accent2: 1;--ds-basic-type-line-height-body: 1.63;--ds-basic-type-line-height-body2: 1.5;--ds-basic-type-line-height-body3: 1.25;--ds-basic-type-line-height-body4: 1;--ds-basic-type-line-height-body5: 0.88;--ds-basic-type-line-height-display: 1.3;--ds-basic-type-line-height-heading: 1.3;--ds-basic-type-weight-accent: 450;--ds-basic-type-weight-accent2: 500;--ds-basic-type-weight-body: 450;--ds-basic-type-weight-display: 300;--ds-basic-type-weight-heading: 300;--ds-basic-type-weight-heading2: 450}:host([layout*=snowflake]) .leftIndent{margin-left:24px;width:calc(100% - 48px)}:host([layout*=snowflake]) .rightIndent{margin-right:24px;width:calc(100% - 48px)}.layout-snowflake{display:flex;flex-direction:row;align-items:center;justify-content:center}.layout-snowflake label{font-size:var(--ds-text-body-size-xs);line-height:20px}.layout-snowflake input{text-align:center;font-size:18px;line-height:26px}.layout-snowflake .mainContent{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1}.layout-snowflake .displayValue{position:absolute;top:0;right:0;bottom:0;left:0;display:none}.layout-snowflake .displayValue.hasContent:is(.withValue):not(.hasFocus){display:block}.layout-snowflake .displayValueWrapper{transform:translateY(-50%)}.layout-snowflake.withValue{justify-content:flex-start}.layout-snowflake:not(:focus-within):not(:is([validity]:not([validity=valid]))){--ds-auro-input-border-color: transparent}.layout-snowflake:focus-within{justify-content:flex-start}.layout-snowflake:focus-within .alertNotification{display:none}.layout-snowflake .accents{width:24px}.layout-snowflake .accents.left{padding-left:24px}.layout-snowflake .accents.right{padding-right:24px}:host([layout*=snowflake]) .helpTextWrapper{text-align:center}`;
|
|
18577
|
+
var snowflakeStyleCss = i$2`:root{--ds-advanced-color-button-flat-text: #676767;--ds-advanced-color-button-flat-text-disabled: #d0d0d0;--ds-advanced-color-button-flat-text-hover: #525252;--ds-advanced-color-button-flat-text-inverse: #ffffff;--ds-advanced-color-button-flat-text-inverse-disabled: #7e8894;--ds-advanced-color-button-flat-text-inverse-hover: #adadad;--ds-advanced-color-button-ghost-background-hover: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-ghost-background-inverse-hover: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-ghost-text: #01426a;--ds-advanced-color-button-ghost-text-disabled: #d0d0d0;--ds-advanced-color-button-ghost-text-inverse: #ffffff;--ds-advanced-color-button-ghost-text-inverse-disabled: #7e8894;--ds-advanced-color-button-primary-background: #01426a;--ds-advanced-color-button-primary-background-disabled: #acc9e2;--ds-advanced-color-button-primary-background-hover: #00274a;--ds-advanced-color-button-primary-background-inactive: #cfe0ef;--ds-advanced-color-button-primary-background-inactive-hover: #89b2d4;--ds-advanced-color-button-primary-background-inverse: #ffffff;--ds-advanced-color-button-primary-background-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-background-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-border: #01426a;--ds-advanced-color-button-primary-border-disabled: #acc9e2;--ds-advanced-color-button-primary-border-hover: #00274a;--ds-advanced-color-button-primary-border-inverse: #ffffff;--ds-advanced-color-button-primary-border-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-border-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-text: #ffffff;--ds-advanced-color-button-primary-text-disabled: #ffffff;--ds-advanced-color-button-primary-text-inverse: #01426a;--ds-advanced-color-button-secondary-background: #ffffff;--ds-advanced-color-button-secondary-background-disabled: #f7f7f7;--ds-advanced-color-button-secondary-background-hover: #f2f2f2;--ds-advanced-color-button-secondary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-secondary-border: #01426a;--ds-advanced-color-button-secondary-border-hover: #00274a;--ds-advanced-color-button-secondary-border-disabled: #cfe0ef;--ds-advanced-color-button-secondary-border-inverse: #ffffff;--ds-advanced-color-button-secondary-border-inverse-disabled: #dddddd;--ds-advanced-color-button-secondary-text: #01426a;--ds-advanced-color-button-secondary-text-hover: #00274a;--ds-advanced-color-button-secondary-text-inverse: #ffffff;--ds-advanced-color-button-tertiary-background: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-tertiary-background-hover: rgba(0, 0, 0, 0.1);--ds-advanced-color-button-tertiary-background-inverse: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-tertiary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-tertiary-text: #01426a;--ds-advanced-color-button-tertiary-text-hover: #00274a;--ds-advanced-color-button-tertiary-text-inverse: #ffffff;--ds-advanced-color-accents-accent1: #b2d583;--ds-advanced-color-accents-accent1-bold: #92c450;--ds-advanced-color-accents-accent1-muted: #deedca;--ds-advanced-color-accents-accent2: #fad362;--ds-advanced-color-accents-accent2-bold: #f2ba14;--ds-advanced-color-accents-accent2-muted: #fde398;--ds-advanced-color-accents-accent3: #63beff;--ds-advanced-color-accents-accent3-bold: #0074ca;--ds-advanced-color-accents-accent3-muted: #aedeff;--ds-advanced-color-accents-accent4: #feb17a;--ds-advanced-color-accents-accent4-bold: #fb7f24;--ds-advanced-color-accents-accent4-muted: #ffe2cf;--ds-advanced-color-accents-transparency: rgba(0, 0, 0, 0.1);--ds-advanced-color-accents-transparency-inverse: rgba(255, 255, 255, 0.2);--ds-advanced-color-avatar-gradient-bottom: #cfe0ef;--ds-advanced-color-avatar-gradient-top: #6899c6;--ds-advanced-color-boolean-disabled-inverse: #7e8894;--ds-advanced-color-boolean-error: #e31f26;--ds-advanced-color-boolean-error-hover: #b1161c;--ds-advanced-color-boolean-error-inverse: #f9a4a8;--ds-advanced-color-boolean-error-inverse-hover: #f15f65;--ds-advanced-color-boolean-indicator: #ffffff;--ds-advanced-color-boolean-indicator-inverse: #00274a;--ds-advanced-color-boolean-isfalse: #ffffff;--ds-advanced-color-boolean-isfalse-border: #585e67;--ds-advanced-color-boolean-isfalse-border-inverse: #ffffff;--ds-advanced-color-boolean-isfalse-hover: #f2f2f2;--ds-advanced-color-boolean-isfalse-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-boolean-isfalse-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-boolean-istrue: #01426a;--ds-advanced-color-boolean-istrue-hover: #00274a;--ds-advanced-color-boolean-istrue-inverse: #ffffff;--ds-advanced-color-boolean-istrue-inverse-hover: rgba(255, 255, 255, 0.7);--ds-advanced-color-flightline-indicator: #00274a;--ds-advanced-color-flightline-line: #00274a;--ds-advanced-color-hyperlink-text: #2875b5;--ds-advanced-color-hyperlink-text-hover: #01426a;--ds-advanced-color-hyperlink-text-inverse: #ffffff;--ds-advanced-color-hyperlink-text-inverse-hover: #ebf3f9;--ds-advanced-color-shared-background: #ffffff;--ds-advanced-color-shared-background-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-shared-background-inverse-disabled: rgba(255, 255, 255, 0.1);--ds-advanced-color-shared-background-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-shared-background-muted: #f7f7f7;--ds-advanced-color-shared-background-strong: #7e7e7e;--ds-advanced-color-shared-scrim: rgba(0, 0, 0, 0.5);--ds-advanced-color-shared-text-accent: #2875b5;--ds-advanced-color-skeleton-background: #f7f8fa;--ds-advanced-color-skeleton-wave: #e4e8ec;--ds-advanced-color-state-background-disabled: #dddddd;--ds-advanced-color-state-background-hover: #f2f2f2;--ds-advanced-color-state-background-inverse-disabled: #7e8894;--ds-advanced-color-state-error-inverse: #f9a4a8;--ds-advanced-color-state-focused: #01426a;--ds-advanced-color-state-focused-inverse: #ffffff;--ds-advanced-color-state-selected: #01426a;--ds-advanced-color-state-selected-hover: #00274a;--ds-basic-color-border-bold: #585e67;--ds-basic-color-border-brand: #00274a;--ds-basic-color-border-default: #959595;--ds-basic-color-border-divider: rgba(0, 0, 0, 0.15);--ds-basic-color-border-divider-inverse: rgba(255, 255, 255, 0.4);--ds-basic-color-border-inverse: #ffffff;--ds-basic-color-border-subtle: #dddddd;--ds-basic-color-brand-primary: #01426a;--ds-basic-color-brand-primary-bold: #00274a;--ds-basic-color-brand-primary-muted: #ebf3f9;--ds-basic-color-brand-primary-subtle: #2875b5;--ds-basic-color-brand-secondary: #5de3f7;--ds-basic-color-brand-secondary-bold: #18c3dd;--ds-basic-color-brand-secondary-muted: #ebfafd;--ds-basic-color-brand-secondary-subtle: #b4eff9;--ds-basic-color-brand-tertiary: #a3cd6a;--ds-basic-color-brand-tertiary-bold: #7daf3b;--ds-basic-color-brand-tertiary-muted: #eaf3dd;--ds-basic-color-brand-tertiary-subtle: #c9e1a7;--ds-basic-color-fare-basiceconomy: #97eaf8;--ds-basic-color-fare-business: #01426a;--ds-basic-color-fare-economy: #0074ca;--ds-basic-color-fare-first: #00274a;--ds-basic-color-fare-premiumeconomy: #005154;--ds-basic-color-page-background-default: #ebfafd;--ds-basic-color-page-background-utility: #ffffff;--ds-basic-color-status-default: #afb9c6;--ds-basic-color-status-error: #e31f26;--ds-basic-color-status-error-subtle: #fbc6c6;--ds-basic-color-status-info: #01426a;--ds-basic-color-status-info-subtle: #ebf3f9;--ds-basic-color-status-success: #447a1f;--ds-basic-color-status-success-subtle: #d6eac7;--ds-basic-color-status-warning: #fac200;--ds-basic-color-status-warning-subtle: #fff0b2;--ds-basic-color-surface-accent1: #5de3f7;--ds-basic-color-surface-accent1-muted: #ebfafd;--ds-basic-color-surface-accent1-subtle: #b4eff9;--ds-basic-color-surface-accent2: #a3cd6a;--ds-basic-color-surface-accent2-muted: #eaf3dd;--ds-basic-color-surface-default: #ffffff;--ds-basic-color-surface-inverse: #00274a;--ds-basic-color-surface-inverse-subtle: #2875b5;--ds-basic-color-surface-neutral-medium: #c5c5c5;--ds-basic-color-surface-neutral-subtle: #f7f7f7;--ds-basic-color-texticon-accent1: #265688;--ds-basic-color-texticon-default: #2a2a2a;--ds-basic-color-texticon-disabled: #d0d0d0;--ds-basic-color-texticon-inverse: #ffffff;--ds-basic-color-texticon-inverse-disabled: #7e8894;--ds-basic-color-texticon-inverse-muted: #ccd2db;--ds-basic-color-texticon-muted: #676767;--ds-basic-color-tier-program-loungetier-lounge: #01426a;--ds-basic-color-tier-program-loungetier-loungeplus: #53b390;--ds-basic-color-tier-program-loyaltytier-bronze: #d99f6d;--ds-basic-color-tier-program-loyaltytier-bronze-muted: #eed4be;--ds-basic-color-tier-program-loyaltytier-cobalt: #030772;--ds-basic-color-tier-program-loyaltytier-cobalt-muted: #a9b6d6;--ds-basic-color-tier-program-loyaltytier-copper: #cb7457;--ds-basic-color-tier-program-loyaltytier-copper-muted: #e7bfb1;--ds-basic-color-tier-program-loyaltytier-gold: #fbdc7a;--ds-basic-color-tier-program-loyaltytier-gold-muted: #fdefc4;--ds-basic-color-tier-program-loyaltytier-nickel: #abaab1;--ds-basic-color-tier-program-loyaltytier-nickel-muted: #e5e4e7;--ds-basic-color-tier-program-loyaltytier-platinum: #bcb8a4;--ds-basic-color-tier-program-loyaltytier-platinum-muted: #dad8cd;--ds-basic-color-tier-program-loyaltytier-silver: #e4e9ec;--ds-basic-color-tier-program-loyaltytier-silver-muted: #f9fafb;--ds-basic-color-tier-program-loyaltytier-titanium: #282828;--ds-basic-color-tier-program-loyaltytier-titanium-muted: #545454;--ds-basic-color-tier-program-oneworld-emerald: #139142;--ds-basic-color-tier-program-oneworld-ruby: #a41d4a;--ds-basic-color-tier-program-oneworld-sapphire: #015daa;--ds-basic-type-brand-family-primary: "AS Circular";--ds-basic-type-brand-family-secondary: "Good OT";--ds-basic-type-brand-line-height-primary: 1.3;--ds-basic-type-brand-line-height-secondary: 1;--ds-basic-type-brand-letter-spacing-primary: 0;--ds-basic-type-brand-letter-spacing-secondary: 0.05em;--ds-basic-type-brand-letter-spacing-tertiary: 0.10em;--ds-basic-type-family-accent: "Good OT", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-body: "AS Circular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-display: "AS Circular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-heading: "AS Circular", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-letter-spacing-accent: 0.05em;--ds-basic-type-letter-spacing-accent2: 0.10em;--ds-basic-type-letter-spacing-body: 0;--ds-basic-type-letter-spacing-display: 0;--ds-basic-type-letter-spacing-heading: 0;--ds-basic-type-line-height-accent: 1.3;--ds-basic-type-line-height-accent2: 1;--ds-basic-type-line-height-body: 1.63;--ds-basic-type-line-height-body2: 1.5;--ds-basic-type-line-height-body3: 1.25;--ds-basic-type-line-height-body4: 1;--ds-basic-type-line-height-body5: 0.88;--ds-basic-type-line-height-display: 1.3;--ds-basic-type-line-height-heading: 1.3;--ds-basic-type-weight-accent: 450;--ds-basic-type-weight-accent2: 500;--ds-basic-type-weight-body: 450;--ds-basic-type-weight-display: 300;--ds-basic-type-weight-heading: 300;--ds-basic-type-weight-heading2: 450}:host([layout*=snowflake]) .leftIndent{margin-left:var(--ds-size-150, 0.75rem);width:calc(100% - var(--ds-size-300, 1.5rem))}:host([layout*=snowflake]) .rightIndent{margin-right:var(--ds-size-150, 0.75rem);width:calc(100% - var(--ds-size-300, 1.5rem))}.layout-snowflake{display:flex;flex-direction:row;align-items:center;justify-content:center}.layout-snowflake label{font-size:var(--ds-text-body-size-xs);line-height:20px}.layout-snowflake input{text-align:center;font-size:18px;line-height:26px}.layout-snowflake .mainContent{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1}.layout-snowflake .displayValue{position:absolute;top:0;right:0;bottom:0;left:0;display:none}.layout-snowflake .displayValue.hasContent:is(.withValue):not(.hasFocus){display:block}.layout-snowflake .displayValueWrapper{transform:translateY(-50%)}.layout-snowflake.withValue{justify-content:flex-start}.layout-snowflake:not(:focus-within):not(:is([validity]:not([validity=valid]))){--ds-auro-input-border-color: transparent}.layout-snowflake:focus-within{justify-content:flex-start}.layout-snowflake:focus-within .alertNotification{display:none}.layout-snowflake .accents{width:var(--ds-size-150, 0.75rem)}.layout-snowflake .accents.left{padding-left:var(--ds-size-150, 0.75rem)}.layout-snowflake .accents.right{padding-right:var(--ds-size-150, 0.75rem)}:host([layout*=snowflake]) .helpTextWrapper{text-align:center}`;
|
|
18314
18578
|
|
|
18315
18579
|
const watchedItems$1 = new Set();
|
|
18316
18580
|
|
|
@@ -22825,19 +23089,19 @@ class AuroFormValidation {
|
|
|
22825
23089
|
{
|
|
22826
23090
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
22827
23091
|
validity: 'tooShort',
|
|
22828
|
-
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
23092
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
22829
23093
|
},
|
|
22830
23094
|
{
|
|
22831
23095
|
check: (e) => e.value?.length > e.maxLength,
|
|
22832
23096
|
validity: 'tooLong',
|
|
22833
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
23097
|
+
message: e => e.getAttribute('setCustomValidityTooLong') || e.setCustomValidity || ''
|
|
22834
23098
|
}
|
|
22835
23099
|
],
|
|
22836
23100
|
pattern: [
|
|
22837
23101
|
{
|
|
22838
23102
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
22839
23103
|
validity: 'patternMismatch',
|
|
22840
|
-
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
23104
|
+
message: e => e.getAttribute('setCustomValidityPatternMismatch') || e.setCustomValidity || ''
|
|
22841
23105
|
}
|
|
22842
23106
|
]
|
|
22843
23107
|
},
|
|
@@ -23032,10 +23296,10 @@ class AuroFormValidation {
|
|
|
23032
23296
|
if (!hasValue && elem.required && elem.touched) {
|
|
23033
23297
|
elem.validity = 'valueMissing';
|
|
23034
23298
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
23035
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
23299
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
23036
23300
|
this.validateType(elem);
|
|
23037
23301
|
this.validateElementAttributes(elem);
|
|
23038
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
23302
|
+
} else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
|
|
23039
23303
|
this.validateElementAttributes(elem);
|
|
23040
23304
|
}
|
|
23041
23305
|
}
|
|
@@ -23517,7 +23781,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
23517
23781
|
},
|
|
23518
23782
|
|
|
23519
23783
|
/**
|
|
23520
|
-
* Define custom placeholder text
|
|
23784
|
+
* Define custom placeholder text.
|
|
23521
23785
|
*/
|
|
23522
23786
|
placeholder: {
|
|
23523
23787
|
type: String,
|
|
@@ -23814,9 +24078,9 @@ class BaseInput extends AuroElement$2 {
|
|
|
23814
24078
|
if (!this.shadowRoot.contains(this.getActiveElement())) {
|
|
23815
24079
|
this.validation.validate(this);
|
|
23816
24080
|
}
|
|
23817
|
-
|
|
23818
|
-
this.notifyValueChanged();
|
|
23819
24081
|
}
|
|
24082
|
+
|
|
24083
|
+
this.notifyValueChanged();
|
|
23820
24084
|
}
|
|
23821
24085
|
|
|
23822
24086
|
if (changedProperties.has('error')) {
|
|
@@ -25777,7 +26041,7 @@ var buttonVersion = '11.0.0';
|
|
|
25777
26041
|
|
|
25778
26042
|
var colorCss$4 = i$2`:host([error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]){--ds-auro-helptext-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}.helptext-wrapper{color:var(--ds-auro-helptext-color)}`;
|
|
25779
26043
|
|
|
25780
|
-
var styleCss$5 = i$2
|
|
26044
|
+
var styleCss$5 = i$2`:host{position:relative;display:block}.helptext-wrapper{display:none;font-size:12px;font-weight:450;letter-spacing:0;line-height:16px}:host([large]) .helptext-wrapper{font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}.helptext-wrapper[visible]{display:block}::slotted(*:not(:empty)){margin-top:var(--ds-size-50, 0.25rem);margin-bottom:0}::slotted(p){margin-block:0}`;
|
|
25781
26045
|
|
|
25782
26046
|
var tokensCss$5 = i$2`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
25783
26047
|
|
|
@@ -26054,7 +26318,7 @@ class AuroInput extends BaseInput {
|
|
|
26054
26318
|
*/
|
|
26055
26319
|
get commonInputClasses() {
|
|
26056
26320
|
return {
|
|
26057
|
-
'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
|
|
26321
|
+
'util_displayHiddenVisually': (this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0) || ((!this.value || this.value.length === 0) && !this.hasFocus && (!this.placeholder || this.placeholder === '')),
|
|
26058
26322
|
};
|
|
26059
26323
|
}
|
|
26060
26324
|
|
|
@@ -26503,7 +26767,7 @@ var inputVersion = '4.2.0';
|
|
|
26503
26767
|
|
|
26504
26768
|
var colorCss$1 = i$2`:host([error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]){--ds-auro-helptext-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}.helptext-wrapper{color:var(--ds-auro-helptext-color)}`;
|
|
26505
26769
|
|
|
26506
|
-
var styleCss$1 = i$2
|
|
26770
|
+
var styleCss$1 = i$2`:host{position:relative;display:block}.helptext-wrapper{display:none;font-size:12px;font-weight:450;letter-spacing:0;line-height:16px}:host([large]) .helptext-wrapper{font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}.helptext-wrapper[visible]{display:block}::slotted(*:not(:empty)){margin-top:var(--ds-size-50, 0.25rem);margin-bottom:0}::slotted(p){margin-block:0}`;
|
|
26507
26771
|
|
|
26508
26772
|
var tokensCss$1 = i$2`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
26509
26773
|
|
|
@@ -28142,6 +28406,18 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28142
28406
|
this.dispatchEvent(new CustomEvent('auroDatePicker-newSlotContent'));
|
|
28143
28407
|
}
|
|
28144
28408
|
|
|
28409
|
+
/**
|
|
28410
|
+
* Handle enter/space keydown on the reset button.
|
|
28411
|
+
* @private
|
|
28412
|
+
* @param {KeyboardEvent} event - The keydown event.
|
|
28413
|
+
*/
|
|
28414
|
+
handleKeydownReset(event) {
|
|
28415
|
+
if (event.key === 'Enter' || event.key === ' ') {
|
|
28416
|
+
this.resetValues();
|
|
28417
|
+
this.setHasFocus();
|
|
28418
|
+
}
|
|
28419
|
+
}
|
|
28420
|
+
|
|
28145
28421
|
/**
|
|
28146
28422
|
* Resets values without resetting validation.
|
|
28147
28423
|
*/
|
|
@@ -28511,6 +28787,10 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28511
28787
|
}
|
|
28512
28788
|
|
|
28513
28789
|
renderHtmlInputs() {
|
|
28790
|
+
const inputClasses = {
|
|
28791
|
+
"util_displayHiddenVisually": !this.hasValue && !this.hasFocus
|
|
28792
|
+
};
|
|
28793
|
+
|
|
28514
28794
|
return u$3`
|
|
28515
28795
|
<div class="inputContainer">
|
|
28516
28796
|
<${this.inputTag}
|
|
@@ -28518,7 +28798,6 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28518
28798
|
?onDark="${this.onDark}"
|
|
28519
28799
|
?required="${this.required}"
|
|
28520
28800
|
.format="${this.format}"
|
|
28521
|
-
.hideInputVisually="${!this.hasValue && !this.hasFocus}"
|
|
28522
28801
|
.max="${this.maxDate}"
|
|
28523
28802
|
.min="${this.minDate}"
|
|
28524
28803
|
id="${this.generateRandomString(12)}"
|
|
@@ -28526,7 +28805,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28526
28805
|
simple
|
|
28527
28806
|
bordered
|
|
28528
28807
|
noValidate
|
|
28529
|
-
class="dateFrom
|
|
28808
|
+
class="dateFrom ${e$2(inputClasses)}"
|
|
28530
28809
|
type="date"
|
|
28531
28810
|
part="input"
|
|
28532
28811
|
shape="box"
|
|
@@ -28553,13 +28832,12 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28553
28832
|
?onDark="${this.onDark}"
|
|
28554
28833
|
?required="${this.required}"
|
|
28555
28834
|
.format="${this.format}"
|
|
28556
|
-
.hideInputVisually="${!this.hasValue && !this.hasFocus}"
|
|
28557
28835
|
.max="${this.maxDate}"
|
|
28558
28836
|
.min="${this.minDate}"
|
|
28559
28837
|
.placeholder="${this.placeholderEndDate || this.placeholder}"
|
|
28560
28838
|
id="${this.generateRandomString(12)}"
|
|
28561
28839
|
bordered
|
|
28562
|
-
class="dateTo"
|
|
28840
|
+
class="dateTo ${e$2(inputClasses)}"
|
|
28563
28841
|
noValidate
|
|
28564
28842
|
type="date"
|
|
28565
28843
|
setCustomValidity="${this.setCustomValidity}"
|
|
@@ -28592,6 +28870,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28592
28870
|
<div class="${e$2(clearActionClassMap)}">
|
|
28593
28871
|
<${this.buttonTag}
|
|
28594
28872
|
@click="${this.resetValues}"
|
|
28873
|
+
@keydown="${this.handleKeydownReset}"
|
|
28595
28874
|
?onDark="${this.onDark}"
|
|
28596
28875
|
aria-label="${i18n(this.lang, 'clearInput')}"
|
|
28597
28876
|
class="notificationBtn clearBtn"
|
|
@@ -28691,6 +28970,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28691
28970
|
bordered
|
|
28692
28971
|
class="${e$2(dropdownElementClassMap)}"
|
|
28693
28972
|
disableEventShow
|
|
28973
|
+
disableFocusTrap
|
|
28694
28974
|
fluid
|
|
28695
28975
|
for="dropdownMenu"
|
|
28696
28976
|
part="dropdown"
|