@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
|
@@ -830,19 +830,19 @@ let AuroFormValidation$1 = class AuroFormValidation {
|
|
|
830
830
|
{
|
|
831
831
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
832
832
|
validity: 'tooShort',
|
|
833
|
-
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
833
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
834
834
|
},
|
|
835
835
|
{
|
|
836
836
|
check: (e) => e.value?.length > e.maxLength,
|
|
837
837
|
validity: 'tooLong',
|
|
838
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
838
|
+
message: e => e.getAttribute('setCustomValidityTooLong') || e.setCustomValidity || ''
|
|
839
839
|
}
|
|
840
840
|
],
|
|
841
841
|
pattern: [
|
|
842
842
|
{
|
|
843
843
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
844
844
|
validity: 'patternMismatch',
|
|
845
|
-
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
845
|
+
message: e => e.getAttribute('setCustomValidityPatternMismatch') || e.setCustomValidity || ''
|
|
846
846
|
}
|
|
847
847
|
]
|
|
848
848
|
},
|
|
@@ -1037,10 +1037,10 @@ let AuroFormValidation$1 = class AuroFormValidation {
|
|
|
1037
1037
|
if (!hasValue && elem.required && elem.touched) {
|
|
1038
1038
|
elem.validity = 'valueMissing';
|
|
1039
1039
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
1040
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
1040
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
1041
1041
|
this.validateType(elem);
|
|
1042
1042
|
this.validateElementAttributes(elem);
|
|
1043
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
1043
|
+
} else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
|
|
1044
1044
|
this.validateElementAttributes(elem);
|
|
1045
1045
|
}
|
|
1046
1046
|
}
|
|
@@ -1545,7 +1545,7 @@ class UtilitiesCalendarRender {
|
|
|
1545
1545
|
}
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
|
-
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){
|
|
1548
|
+
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}}`;
|
|
1549
1549
|
|
|
1550
1550
|
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)}`;
|
|
1551
1551
|
|
|
@@ -1555,7 +1555,7 @@ var shapeSizeCss$2 = i$2`.wrapper{overflow:hidden}.shape-classic-xl,.shape-class
|
|
|
1555
1555
|
|
|
1556
1556
|
var classicLayoutColor = i$2``;
|
|
1557
1557
|
|
|
1558
|
-
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}`;
|
|
1558
|
+
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}`;
|
|
1559
1559
|
|
|
1560
1560
|
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}`;
|
|
1561
1561
|
|
|
@@ -12985,6 +12985,30 @@ class AuroBibtemplate extends i {
|
|
|
12985
12985
|
AuroLibraryRuntimeUtils$3$1.prototype.registerComponent(name, AuroBibtemplate);
|
|
12986
12986
|
}
|
|
12987
12987
|
|
|
12988
|
+
/**
|
|
12989
|
+
* Prevents scrolling of the body when touching empty areas of the component.
|
|
12990
|
+
* @param {Event} event - The touchmove event.
|
|
12991
|
+
* @returns {void}
|
|
12992
|
+
*/
|
|
12993
|
+
preventBodyScroll(event) {
|
|
12994
|
+
if (event.target === this) {
|
|
12995
|
+
event.preventDefault();
|
|
12996
|
+
}
|
|
12997
|
+
}
|
|
12998
|
+
|
|
12999
|
+
connectedCallback() {
|
|
13000
|
+
super.connectedCallback();
|
|
13001
|
+
|
|
13002
|
+
this.preventBodyScroll = this.preventBodyScroll.bind(this);
|
|
13003
|
+
this.addEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
13004
|
+
}
|
|
13005
|
+
|
|
13006
|
+
disconnectedCallback() {
|
|
13007
|
+
super.disconnectedCallback();
|
|
13008
|
+
|
|
13009
|
+
this.removeEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
13010
|
+
}
|
|
13011
|
+
|
|
12988
13012
|
onCloseButtonClick() {
|
|
12989
13013
|
this.dispatchEvent(new Event("close-click", { bubbles: true,
|
|
12990
13014
|
composed: true }));
|
|
@@ -13016,7 +13040,7 @@ class AuroBibtemplate extends i {
|
|
|
13016
13040
|
<div id="bibTemplate" part="bibtemplate">
|
|
13017
13041
|
${this.isFullscreen ? u$3`
|
|
13018
13042
|
<div id="headerContainer">
|
|
13019
|
-
<${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
13043
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
13020
13044
|
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
13021
13045
|
</${this.buttonTag}>
|
|
13022
13046
|
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
@@ -16633,6 +16657,267 @@ class AuroFloatingUI {
|
|
|
16633
16657
|
}
|
|
16634
16658
|
}
|
|
16635
16659
|
|
|
16660
|
+
// Selectors for focusable elements
|
|
16661
|
+
const FOCUSABLE_SELECTORS = [
|
|
16662
|
+
'a[href]',
|
|
16663
|
+
'button:not([disabled])',
|
|
16664
|
+
'textarea:not([disabled])',
|
|
16665
|
+
'input:not([disabled])',
|
|
16666
|
+
'select:not([disabled])',
|
|
16667
|
+
'[role="tab"]:not([disabled])',
|
|
16668
|
+
'[role="link"]:not([disabled])',
|
|
16669
|
+
'[role="button"]:not([disabled])',
|
|
16670
|
+
'[tabindex]:not([tabindex="-1"])',
|
|
16671
|
+
'[contenteditable]:not([contenteditable="false"])'
|
|
16672
|
+
];
|
|
16673
|
+
|
|
16674
|
+
// List of custom components that are known to be focusable
|
|
16675
|
+
const FOCUSABLE_COMPONENTS = [
|
|
16676
|
+
'auro-checkbox',
|
|
16677
|
+
'auro-radio',
|
|
16678
|
+
'auro-dropdown',
|
|
16679
|
+
'auro-button',
|
|
16680
|
+
'auro-combobox',
|
|
16681
|
+
'auro-input',
|
|
16682
|
+
'auro-counter',
|
|
16683
|
+
'auro-menu',
|
|
16684
|
+
'auro-select',
|
|
16685
|
+
'auro-datepicker',
|
|
16686
|
+
'auro-hyperlink',
|
|
16687
|
+
'auro-accordion',
|
|
16688
|
+
];
|
|
16689
|
+
|
|
16690
|
+
/**
|
|
16691
|
+
* Determines if a given element is a custom focusable component.
|
|
16692
|
+
* Returns true if the element matches a known focusable component and is not disabled.
|
|
16693
|
+
*
|
|
16694
|
+
* @param {HTMLElement} element The element to check for focusability.
|
|
16695
|
+
* @returns {boolean} True if the element is a focusable custom component, false otherwise.
|
|
16696
|
+
*/
|
|
16697
|
+
function isFocusableComponent(element) {
|
|
16698
|
+
const componentName = element.tagName.toLowerCase();
|
|
16699
|
+
|
|
16700
|
+
// Guard Clause: Element is a focusable component
|
|
16701
|
+
if (!FOCUSABLE_COMPONENTS.some((name) => element.hasAttribute(name) || componentName === name)) return false;
|
|
16702
|
+
|
|
16703
|
+
// Guard Clause: Element is not disabled
|
|
16704
|
+
if (element.hasAttribute('disabled')) return false;
|
|
16705
|
+
|
|
16706
|
+
// Guard Clause: The element is a hyperlink and has no href attribute
|
|
16707
|
+
if (componentName.match("hyperlink") && !element.hasAttribute('href')) return false;
|
|
16708
|
+
|
|
16709
|
+
// If all guard clauses pass, the element is a focusable component
|
|
16710
|
+
return true;
|
|
16711
|
+
}
|
|
16712
|
+
|
|
16713
|
+
/**
|
|
16714
|
+
* Retrieves all focusable elements within the container in DOM order, including those in shadow DOM and slots.
|
|
16715
|
+
* Returns a unique, ordered array of elements that can receive focus.
|
|
16716
|
+
*
|
|
16717
|
+
* @param {HTMLElement} container The container to search within
|
|
16718
|
+
* @returns {Array<HTMLElement>} An array of focusable elements within the container.
|
|
16719
|
+
*/
|
|
16720
|
+
function getFocusableElements(container) {
|
|
16721
|
+
// Get elements in DOM order by walking the tree
|
|
16722
|
+
const orderedFocusableElements = [];
|
|
16723
|
+
|
|
16724
|
+
// Define a recursive function to collect focusable elements in DOM order
|
|
16725
|
+
const collectFocusableElements = (root) => {
|
|
16726
|
+
// Check if current element is focusable
|
|
16727
|
+
if (root.nodeType === Node.ELEMENT_NODE) {
|
|
16728
|
+
// Check if this is a custom component that is focusable
|
|
16729
|
+
const isComponentFocusable = isFocusableComponent(root);
|
|
16730
|
+
|
|
16731
|
+
if (isComponentFocusable) {
|
|
16732
|
+
// Add the component itself as a focusable element and don't traverse its shadow DOM
|
|
16733
|
+
orderedFocusableElements.push(root);
|
|
16734
|
+
return; // Skip traversing inside this component
|
|
16735
|
+
}
|
|
16736
|
+
|
|
16737
|
+
// Check if the element itself matches any selector
|
|
16738
|
+
for (const selector of FOCUSABLE_SELECTORS) {
|
|
16739
|
+
if (root.matches?.(selector)) {
|
|
16740
|
+
orderedFocusableElements.push(root);
|
|
16741
|
+
break; // Once we know it's focusable, no need to check other selectors
|
|
16742
|
+
}
|
|
16743
|
+
}
|
|
16744
|
+
|
|
16745
|
+
// Process shadow DOM only for non-Auro components
|
|
16746
|
+
if (root.shadowRoot) {
|
|
16747
|
+
// Process shadow DOM children in order
|
|
16748
|
+
if (root.shadowRoot.children) {
|
|
16749
|
+
Array.from(root.shadowRoot.children).forEach(child => {
|
|
16750
|
+
collectFocusableElements(child);
|
|
16751
|
+
});
|
|
16752
|
+
}
|
|
16753
|
+
}
|
|
16754
|
+
|
|
16755
|
+
// Process slots and their assigned nodes in order
|
|
16756
|
+
if (root.tagName === 'SLOT') {
|
|
16757
|
+
const assignedNodes = root.assignedNodes({ flatten: true });
|
|
16758
|
+
for (const node of assignedNodes) {
|
|
16759
|
+
collectFocusableElements(node);
|
|
16760
|
+
}
|
|
16761
|
+
} else {
|
|
16762
|
+
// Process light DOM children in order
|
|
16763
|
+
if (root.children) {
|
|
16764
|
+
Array.from(root.children).forEach(child => {
|
|
16765
|
+
collectFocusableElements(child);
|
|
16766
|
+
});
|
|
16767
|
+
}
|
|
16768
|
+
}
|
|
16769
|
+
}
|
|
16770
|
+
};
|
|
16771
|
+
|
|
16772
|
+
// Start the traversal from the container
|
|
16773
|
+
collectFocusableElements(container);
|
|
16774
|
+
|
|
16775
|
+
// Remove duplicates that might have been collected through different paths
|
|
16776
|
+
// while preserving order
|
|
16777
|
+
const uniqueElements = [];
|
|
16778
|
+
const seen = new Set();
|
|
16779
|
+
|
|
16780
|
+
for (const element of orderedFocusableElements) {
|
|
16781
|
+
if (!seen.has(element)) {
|
|
16782
|
+
seen.add(element);
|
|
16783
|
+
uniqueElements.push(element);
|
|
16784
|
+
}
|
|
16785
|
+
}
|
|
16786
|
+
|
|
16787
|
+
return uniqueElements;
|
|
16788
|
+
}
|
|
16789
|
+
|
|
16790
|
+
/**
|
|
16791
|
+
* FocusTrap manages keyboard focus within a specified container element, ensuring that focus does not leave the container when tabbing.
|
|
16792
|
+
* It is commonly used for modal dialogs or overlays to improve accessibility by trapping focus within interactive UI components.
|
|
16793
|
+
*/
|
|
16794
|
+
class FocusTrap {
|
|
16795
|
+
/**
|
|
16796
|
+
* Creates a new FocusTrap instance for the given container element.
|
|
16797
|
+
* Initializes event listeners and prepares the container for focus management.
|
|
16798
|
+
*
|
|
16799
|
+
* @param {HTMLElement} container The DOM element to trap focus within.
|
|
16800
|
+
* @throws {Error} If the provided container is not a valid HTMLElement.
|
|
16801
|
+
*/
|
|
16802
|
+
constructor(container) {
|
|
16803
|
+
if (!container || !(container instanceof HTMLElement)) {
|
|
16804
|
+
throw new Error("FocusTrap requires a valid HTMLElement.");
|
|
16805
|
+
}
|
|
16806
|
+
|
|
16807
|
+
this.container = container;
|
|
16808
|
+
this.tabDirection = 'forward'; // or 'backward'
|
|
16809
|
+
|
|
16810
|
+
this._init();
|
|
16811
|
+
}
|
|
16812
|
+
|
|
16813
|
+
/**
|
|
16814
|
+
* Initializes the focus trap by setting up event listeners and attributes on the container.
|
|
16815
|
+
* Prepares the container for focus management, including support for shadow DOM and inert attributes.
|
|
16816
|
+
*
|
|
16817
|
+
* @private
|
|
16818
|
+
*/
|
|
16819
|
+
_init() {
|
|
16820
|
+
|
|
16821
|
+
// Add inert attribute to prevent focusing programmatically as well (if supported)
|
|
16822
|
+
if ('inert' in HTMLElement.prototype) {
|
|
16823
|
+
this.container.inert = false; // Ensure the container isn't inert
|
|
16824
|
+
this.container.setAttribute('data-focus-trap-container', true); // Mark for identification
|
|
16825
|
+
}
|
|
16826
|
+
|
|
16827
|
+
// Track tab direction
|
|
16828
|
+
this.container.addEventListener('keydown', this._onKeydown);
|
|
16829
|
+
}
|
|
16830
|
+
|
|
16831
|
+
/**
|
|
16832
|
+
* Handles keydown events to manage tab navigation within the container.
|
|
16833
|
+
* Ensures that focus wraps around when reaching the first or last focusable element.
|
|
16834
|
+
*
|
|
16835
|
+
* @param {KeyboardEvent} e The keyboard event triggered by user interaction.
|
|
16836
|
+
* @private
|
|
16837
|
+
*/
|
|
16838
|
+
_onKeydown = (e) => {
|
|
16839
|
+
|
|
16840
|
+
if (e.key === 'Tab') {
|
|
16841
|
+
|
|
16842
|
+
// Set the tab direction based on the key pressed
|
|
16843
|
+
this.tabDirection = e.shiftKey ? 'backward' : 'forward';
|
|
16844
|
+
|
|
16845
|
+
// Get the active element(s) in the document and shadow root
|
|
16846
|
+
// This will include the active element in the shadow DOM if it exists
|
|
16847
|
+
// Active element may be inside the shadow DOM depending on delegatesFocus, so we need to check both
|
|
16848
|
+
let activeElement = document.activeElement;
|
|
16849
|
+
const actives = [activeElement];
|
|
16850
|
+
while (activeElement?.shadowRoot?.activeElement) {
|
|
16851
|
+
actives.push(activeElement.shadowRoot.activeElement);
|
|
16852
|
+
activeElement = activeElement.shadowRoot.activeElement;
|
|
16853
|
+
}
|
|
16854
|
+
|
|
16855
|
+
// Update the focusable elements
|
|
16856
|
+
const focusables = this._getFocusableElements();
|
|
16857
|
+
|
|
16858
|
+
// If we're at either end of the focusable elements, wrap around to the other end
|
|
16859
|
+
const focusIndex =
|
|
16860
|
+
(actives.includes(focusables[0]) || actives.includes(this.container)) && this.tabDirection === 'backward'
|
|
16861
|
+
? focusables.length - 1
|
|
16862
|
+
: actives.includes(focusables[focusables.length - 1]) && this.tabDirection === 'forward'
|
|
16863
|
+
? 0
|
|
16864
|
+
: null;
|
|
16865
|
+
|
|
16866
|
+
if (focusIndex !== null) {
|
|
16867
|
+
focusables[focusIndex].focus();
|
|
16868
|
+
e.preventDefault(); // Prevent default tab behavior
|
|
16869
|
+
e.stopPropagation(); // Stop the event from bubbling up
|
|
16870
|
+
}
|
|
16871
|
+
}
|
|
16872
|
+
};
|
|
16873
|
+
|
|
16874
|
+
/**
|
|
16875
|
+
* Retrieves all focusable elements within the container in DOM order, including those in shadow DOM and slots.
|
|
16876
|
+
* Returns a unique, ordered array of elements that can receive focus.
|
|
16877
|
+
*
|
|
16878
|
+
* @returns {Array<HTMLElement>} An array of focusable elements within the container.
|
|
16879
|
+
* @private
|
|
16880
|
+
*/
|
|
16881
|
+
_getFocusableElements() {
|
|
16882
|
+
// Use the imported utility function to get focusable elements
|
|
16883
|
+
const elements = getFocusableElements(this.container);
|
|
16884
|
+
|
|
16885
|
+
// Filter out any elements with the 'focus-bookend' class
|
|
16886
|
+
return elements;
|
|
16887
|
+
}
|
|
16888
|
+
|
|
16889
|
+
/**
|
|
16890
|
+
* Moves focus to the first focusable element within the container.
|
|
16891
|
+
* Useful for setting initial focus when activating the focus trap.
|
|
16892
|
+
*/
|
|
16893
|
+
focusFirstElement() {
|
|
16894
|
+
const focusables = this._getFocusableElements();
|
|
16895
|
+
if (focusables.length) focusables[0].focus();
|
|
16896
|
+
}
|
|
16897
|
+
|
|
16898
|
+
/**
|
|
16899
|
+
* Moves focus to the last focusable element within the container.
|
|
16900
|
+
* Useful for setting focus when deactivating or cycling focus in reverse.
|
|
16901
|
+
*/
|
|
16902
|
+
focusLastElement() {
|
|
16903
|
+
const focusables = this._getFocusableElements();
|
|
16904
|
+
if (focusables.length) focusables[focusables.length - 1].focus();
|
|
16905
|
+
}
|
|
16906
|
+
|
|
16907
|
+
/**
|
|
16908
|
+
* Removes event listeners and attributes added by the focus trap.
|
|
16909
|
+
* Call this method to clean up when the focus trap is no longer needed.
|
|
16910
|
+
*/
|
|
16911
|
+
disconnect() {
|
|
16912
|
+
|
|
16913
|
+
if (this.container.hasAttribute('data-focus-trap-container')) {
|
|
16914
|
+
this.container.removeAttribute('data-focus-trap-container');
|
|
16915
|
+
}
|
|
16916
|
+
|
|
16917
|
+
this.container.removeEventListener('keydown', this._onKeydown);
|
|
16918
|
+
}
|
|
16919
|
+
}
|
|
16920
|
+
|
|
16636
16921
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
16637
16922
|
// See LICENSE in the project root for license information.
|
|
16638
16923
|
|
|
@@ -17070,11 +17355,11 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
17070
17355
|
|
|
17071
17356
|
var iconVersion$2 = '6.1.2';
|
|
17072
17357
|
|
|
17073
|
-
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
|
|
17358
|
+
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}`;
|
|
17074
17359
|
|
|
17075
17360
|
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)}`;
|
|
17076
17361
|
|
|
17077
|
-
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-
|
|
17362
|
+
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)}`;
|
|
17078
17363
|
|
|
17079
17364
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
17080
17365
|
// See LICENSE in the project root for license information.
|
|
@@ -17234,17 +17519,6 @@ class AuroDropdownBib extends i {
|
|
|
17234
17519
|
}
|
|
17235
17520
|
}
|
|
17236
17521
|
});
|
|
17237
|
-
|
|
17238
|
-
this.preventBodyScroll = this.preventBodyScroll.bind(this);
|
|
17239
|
-
this.addEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
17240
|
-
this.addEventListener('touchstart', this.preventBodyScroll, { passive: false });
|
|
17241
|
-
}
|
|
17242
|
-
|
|
17243
|
-
disconnectedCallback() {
|
|
17244
|
-
super.disconnectedCallback();
|
|
17245
|
-
|
|
17246
|
-
this.removeEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
17247
|
-
this.removeEventListener('touchstart', this.preventBodyScroll, { passive: false });
|
|
17248
17522
|
}
|
|
17249
17523
|
|
|
17250
17524
|
firstUpdated(changedProperties) {
|
|
@@ -17260,19 +17534,6 @@ class AuroDropdownBib extends i {
|
|
|
17260
17534
|
}));
|
|
17261
17535
|
}
|
|
17262
17536
|
|
|
17263
|
-
/**
|
|
17264
|
-
* Prevents scrolling of the body when touching empty areas of the component.
|
|
17265
|
-
* @param {Event} event - The touchmove event.
|
|
17266
|
-
* @returns {void}
|
|
17267
|
-
*/
|
|
17268
|
-
preventBodyScroll(event) {
|
|
17269
|
-
// when touchmove/touchstart on empty space
|
|
17270
|
-
if (event.target === this) {
|
|
17271
|
-
event.preventDefault();
|
|
17272
|
-
event.stopImmediatePropagation();
|
|
17273
|
-
}
|
|
17274
|
-
}
|
|
17275
|
-
|
|
17276
17537
|
// function that renders the HTML and CSS into the scope of the component
|
|
17277
17538
|
render() {
|
|
17278
17539
|
const classes = {
|
|
@@ -17295,19 +17556,19 @@ var dropdownVersion$1 = '3.0.0';
|
|
|
17295
17556
|
|
|
17296
17557
|
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}`;
|
|
17297
17558
|
|
|
17298
|
-
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:
|
|
17559
|
+
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)}`;
|
|
17299
17560
|
|
|
17300
|
-
var classicColorCss$1 = i$2
|
|
17561
|
+
var classicColorCss$1 = i$2``;
|
|
17301
17562
|
|
|
17302
|
-
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]) .
|
|
17563
|
+
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%}`;
|
|
17303
17564
|
|
|
17304
|
-
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
|
|
17565
|
+
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)}`;
|
|
17305
17566
|
|
|
17306
|
-
var styleSnowflakeCss = i$2`:host{display:block}.wrapper{display:flex;flex-direction:row
|
|
17567
|
+
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)}`;
|
|
17307
17568
|
|
|
17308
17569
|
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)}`;
|
|
17309
17570
|
|
|
17310
|
-
var styleCss$6 = i$2
|
|
17571
|
+
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}`;
|
|
17311
17572
|
|
|
17312
17573
|
var tokensCss$6 = i$2`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
17313
17574
|
|
|
@@ -17612,10 +17873,8 @@ let AuroElement$4 = class AuroElement extends i {
|
|
|
17612
17873
|
// See LICENSE in the project root for license information.
|
|
17613
17874
|
|
|
17614
17875
|
|
|
17615
|
-
|
|
17616
|
-
* @attr { Boolean } disableEventShow - If declared, the dropdown will only show by calling the API .show() public method.
|
|
17876
|
+
/*
|
|
17617
17877
|
* @slot - Default slot for the popover content.
|
|
17618
|
-
* @slot label - Defines the content of the label.
|
|
17619
17878
|
* @slot helpText - Defines the content of the helpText.
|
|
17620
17879
|
* @slot trigger - Defines the content of the trigger.
|
|
17621
17880
|
* @csspart trigger - The trigger content container.
|
|
@@ -17634,18 +17893,22 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17634
17893
|
this.matchWidth = false;
|
|
17635
17894
|
this.noHideOnThisFocusLoss = false;
|
|
17636
17895
|
|
|
17637
|
-
this.errorMessage =
|
|
17896
|
+
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
17638
17897
|
|
|
17639
17898
|
// Layout Config
|
|
17640
|
-
this.layout =
|
|
17641
|
-
this.shape =
|
|
17642
|
-
this.size =
|
|
17899
|
+
this.layout = undefined;
|
|
17900
|
+
this.shape = undefined;
|
|
17901
|
+
this.size = undefined;
|
|
17643
17902
|
|
|
17644
17903
|
this.parentBorder = false;
|
|
17645
17904
|
|
|
17646
17905
|
this.privateDefaults();
|
|
17647
17906
|
}
|
|
17648
17907
|
|
|
17908
|
+
/**
|
|
17909
|
+
* @private
|
|
17910
|
+
* @returns {object} Class definition for the wrapper element.
|
|
17911
|
+
*/
|
|
17649
17912
|
get commonWrapperClasses() {
|
|
17650
17913
|
return {
|
|
17651
17914
|
'trigger': true,
|
|
@@ -17663,13 +17926,10 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17663
17926
|
privateDefaults() {
|
|
17664
17927
|
this.chevron = false;
|
|
17665
17928
|
this.disabled = false;
|
|
17929
|
+
this.disableFocusTrap = false;
|
|
17666
17930
|
this.error = false;
|
|
17667
|
-
this.inset = false;
|
|
17668
|
-
this.rounded = false;
|
|
17669
17931
|
this.tabIndex = 0;
|
|
17670
17932
|
this.noToggle = false;
|
|
17671
|
-
this.a11yAutocomplete = 'none';
|
|
17672
|
-
this.labeled = true;
|
|
17673
17933
|
this.a11yRole = 'button';
|
|
17674
17934
|
this.onDark = false;
|
|
17675
17935
|
this.showTriggerBorders = true;
|
|
@@ -17765,6 +18025,18 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17765
18025
|
this.floater.showBib();
|
|
17766
18026
|
}
|
|
17767
18027
|
|
|
18028
|
+
/**
|
|
18029
|
+
* When bib is open, focus on the first element inside of bib.
|
|
18030
|
+
* If not, trigger element will get focus.
|
|
18031
|
+
*/
|
|
18032
|
+
focus() {
|
|
18033
|
+
if (this.isPopoverVisible && this.focusTrap) {
|
|
18034
|
+
this.focusTrap.focusFirstElement();
|
|
18035
|
+
} else {
|
|
18036
|
+
this.trigger.focus();
|
|
18037
|
+
}
|
|
18038
|
+
}
|
|
18039
|
+
|
|
17768
18040
|
// function to define props used within the scope of this component
|
|
17769
18041
|
static get properties() {
|
|
17770
18042
|
return {
|
|
@@ -17778,6 +18050,15 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17778
18050
|
reflect: true
|
|
17779
18051
|
},
|
|
17780
18052
|
|
|
18053
|
+
/**
|
|
18054
|
+
* If declared, the dropdown will only show by calling the API .show() public method.
|
|
18055
|
+
* @default false
|
|
18056
|
+
*/
|
|
18057
|
+
disableEventShow: {
|
|
18058
|
+
type: Boolean,
|
|
18059
|
+
reflect: true
|
|
18060
|
+
},
|
|
18061
|
+
|
|
17781
18062
|
/**
|
|
17782
18063
|
* If declared, applies a border around the trigger slot.
|
|
17783
18064
|
*/
|
|
@@ -17796,17 +18077,17 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17796
18077
|
},
|
|
17797
18078
|
|
|
17798
18079
|
/**
|
|
17799
|
-
* If declared, the dropdown
|
|
18080
|
+
* If declared, the dropdown is not interactive.
|
|
17800
18081
|
*/
|
|
17801
|
-
|
|
18082
|
+
disabled: {
|
|
17802
18083
|
type: Boolean,
|
|
17803
18084
|
reflect: true
|
|
17804
18085
|
},
|
|
17805
18086
|
|
|
17806
18087
|
/**
|
|
17807
|
-
* If declared, the
|
|
18088
|
+
* If declared, the focus trap inside of bib will be turned off.
|
|
17808
18089
|
*/
|
|
17809
|
-
|
|
18090
|
+
disableFocusTrap: {
|
|
17810
18091
|
type: Boolean,
|
|
17811
18092
|
reflect: true
|
|
17812
18093
|
},
|
|
@@ -17851,22 +18132,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17851
18132
|
reflect: true
|
|
17852
18133
|
},
|
|
17853
18134
|
|
|
17854
|
-
/**
|
|
17855
|
-
* Makes the trigger to be full width of its parent container.
|
|
17856
|
-
*/
|
|
17857
|
-
fluid: {
|
|
17858
|
-
type: Boolean,
|
|
17859
|
-
reflect: true
|
|
17860
|
-
},
|
|
17861
|
-
|
|
17862
|
-
/**
|
|
17863
|
-
* If declared, will apply padding around trigger slot content.
|
|
17864
|
-
*/
|
|
17865
|
-
inset: {
|
|
17866
|
-
type: Boolean,
|
|
17867
|
-
reflect: true
|
|
17868
|
-
},
|
|
17869
|
-
|
|
17870
18135
|
/**
|
|
17871
18136
|
* If true, the dropdown bib is displayed.
|
|
17872
18137
|
*/
|
|
@@ -17910,15 +18175,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17910
18175
|
reflect: true
|
|
17911
18176
|
},
|
|
17912
18177
|
|
|
17913
|
-
/**
|
|
17914
|
-
* Defines if there is a label preset.
|
|
17915
|
-
* @private
|
|
17916
|
-
*/
|
|
17917
|
-
labeled: {
|
|
17918
|
-
type: Boolean,
|
|
17919
|
-
reflect: true
|
|
17920
|
-
},
|
|
17921
|
-
|
|
17922
18178
|
/**
|
|
17923
18179
|
* Defines if the trigger should size based on the parent element providing the border UI.
|
|
17924
18180
|
* @private
|
|
@@ -17979,6 +18235,9 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17979
18235
|
reflect: true
|
|
17980
18236
|
},
|
|
17981
18237
|
|
|
18238
|
+
/**
|
|
18239
|
+
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
18240
|
+
*/
|
|
17982
18241
|
onSlotChange: {
|
|
17983
18242
|
type: Function,
|
|
17984
18243
|
reflect: false
|
|
@@ -17993,14 +18252,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
17993
18252
|
reflect: true
|
|
17994
18253
|
},
|
|
17995
18254
|
|
|
17996
|
-
/**
|
|
17997
|
-
* If declared, will apply border-radius to trigger and default slots.
|
|
17998
|
-
*/
|
|
17999
|
-
rounded: {
|
|
18000
|
-
type: Boolean,
|
|
18001
|
-
reflect: true
|
|
18002
|
-
},
|
|
18003
|
-
|
|
18004
18255
|
/**
|
|
18005
18256
|
* @private
|
|
18006
18257
|
*/
|
|
@@ -18015,22 +18266,14 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
18015
18266
|
type: String || undefined,
|
|
18016
18267
|
attribute: false,
|
|
18017
18268
|
reflect: false
|
|
18018
|
-
},
|
|
18019
|
-
|
|
18020
|
-
/**
|
|
18021
|
-
* The value for the aria-autocomplete attribute of the trigger element.
|
|
18022
|
-
*/
|
|
18023
|
-
a11yAutocomplete: {
|
|
18024
|
-
type: String,
|
|
18025
|
-
attribute: false,
|
|
18026
18269
|
}
|
|
18027
18270
|
};
|
|
18028
18271
|
}
|
|
18029
18272
|
|
|
18030
18273
|
static get styles() {
|
|
18031
18274
|
return [
|
|
18032
|
-
colorCss$1$2,
|
|
18033
18275
|
tokensCss$1$2,
|
|
18276
|
+
colorCss$1$2,
|
|
18034
18277
|
|
|
18035
18278
|
// default layout
|
|
18036
18279
|
classicColorCss$1,
|
|
@@ -18093,6 +18336,12 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
18093
18336
|
this.handleTriggerContentSlotChange();
|
|
18094
18337
|
}
|
|
18095
18338
|
|
|
18339
|
+
if (changedProperties.has('isPopoverVisible')) {
|
|
18340
|
+
this.updateFocusTrap();
|
|
18341
|
+
if (!this.isPopoverVisible && this.hasFocus) {
|
|
18342
|
+
this.trigger.focus();
|
|
18343
|
+
}
|
|
18344
|
+
}
|
|
18096
18345
|
}
|
|
18097
18346
|
|
|
18098
18347
|
firstUpdated() {
|
|
@@ -18113,9 +18362,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
18113
18362
|
}
|
|
18114
18363
|
|
|
18115
18364
|
this.bibContent = this.floater.element.bib;
|
|
18116
|
-
this.bibContent.setAttribute('role', 'dialog');
|
|
18117
|
-
this.bibContent.setAttribute('aria-modal', 'true');
|
|
18118
|
-
this.bibContent.setAttribute('aria-labelledby', 'triggerLabel');
|
|
18119
18365
|
|
|
18120
18366
|
// Add the tag name as an attribute if it is different than the component name
|
|
18121
18367
|
this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
|
|
@@ -18161,6 +18407,27 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
18161
18407
|
this.hasFocus = true;
|
|
18162
18408
|
}
|
|
18163
18409
|
|
|
18410
|
+
/**
|
|
18411
|
+
* @private
|
|
18412
|
+
*/
|
|
18413
|
+
updateFocusTrap() {
|
|
18414
|
+
// If the dropdown is open, create a focus trap and focus the first element
|
|
18415
|
+
if (this.isPopoverVisible && !this.disableFocusTrap) {
|
|
18416
|
+
this.focusTrap = new FocusTrap(this.bibContent);
|
|
18417
|
+
this.focusTrap.focusFirstElement();
|
|
18418
|
+
return;
|
|
18419
|
+
}
|
|
18420
|
+
|
|
18421
|
+
// Guard Clause: Ensure there is a focus trap currently active before continuing
|
|
18422
|
+
if (!this.focusTrap) {
|
|
18423
|
+
return;
|
|
18424
|
+
}
|
|
18425
|
+
|
|
18426
|
+
// If the dropdown is not open, disconnect the focus trap if it exists
|
|
18427
|
+
this.focusTrap.disconnect();
|
|
18428
|
+
this.focusTrap = undefined;
|
|
18429
|
+
}
|
|
18430
|
+
|
|
18164
18431
|
/**
|
|
18165
18432
|
* Function to support @focusout event.
|
|
18166
18433
|
* @private
|
|
@@ -18446,10 +18713,7 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
18446
18713
|
id="bib"
|
|
18447
18714
|
shape="${this.shape}"
|
|
18448
18715
|
?data-show="${this.isPopoverVisible}"
|
|
18449
|
-
?isfullscreen="${this.isBibFullscreen}"
|
|
18450
|
-
?common="${this.common}"
|
|
18451
|
-
?rounded="${this.common || this.rounded}"
|
|
18452
|
-
?inset="${this.common || this.inset}">
|
|
18716
|
+
?isfullscreen="${this.isBibFullscreen}">
|
|
18453
18717
|
<div class="slotContent">
|
|
18454
18718
|
<slot @slotchange="${this.handleDefaultSlot}"></slot>
|
|
18455
18719
|
</div>
|
|
@@ -18557,19 +18821,19 @@ var styleCss$4 = i$2`.util_displayInline{display:inline}.util_displayInlineBlock
|
|
|
18557
18821
|
|
|
18558
18822
|
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}`;
|
|
18559
18823
|
|
|
18560
|
-
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-
|
|
18824
|
+
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)}`;
|
|
18561
18825
|
|
|
18562
18826
|
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}`;
|
|
18563
18827
|
|
|
18564
|
-
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
|
|
18828
|
+
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}`;
|
|
18565
18829
|
|
|
18566
18830
|
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)}`;
|
|
18567
18831
|
|
|
18568
|
-
var emphasizedStyleCss = i$2`:host([layout*=emphasized][shape*=pill]:not([layout*=right])) .leftIndent{margin-left:
|
|
18832
|
+
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)}`;
|
|
18569
18833
|
|
|
18570
18834
|
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)}`;
|
|
18571
18835
|
|
|
18572
|
-
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}`;
|
|
18836
|
+
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}`;
|
|
18573
18837
|
|
|
18574
18838
|
const watchedItems$1 = new Set();
|
|
18575
18839
|
|
|
@@ -23084,19 +23348,19 @@ class AuroFormValidation {
|
|
|
23084
23348
|
{
|
|
23085
23349
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
23086
23350
|
validity: 'tooShort',
|
|
23087
|
-
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
23351
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
23088
23352
|
},
|
|
23089
23353
|
{
|
|
23090
23354
|
check: (e) => e.value?.length > e.maxLength,
|
|
23091
23355
|
validity: 'tooLong',
|
|
23092
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
23356
|
+
message: e => e.getAttribute('setCustomValidityTooLong') || e.setCustomValidity || ''
|
|
23093
23357
|
}
|
|
23094
23358
|
],
|
|
23095
23359
|
pattern: [
|
|
23096
23360
|
{
|
|
23097
23361
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
23098
23362
|
validity: 'patternMismatch',
|
|
23099
|
-
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
23363
|
+
message: e => e.getAttribute('setCustomValidityPatternMismatch') || e.setCustomValidity || ''
|
|
23100
23364
|
}
|
|
23101
23365
|
]
|
|
23102
23366
|
},
|
|
@@ -23291,10 +23555,10 @@ class AuroFormValidation {
|
|
|
23291
23555
|
if (!hasValue && elem.required && elem.touched) {
|
|
23292
23556
|
elem.validity = 'valueMissing';
|
|
23293
23557
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
23294
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
23558
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
23295
23559
|
this.validateType(elem);
|
|
23296
23560
|
this.validateElementAttributes(elem);
|
|
23297
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
23561
|
+
} else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
|
|
23298
23562
|
this.validateElementAttributes(elem);
|
|
23299
23563
|
}
|
|
23300
23564
|
}
|
|
@@ -23776,7 +24040,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
23776
24040
|
},
|
|
23777
24041
|
|
|
23778
24042
|
/**
|
|
23779
|
-
* Define custom placeholder text
|
|
24043
|
+
* Define custom placeholder text.
|
|
23780
24044
|
*/
|
|
23781
24045
|
placeholder: {
|
|
23782
24046
|
type: String,
|
|
@@ -24073,9 +24337,9 @@ class BaseInput extends AuroElement$2 {
|
|
|
24073
24337
|
if (!this.shadowRoot.contains(this.getActiveElement())) {
|
|
24074
24338
|
this.validation.validate(this);
|
|
24075
24339
|
}
|
|
24076
|
-
|
|
24077
|
-
this.notifyValueChanged();
|
|
24078
24340
|
}
|
|
24341
|
+
|
|
24342
|
+
this.notifyValueChanged();
|
|
24079
24343
|
}
|
|
24080
24344
|
|
|
24081
24345
|
if (changedProperties.has('error')) {
|
|
@@ -26036,7 +26300,7 @@ var buttonVersion = '11.0.0';
|
|
|
26036
26300
|
|
|
26037
26301
|
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)}`;
|
|
26038
26302
|
|
|
26039
|
-
var styleCss$5 = i$2
|
|
26303
|
+
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}`;
|
|
26040
26304
|
|
|
26041
26305
|
var tokensCss$5 = i$2`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
26042
26306
|
|
|
@@ -26313,7 +26577,7 @@ class AuroInput extends BaseInput {
|
|
|
26313
26577
|
*/
|
|
26314
26578
|
get commonInputClasses() {
|
|
26315
26579
|
return {
|
|
26316
|
-
'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
|
|
26580
|
+
'util_displayHiddenVisually': (this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0) || ((!this.value || this.value.length === 0) && !this.hasFocus && (!this.placeholder || this.placeholder === '')),
|
|
26317
26581
|
};
|
|
26318
26582
|
}
|
|
26319
26583
|
|
|
@@ -26762,7 +27026,7 @@ var inputVersion = '4.2.0';
|
|
|
26762
27026
|
|
|
26763
27027
|
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)}`;
|
|
26764
27028
|
|
|
26765
|
-
var styleCss$1 = i$2
|
|
27029
|
+
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}`;
|
|
26766
27030
|
|
|
26767
27031
|
var tokensCss$1 = i$2`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
26768
27032
|
|
|
@@ -28401,6 +28665,18 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28401
28665
|
this.dispatchEvent(new CustomEvent('auroDatePicker-newSlotContent'));
|
|
28402
28666
|
}
|
|
28403
28667
|
|
|
28668
|
+
/**
|
|
28669
|
+
* Handle enter/space keydown on the reset button.
|
|
28670
|
+
* @private
|
|
28671
|
+
* @param {KeyboardEvent} event - The keydown event.
|
|
28672
|
+
*/
|
|
28673
|
+
handleKeydownReset(event) {
|
|
28674
|
+
if (event.key === 'Enter' || event.key === ' ') {
|
|
28675
|
+
this.resetValues();
|
|
28676
|
+
this.setHasFocus();
|
|
28677
|
+
}
|
|
28678
|
+
}
|
|
28679
|
+
|
|
28404
28680
|
/**
|
|
28405
28681
|
* Resets values without resetting validation.
|
|
28406
28682
|
*/
|
|
@@ -28770,6 +29046,10 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28770
29046
|
}
|
|
28771
29047
|
|
|
28772
29048
|
renderHtmlInputs() {
|
|
29049
|
+
const inputClasses = {
|
|
29050
|
+
"util_displayHiddenVisually": !this.hasValue && !this.hasFocus
|
|
29051
|
+
};
|
|
29052
|
+
|
|
28773
29053
|
return u$3`
|
|
28774
29054
|
<div class="inputContainer">
|
|
28775
29055
|
<${this.inputTag}
|
|
@@ -28777,7 +29057,6 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28777
29057
|
?onDark="${this.onDark}"
|
|
28778
29058
|
?required="${this.required}"
|
|
28779
29059
|
.format="${this.format}"
|
|
28780
|
-
.hideInputVisually="${!this.hasValue && !this.hasFocus}"
|
|
28781
29060
|
.max="${this.maxDate}"
|
|
28782
29061
|
.min="${this.minDate}"
|
|
28783
29062
|
id="${this.generateRandomString(12)}"
|
|
@@ -28785,7 +29064,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28785
29064
|
simple
|
|
28786
29065
|
bordered
|
|
28787
29066
|
noValidate
|
|
28788
|
-
class="dateFrom
|
|
29067
|
+
class="dateFrom ${e$2(inputClasses)}"
|
|
28789
29068
|
type="date"
|
|
28790
29069
|
part="input"
|
|
28791
29070
|
shape="box"
|
|
@@ -28812,13 +29091,12 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28812
29091
|
?onDark="${this.onDark}"
|
|
28813
29092
|
?required="${this.required}"
|
|
28814
29093
|
.format="${this.format}"
|
|
28815
|
-
.hideInputVisually="${!this.hasValue && !this.hasFocus}"
|
|
28816
29094
|
.max="${this.maxDate}"
|
|
28817
29095
|
.min="${this.minDate}"
|
|
28818
29096
|
.placeholder="${this.placeholderEndDate || this.placeholder}"
|
|
28819
29097
|
id="${this.generateRandomString(12)}"
|
|
28820
29098
|
bordered
|
|
28821
|
-
class="dateTo"
|
|
29099
|
+
class="dateTo ${e$2(inputClasses)}"
|
|
28822
29100
|
noValidate
|
|
28823
29101
|
type="date"
|
|
28824
29102
|
setCustomValidity="${this.setCustomValidity}"
|
|
@@ -28851,6 +29129,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28851
29129
|
<div class="${e$2(clearActionClassMap)}">
|
|
28852
29130
|
<${this.buttonTag}
|
|
28853
29131
|
@click="${this.resetValues}"
|
|
29132
|
+
@keydown="${this.handleKeydownReset}"
|
|
28854
29133
|
?onDark="${this.onDark}"
|
|
28855
29134
|
aria-label="${i18n(this.lang, 'clearInput')}"
|
|
28856
29135
|
class="notificationBtn clearBtn"
|
|
@@ -28950,6 +29229,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28950
29229
|
bordered
|
|
28951
29230
|
class="${e$2(dropdownElementClassMap)}"
|
|
28952
29231
|
disableEventShow
|
|
29232
|
+
disableFocusTrap
|
|
28953
29233
|
fluid
|
|
28954
29234
|
for="dropdownMenu"
|
|
28955
29235
|
part="dropdown"
|