@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
|
@@ -590,19 +590,19 @@ let AuroFormValidation$1 = class AuroFormValidation {
|
|
|
590
590
|
{
|
|
591
591
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
592
592
|
validity: 'tooShort',
|
|
593
|
-
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
593
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
594
594
|
},
|
|
595
595
|
{
|
|
596
596
|
check: (e) => e.value?.length > e.maxLength,
|
|
597
597
|
validity: 'tooLong',
|
|
598
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
598
|
+
message: e => e.getAttribute('setCustomValidityTooLong') || e.setCustomValidity || ''
|
|
599
599
|
}
|
|
600
600
|
],
|
|
601
601
|
pattern: [
|
|
602
602
|
{
|
|
603
603
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
604
604
|
validity: 'patternMismatch',
|
|
605
|
-
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
605
|
+
message: e => e.getAttribute('setCustomValidityPatternMismatch') || e.setCustomValidity || ''
|
|
606
606
|
}
|
|
607
607
|
]
|
|
608
608
|
},
|
|
@@ -797,10 +797,10 @@ let AuroFormValidation$1 = class AuroFormValidation {
|
|
|
797
797
|
if (!hasValue && elem.required && elem.touched) {
|
|
798
798
|
elem.validity = 'valueMissing';
|
|
799
799
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
800
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
800
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
801
801
|
this.validateType(elem);
|
|
802
802
|
this.validateElementAttributes(elem);
|
|
803
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
803
|
+
} else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
|
|
804
804
|
this.validateElementAttributes(elem);
|
|
805
805
|
}
|
|
806
806
|
}
|
|
@@ -3129,6 +3129,267 @@ class AuroFloatingUI {
|
|
|
3129
3129
|
}
|
|
3130
3130
|
}
|
|
3131
3131
|
|
|
3132
|
+
// Selectors for focusable elements
|
|
3133
|
+
const FOCUSABLE_SELECTORS = [
|
|
3134
|
+
'a[href]',
|
|
3135
|
+
'button:not([disabled])',
|
|
3136
|
+
'textarea:not([disabled])',
|
|
3137
|
+
'input:not([disabled])',
|
|
3138
|
+
'select:not([disabled])',
|
|
3139
|
+
'[role="tab"]:not([disabled])',
|
|
3140
|
+
'[role="link"]:not([disabled])',
|
|
3141
|
+
'[role="button"]:not([disabled])',
|
|
3142
|
+
'[tabindex]:not([tabindex="-1"])',
|
|
3143
|
+
'[contenteditable]:not([contenteditable="false"])'
|
|
3144
|
+
];
|
|
3145
|
+
|
|
3146
|
+
// List of custom components that are known to be focusable
|
|
3147
|
+
const FOCUSABLE_COMPONENTS = [
|
|
3148
|
+
'auro-checkbox',
|
|
3149
|
+
'auro-radio',
|
|
3150
|
+
'auro-dropdown',
|
|
3151
|
+
'auro-button',
|
|
3152
|
+
'auro-combobox',
|
|
3153
|
+
'auro-input',
|
|
3154
|
+
'auro-counter',
|
|
3155
|
+
'auro-menu',
|
|
3156
|
+
'auro-select',
|
|
3157
|
+
'auro-datepicker',
|
|
3158
|
+
'auro-hyperlink',
|
|
3159
|
+
'auro-accordion',
|
|
3160
|
+
];
|
|
3161
|
+
|
|
3162
|
+
/**
|
|
3163
|
+
* Determines if a given element is a custom focusable component.
|
|
3164
|
+
* Returns true if the element matches a known focusable component and is not disabled.
|
|
3165
|
+
*
|
|
3166
|
+
* @param {HTMLElement} element The element to check for focusability.
|
|
3167
|
+
* @returns {boolean} True if the element is a focusable custom component, false otherwise.
|
|
3168
|
+
*/
|
|
3169
|
+
function isFocusableComponent(element) {
|
|
3170
|
+
const componentName = element.tagName.toLowerCase();
|
|
3171
|
+
|
|
3172
|
+
// Guard Clause: Element is a focusable component
|
|
3173
|
+
if (!FOCUSABLE_COMPONENTS.some((name) => element.hasAttribute(name) || componentName === name)) return false;
|
|
3174
|
+
|
|
3175
|
+
// Guard Clause: Element is not disabled
|
|
3176
|
+
if (element.hasAttribute('disabled')) return false;
|
|
3177
|
+
|
|
3178
|
+
// Guard Clause: The element is a hyperlink and has no href attribute
|
|
3179
|
+
if (componentName.match("hyperlink") && !element.hasAttribute('href')) return false;
|
|
3180
|
+
|
|
3181
|
+
// If all guard clauses pass, the element is a focusable component
|
|
3182
|
+
return true;
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3185
|
+
/**
|
|
3186
|
+
* Retrieves all focusable elements within the container in DOM order, including those in shadow DOM and slots.
|
|
3187
|
+
* Returns a unique, ordered array of elements that can receive focus.
|
|
3188
|
+
*
|
|
3189
|
+
* @param {HTMLElement} container The container to search within
|
|
3190
|
+
* @returns {Array<HTMLElement>} An array of focusable elements within the container.
|
|
3191
|
+
*/
|
|
3192
|
+
function getFocusableElements(container) {
|
|
3193
|
+
// Get elements in DOM order by walking the tree
|
|
3194
|
+
const orderedFocusableElements = [];
|
|
3195
|
+
|
|
3196
|
+
// Define a recursive function to collect focusable elements in DOM order
|
|
3197
|
+
const collectFocusableElements = (root) => {
|
|
3198
|
+
// Check if current element is focusable
|
|
3199
|
+
if (root.nodeType === Node.ELEMENT_NODE) {
|
|
3200
|
+
// Check if this is a custom component that is focusable
|
|
3201
|
+
const isComponentFocusable = isFocusableComponent(root);
|
|
3202
|
+
|
|
3203
|
+
if (isComponentFocusable) {
|
|
3204
|
+
// Add the component itself as a focusable element and don't traverse its shadow DOM
|
|
3205
|
+
orderedFocusableElements.push(root);
|
|
3206
|
+
return; // Skip traversing inside this component
|
|
3207
|
+
}
|
|
3208
|
+
|
|
3209
|
+
// Check if the element itself matches any selector
|
|
3210
|
+
for (const selector of FOCUSABLE_SELECTORS) {
|
|
3211
|
+
if (root.matches?.(selector)) {
|
|
3212
|
+
orderedFocusableElements.push(root);
|
|
3213
|
+
break; // Once we know it's focusable, no need to check other selectors
|
|
3214
|
+
}
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
// Process shadow DOM only for non-Auro components
|
|
3218
|
+
if (root.shadowRoot) {
|
|
3219
|
+
// Process shadow DOM children in order
|
|
3220
|
+
if (root.shadowRoot.children) {
|
|
3221
|
+
Array.from(root.shadowRoot.children).forEach(child => {
|
|
3222
|
+
collectFocusableElements(child);
|
|
3223
|
+
});
|
|
3224
|
+
}
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3227
|
+
// Process slots and their assigned nodes in order
|
|
3228
|
+
if (root.tagName === 'SLOT') {
|
|
3229
|
+
const assignedNodes = root.assignedNodes({ flatten: true });
|
|
3230
|
+
for (const node of assignedNodes) {
|
|
3231
|
+
collectFocusableElements(node);
|
|
3232
|
+
}
|
|
3233
|
+
} else {
|
|
3234
|
+
// Process light DOM children in order
|
|
3235
|
+
if (root.children) {
|
|
3236
|
+
Array.from(root.children).forEach(child => {
|
|
3237
|
+
collectFocusableElements(child);
|
|
3238
|
+
});
|
|
3239
|
+
}
|
|
3240
|
+
}
|
|
3241
|
+
}
|
|
3242
|
+
};
|
|
3243
|
+
|
|
3244
|
+
// Start the traversal from the container
|
|
3245
|
+
collectFocusableElements(container);
|
|
3246
|
+
|
|
3247
|
+
// Remove duplicates that might have been collected through different paths
|
|
3248
|
+
// while preserving order
|
|
3249
|
+
const uniqueElements = [];
|
|
3250
|
+
const seen = new Set();
|
|
3251
|
+
|
|
3252
|
+
for (const element of orderedFocusableElements) {
|
|
3253
|
+
if (!seen.has(element)) {
|
|
3254
|
+
seen.add(element);
|
|
3255
|
+
uniqueElements.push(element);
|
|
3256
|
+
}
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
return uniqueElements;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
/**
|
|
3263
|
+
* FocusTrap manages keyboard focus within a specified container element, ensuring that focus does not leave the container when tabbing.
|
|
3264
|
+
* It is commonly used for modal dialogs or overlays to improve accessibility by trapping focus within interactive UI components.
|
|
3265
|
+
*/
|
|
3266
|
+
class FocusTrap {
|
|
3267
|
+
/**
|
|
3268
|
+
* Creates a new FocusTrap instance for the given container element.
|
|
3269
|
+
* Initializes event listeners and prepares the container for focus management.
|
|
3270
|
+
*
|
|
3271
|
+
* @param {HTMLElement} container The DOM element to trap focus within.
|
|
3272
|
+
* @throws {Error} If the provided container is not a valid HTMLElement.
|
|
3273
|
+
*/
|
|
3274
|
+
constructor(container) {
|
|
3275
|
+
if (!container || !(container instanceof HTMLElement)) {
|
|
3276
|
+
throw new Error("FocusTrap requires a valid HTMLElement.");
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
this.container = container;
|
|
3280
|
+
this.tabDirection = 'forward'; // or 'backward'
|
|
3281
|
+
|
|
3282
|
+
this._init();
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
/**
|
|
3286
|
+
* Initializes the focus trap by setting up event listeners and attributes on the container.
|
|
3287
|
+
* Prepares the container for focus management, including support for shadow DOM and inert attributes.
|
|
3288
|
+
*
|
|
3289
|
+
* @private
|
|
3290
|
+
*/
|
|
3291
|
+
_init() {
|
|
3292
|
+
|
|
3293
|
+
// Add inert attribute to prevent focusing programmatically as well (if supported)
|
|
3294
|
+
if ('inert' in HTMLElement.prototype) {
|
|
3295
|
+
this.container.inert = false; // Ensure the container isn't inert
|
|
3296
|
+
this.container.setAttribute('data-focus-trap-container', true); // Mark for identification
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
// Track tab direction
|
|
3300
|
+
this.container.addEventListener('keydown', this._onKeydown);
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3303
|
+
/**
|
|
3304
|
+
* Handles keydown events to manage tab navigation within the container.
|
|
3305
|
+
* Ensures that focus wraps around when reaching the first or last focusable element.
|
|
3306
|
+
*
|
|
3307
|
+
* @param {KeyboardEvent} e The keyboard event triggered by user interaction.
|
|
3308
|
+
* @private
|
|
3309
|
+
*/
|
|
3310
|
+
_onKeydown = (e) => {
|
|
3311
|
+
|
|
3312
|
+
if (e.key === 'Tab') {
|
|
3313
|
+
|
|
3314
|
+
// Set the tab direction based on the key pressed
|
|
3315
|
+
this.tabDirection = e.shiftKey ? 'backward' : 'forward';
|
|
3316
|
+
|
|
3317
|
+
// Get the active element(s) in the document and shadow root
|
|
3318
|
+
// This will include the active element in the shadow DOM if it exists
|
|
3319
|
+
// Active element may be inside the shadow DOM depending on delegatesFocus, so we need to check both
|
|
3320
|
+
let activeElement = document.activeElement;
|
|
3321
|
+
const actives = [activeElement];
|
|
3322
|
+
while (activeElement?.shadowRoot?.activeElement) {
|
|
3323
|
+
actives.push(activeElement.shadowRoot.activeElement);
|
|
3324
|
+
activeElement = activeElement.shadowRoot.activeElement;
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
// Update the focusable elements
|
|
3328
|
+
const focusables = this._getFocusableElements();
|
|
3329
|
+
|
|
3330
|
+
// If we're at either end of the focusable elements, wrap around to the other end
|
|
3331
|
+
const focusIndex =
|
|
3332
|
+
(actives.includes(focusables[0]) || actives.includes(this.container)) && this.tabDirection === 'backward'
|
|
3333
|
+
? focusables.length - 1
|
|
3334
|
+
: actives.includes(focusables[focusables.length - 1]) && this.tabDirection === 'forward'
|
|
3335
|
+
? 0
|
|
3336
|
+
: null;
|
|
3337
|
+
|
|
3338
|
+
if (focusIndex !== null) {
|
|
3339
|
+
focusables[focusIndex].focus();
|
|
3340
|
+
e.preventDefault(); // Prevent default tab behavior
|
|
3341
|
+
e.stopPropagation(); // Stop the event from bubbling up
|
|
3342
|
+
}
|
|
3343
|
+
}
|
|
3344
|
+
};
|
|
3345
|
+
|
|
3346
|
+
/**
|
|
3347
|
+
* Retrieves all focusable elements within the container in DOM order, including those in shadow DOM and slots.
|
|
3348
|
+
* Returns a unique, ordered array of elements that can receive focus.
|
|
3349
|
+
*
|
|
3350
|
+
* @returns {Array<HTMLElement>} An array of focusable elements within the container.
|
|
3351
|
+
* @private
|
|
3352
|
+
*/
|
|
3353
|
+
_getFocusableElements() {
|
|
3354
|
+
// Use the imported utility function to get focusable elements
|
|
3355
|
+
const elements = getFocusableElements(this.container);
|
|
3356
|
+
|
|
3357
|
+
// Filter out any elements with the 'focus-bookend' class
|
|
3358
|
+
return elements;
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
/**
|
|
3362
|
+
* Moves focus to the first focusable element within the container.
|
|
3363
|
+
* Useful for setting initial focus when activating the focus trap.
|
|
3364
|
+
*/
|
|
3365
|
+
focusFirstElement() {
|
|
3366
|
+
const focusables = this._getFocusableElements();
|
|
3367
|
+
if (focusables.length) focusables[0].focus();
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3370
|
+
/**
|
|
3371
|
+
* Moves focus to the last focusable element within the container.
|
|
3372
|
+
* Useful for setting focus when deactivating or cycling focus in reverse.
|
|
3373
|
+
*/
|
|
3374
|
+
focusLastElement() {
|
|
3375
|
+
const focusables = this._getFocusableElements();
|
|
3376
|
+
if (focusables.length) focusables[focusables.length - 1].focus();
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
/**
|
|
3380
|
+
* Removes event listeners and attributes added by the focus trap.
|
|
3381
|
+
* Call this method to clean up when the focus trap is no longer needed.
|
|
3382
|
+
*/
|
|
3383
|
+
disconnect() {
|
|
3384
|
+
|
|
3385
|
+
if (this.container.hasAttribute('data-focus-trap-container')) {
|
|
3386
|
+
this.container.removeAttribute('data-focus-trap-container');
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
this.container.removeEventListener('keydown', this._onKeydown);
|
|
3390
|
+
}
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3132
3393
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
3133
3394
|
// See LICENSE in the project root for license information.
|
|
3134
3395
|
|
|
@@ -3566,11 +3827,11 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
3566
3827
|
|
|
3567
3828
|
var iconVersion$2 = '6.1.2';
|
|
3568
3829
|
|
|
3569
|
-
var styleCss$1$3 = css`: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
|
|
3830
|
+
var styleCss$1$3 = css`: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}`;
|
|
3570
3831
|
|
|
3571
3832
|
var colorCss$2$2 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3572
3833
|
|
|
3573
|
-
var tokensCss$1$2 = css`: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-
|
|
3834
|
+
var tokensCss$1$2 = css`: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)}`;
|
|
3574
3835
|
|
|
3575
3836
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
3576
3837
|
// See LICENSE in the project root for license information.
|
|
@@ -3730,17 +3991,6 @@ class AuroDropdownBib extends LitElement {
|
|
|
3730
3991
|
}
|
|
3731
3992
|
}
|
|
3732
3993
|
});
|
|
3733
|
-
|
|
3734
|
-
this.preventBodyScroll = this.preventBodyScroll.bind(this);
|
|
3735
|
-
this.addEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
3736
|
-
this.addEventListener('touchstart', this.preventBodyScroll, { passive: false });
|
|
3737
|
-
}
|
|
3738
|
-
|
|
3739
|
-
disconnectedCallback() {
|
|
3740
|
-
super.disconnectedCallback();
|
|
3741
|
-
|
|
3742
|
-
this.removeEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
3743
|
-
this.removeEventListener('touchstart', this.preventBodyScroll, { passive: false });
|
|
3744
3994
|
}
|
|
3745
3995
|
|
|
3746
3996
|
firstUpdated(changedProperties) {
|
|
@@ -3756,19 +4006,6 @@ class AuroDropdownBib extends LitElement {
|
|
|
3756
4006
|
}));
|
|
3757
4007
|
}
|
|
3758
4008
|
|
|
3759
|
-
/**
|
|
3760
|
-
* Prevents scrolling of the body when touching empty areas of the component.
|
|
3761
|
-
* @param {Event} event - The touchmove event.
|
|
3762
|
-
* @returns {void}
|
|
3763
|
-
*/
|
|
3764
|
-
preventBodyScroll(event) {
|
|
3765
|
-
// when touchmove/touchstart on empty space
|
|
3766
|
-
if (event.target === this) {
|
|
3767
|
-
event.preventDefault();
|
|
3768
|
-
event.stopImmediatePropagation();
|
|
3769
|
-
}
|
|
3770
|
-
}
|
|
3771
|
-
|
|
3772
4009
|
// function that renders the HTML and CSS into the scope of the component
|
|
3773
4010
|
render() {
|
|
3774
4011
|
const classes = {
|
|
@@ -3791,19 +4028,19 @@ var dropdownVersion$1 = '3.0.0';
|
|
|
3791
4028
|
|
|
3792
4029
|
var shapeSizeCss$1 = css`.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}`;
|
|
3793
4030
|
|
|
3794
|
-
var colorCss$1$2 = css`: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:
|
|
4031
|
+
var colorCss$1$2 = css`: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)}`;
|
|
3795
4032
|
|
|
3796
|
-
var classicColorCss$1 = css
|
|
4033
|
+
var classicColorCss$1 = css``;
|
|
3797
4034
|
|
|
3798
|
-
var classicLayoutCss = css`: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]) .
|
|
4035
|
+
var classicLayoutCss = css`: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%}`;
|
|
3799
4036
|
|
|
3800
|
-
var styleEmphasizedCss$1 = css`: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
|
|
4037
|
+
var styleEmphasizedCss$1 = css`: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)}`;
|
|
3801
4038
|
|
|
3802
|
-
var styleSnowflakeCss$1 = css`:host{display:block}.wrapper{display:flex;flex-direction:row
|
|
4039
|
+
var styleSnowflakeCss$1 = css`: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)}`;
|
|
3803
4040
|
|
|
3804
4041
|
var colorCss$6 = css`: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)}`;
|
|
3805
4042
|
|
|
3806
|
-
var styleCss$7 = css
|
|
4043
|
+
var styleCss$7 = css`: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}`;
|
|
3807
4044
|
|
|
3808
4045
|
var tokensCss$6 = css`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
3809
4046
|
|
|
@@ -4108,10 +4345,8 @@ let AuroElement$4 = class AuroElement extends LitElement {
|
|
|
4108
4345
|
// See LICENSE in the project root for license information.
|
|
4109
4346
|
|
|
4110
4347
|
|
|
4111
|
-
|
|
4112
|
-
* @attr { Boolean } disableEventShow - If declared, the dropdown will only show by calling the API .show() public method.
|
|
4348
|
+
/*
|
|
4113
4349
|
* @slot - Default slot for the popover content.
|
|
4114
|
-
* @slot label - Defines the content of the label.
|
|
4115
4350
|
* @slot helpText - Defines the content of the helpText.
|
|
4116
4351
|
* @slot trigger - Defines the content of the trigger.
|
|
4117
4352
|
* @csspart trigger - The trigger content container.
|
|
@@ -4130,18 +4365,22 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4130
4365
|
this.matchWidth = false;
|
|
4131
4366
|
this.noHideOnThisFocusLoss = false;
|
|
4132
4367
|
|
|
4133
|
-
this.errorMessage =
|
|
4368
|
+
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
4134
4369
|
|
|
4135
4370
|
// Layout Config
|
|
4136
|
-
this.layout =
|
|
4137
|
-
this.shape =
|
|
4138
|
-
this.size =
|
|
4371
|
+
this.layout = undefined;
|
|
4372
|
+
this.shape = undefined;
|
|
4373
|
+
this.size = undefined;
|
|
4139
4374
|
|
|
4140
4375
|
this.parentBorder = false;
|
|
4141
4376
|
|
|
4142
4377
|
this.privateDefaults();
|
|
4143
4378
|
}
|
|
4144
4379
|
|
|
4380
|
+
/**
|
|
4381
|
+
* @private
|
|
4382
|
+
* @returns {object} Class definition for the wrapper element.
|
|
4383
|
+
*/
|
|
4145
4384
|
get commonWrapperClasses() {
|
|
4146
4385
|
return {
|
|
4147
4386
|
'trigger': true,
|
|
@@ -4159,13 +4398,10 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4159
4398
|
privateDefaults() {
|
|
4160
4399
|
this.chevron = false;
|
|
4161
4400
|
this.disabled = false;
|
|
4401
|
+
this.disableFocusTrap = false;
|
|
4162
4402
|
this.error = false;
|
|
4163
|
-
this.inset = false;
|
|
4164
|
-
this.rounded = false;
|
|
4165
4403
|
this.tabIndex = 0;
|
|
4166
4404
|
this.noToggle = false;
|
|
4167
|
-
this.a11yAutocomplete = 'none';
|
|
4168
|
-
this.labeled = true;
|
|
4169
4405
|
this.a11yRole = 'button';
|
|
4170
4406
|
this.onDark = false;
|
|
4171
4407
|
this.showTriggerBorders = true;
|
|
@@ -4261,6 +4497,18 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4261
4497
|
this.floater.showBib();
|
|
4262
4498
|
}
|
|
4263
4499
|
|
|
4500
|
+
/**
|
|
4501
|
+
* When bib is open, focus on the first element inside of bib.
|
|
4502
|
+
* If not, trigger element will get focus.
|
|
4503
|
+
*/
|
|
4504
|
+
focus() {
|
|
4505
|
+
if (this.isPopoverVisible && this.focusTrap) {
|
|
4506
|
+
this.focusTrap.focusFirstElement();
|
|
4507
|
+
} else {
|
|
4508
|
+
this.trigger.focus();
|
|
4509
|
+
}
|
|
4510
|
+
}
|
|
4511
|
+
|
|
4264
4512
|
// function to define props used within the scope of this component
|
|
4265
4513
|
static get properties() {
|
|
4266
4514
|
return {
|
|
@@ -4274,6 +4522,15 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4274
4522
|
reflect: true
|
|
4275
4523
|
},
|
|
4276
4524
|
|
|
4525
|
+
/**
|
|
4526
|
+
* If declared, the dropdown will only show by calling the API .show() public method.
|
|
4527
|
+
* @default false
|
|
4528
|
+
*/
|
|
4529
|
+
disableEventShow: {
|
|
4530
|
+
type: Boolean,
|
|
4531
|
+
reflect: true
|
|
4532
|
+
},
|
|
4533
|
+
|
|
4277
4534
|
/**
|
|
4278
4535
|
* If declared, applies a border around the trigger slot.
|
|
4279
4536
|
*/
|
|
@@ -4292,17 +4549,17 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4292
4549
|
},
|
|
4293
4550
|
|
|
4294
4551
|
/**
|
|
4295
|
-
* If declared, the dropdown
|
|
4552
|
+
* If declared, the dropdown is not interactive.
|
|
4296
4553
|
*/
|
|
4297
|
-
|
|
4554
|
+
disabled: {
|
|
4298
4555
|
type: Boolean,
|
|
4299
4556
|
reflect: true
|
|
4300
4557
|
},
|
|
4301
4558
|
|
|
4302
4559
|
/**
|
|
4303
|
-
* If declared, the
|
|
4560
|
+
* If declared, the focus trap inside of bib will be turned off.
|
|
4304
4561
|
*/
|
|
4305
|
-
|
|
4562
|
+
disableFocusTrap: {
|
|
4306
4563
|
type: Boolean,
|
|
4307
4564
|
reflect: true
|
|
4308
4565
|
},
|
|
@@ -4347,22 +4604,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4347
4604
|
reflect: true
|
|
4348
4605
|
},
|
|
4349
4606
|
|
|
4350
|
-
/**
|
|
4351
|
-
* Makes the trigger to be full width of its parent container.
|
|
4352
|
-
*/
|
|
4353
|
-
fluid: {
|
|
4354
|
-
type: Boolean,
|
|
4355
|
-
reflect: true
|
|
4356
|
-
},
|
|
4357
|
-
|
|
4358
|
-
/**
|
|
4359
|
-
* If declared, will apply padding around trigger slot content.
|
|
4360
|
-
*/
|
|
4361
|
-
inset: {
|
|
4362
|
-
type: Boolean,
|
|
4363
|
-
reflect: true
|
|
4364
|
-
},
|
|
4365
|
-
|
|
4366
4607
|
/**
|
|
4367
4608
|
* If true, the dropdown bib is displayed.
|
|
4368
4609
|
*/
|
|
@@ -4406,15 +4647,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4406
4647
|
reflect: true
|
|
4407
4648
|
},
|
|
4408
4649
|
|
|
4409
|
-
/**
|
|
4410
|
-
* Defines if there is a label preset.
|
|
4411
|
-
* @private
|
|
4412
|
-
*/
|
|
4413
|
-
labeled: {
|
|
4414
|
-
type: Boolean,
|
|
4415
|
-
reflect: true
|
|
4416
|
-
},
|
|
4417
|
-
|
|
4418
4650
|
/**
|
|
4419
4651
|
* Defines if the trigger should size based on the parent element providing the border UI.
|
|
4420
4652
|
* @private
|
|
@@ -4475,6 +4707,9 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4475
4707
|
reflect: true
|
|
4476
4708
|
},
|
|
4477
4709
|
|
|
4710
|
+
/**
|
|
4711
|
+
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
4712
|
+
*/
|
|
4478
4713
|
onSlotChange: {
|
|
4479
4714
|
type: Function,
|
|
4480
4715
|
reflect: false
|
|
@@ -4489,14 +4724,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4489
4724
|
reflect: true
|
|
4490
4725
|
},
|
|
4491
4726
|
|
|
4492
|
-
/**
|
|
4493
|
-
* If declared, will apply border-radius to trigger and default slots.
|
|
4494
|
-
*/
|
|
4495
|
-
rounded: {
|
|
4496
|
-
type: Boolean,
|
|
4497
|
-
reflect: true
|
|
4498
|
-
},
|
|
4499
|
-
|
|
4500
4727
|
/**
|
|
4501
4728
|
* @private
|
|
4502
4729
|
*/
|
|
@@ -4511,22 +4738,14 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4511
4738
|
type: String || undefined,
|
|
4512
4739
|
attribute: false,
|
|
4513
4740
|
reflect: false
|
|
4514
|
-
},
|
|
4515
|
-
|
|
4516
|
-
/**
|
|
4517
|
-
* The value for the aria-autocomplete attribute of the trigger element.
|
|
4518
|
-
*/
|
|
4519
|
-
a11yAutocomplete: {
|
|
4520
|
-
type: String,
|
|
4521
|
-
attribute: false,
|
|
4522
4741
|
}
|
|
4523
4742
|
};
|
|
4524
4743
|
}
|
|
4525
4744
|
|
|
4526
4745
|
static get styles() {
|
|
4527
4746
|
return [
|
|
4528
|
-
colorCss$1$2,
|
|
4529
4747
|
tokensCss$1$2,
|
|
4748
|
+
colorCss$1$2,
|
|
4530
4749
|
|
|
4531
4750
|
// default layout
|
|
4532
4751
|
classicColorCss$1,
|
|
@@ -4589,6 +4808,12 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4589
4808
|
this.handleTriggerContentSlotChange();
|
|
4590
4809
|
}
|
|
4591
4810
|
|
|
4811
|
+
if (changedProperties.has('isPopoverVisible')) {
|
|
4812
|
+
this.updateFocusTrap();
|
|
4813
|
+
if (!this.isPopoverVisible && this.hasFocus) {
|
|
4814
|
+
this.trigger.focus();
|
|
4815
|
+
}
|
|
4816
|
+
}
|
|
4592
4817
|
}
|
|
4593
4818
|
|
|
4594
4819
|
firstUpdated() {
|
|
@@ -4609,9 +4834,6 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4609
4834
|
}
|
|
4610
4835
|
|
|
4611
4836
|
this.bibContent = this.floater.element.bib;
|
|
4612
|
-
this.bibContent.setAttribute('role', 'dialog');
|
|
4613
|
-
this.bibContent.setAttribute('aria-modal', 'true');
|
|
4614
|
-
this.bibContent.setAttribute('aria-labelledby', 'triggerLabel');
|
|
4615
4837
|
|
|
4616
4838
|
// Add the tag name as an attribute if it is different than the component name
|
|
4617
4839
|
this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
|
|
@@ -4657,6 +4879,27 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4657
4879
|
this.hasFocus = true;
|
|
4658
4880
|
}
|
|
4659
4881
|
|
|
4882
|
+
/**
|
|
4883
|
+
* @private
|
|
4884
|
+
*/
|
|
4885
|
+
updateFocusTrap() {
|
|
4886
|
+
// If the dropdown is open, create a focus trap and focus the first element
|
|
4887
|
+
if (this.isPopoverVisible && !this.disableFocusTrap) {
|
|
4888
|
+
this.focusTrap = new FocusTrap(this.bibContent);
|
|
4889
|
+
this.focusTrap.focusFirstElement();
|
|
4890
|
+
return;
|
|
4891
|
+
}
|
|
4892
|
+
|
|
4893
|
+
// Guard Clause: Ensure there is a focus trap currently active before continuing
|
|
4894
|
+
if (!this.focusTrap) {
|
|
4895
|
+
return;
|
|
4896
|
+
}
|
|
4897
|
+
|
|
4898
|
+
// If the dropdown is not open, disconnect the focus trap if it exists
|
|
4899
|
+
this.focusTrap.disconnect();
|
|
4900
|
+
this.focusTrap = undefined;
|
|
4901
|
+
}
|
|
4902
|
+
|
|
4660
4903
|
/**
|
|
4661
4904
|
* Function to support @focusout event.
|
|
4662
4905
|
* @private
|
|
@@ -4942,10 +5185,7 @@ class AuroDropdown extends AuroElement$4 {
|
|
|
4942
5185
|
id="bib"
|
|
4943
5186
|
shape="${this.shape}"
|
|
4944
5187
|
?data-show="${this.isPopoverVisible}"
|
|
4945
|
-
?isfullscreen="${this.isBibFullscreen}"
|
|
4946
|
-
?common="${this.common}"
|
|
4947
|
-
?rounded="${this.common || this.rounded}"
|
|
4948
|
-
?inset="${this.common || this.inset}">
|
|
5188
|
+
?isfullscreen="${this.isBibFullscreen}">
|
|
4949
5189
|
<div class="slotContent">
|
|
4950
5190
|
<slot @slotchange="${this.handleDefaultSlot}"></slot>
|
|
4951
5191
|
</div>
|
|
@@ -5040,19 +5280,19 @@ var styleCss$4$1 = css`.util_displayInline{display:inline}.util_displayInlineBlo
|
|
|
5040
5280
|
|
|
5041
5281
|
var styleDefaultCss = css`.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}`;
|
|
5042
5282
|
|
|
5043
|
-
var colorBaseCss = css`.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-
|
|
5283
|
+
var colorBaseCss = css`.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)}`;
|
|
5044
5284
|
|
|
5045
5285
|
var tokensCss$4 = css`: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}`;
|
|
5046
5286
|
|
|
5047
|
-
var classicStyleCss = css`.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
|
|
5287
|
+
var classicStyleCss = css`.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}`;
|
|
5048
5288
|
|
|
5049
5289
|
var classicColorCss = css`.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)}`;
|
|
5050
5290
|
|
|
5051
|
-
var emphasizedStyleCss = css`:host([layout*=emphasized][shape*=pill]:not([layout*=right])) .leftIndent{margin-left:
|
|
5291
|
+
var emphasizedStyleCss = css`: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)}`;
|
|
5052
5292
|
|
|
5053
5293
|
var emphasizedColorCss = css`.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)}`;
|
|
5054
5294
|
|
|
5055
|
-
var snowflakeStyleCss = css`: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}`;
|
|
5295
|
+
var snowflakeStyleCss = css`: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}`;
|
|
5056
5296
|
|
|
5057
5297
|
const watchedItems = new Set();
|
|
5058
5298
|
|
|
@@ -9567,19 +9807,19 @@ class AuroFormValidation {
|
|
|
9567
9807
|
{
|
|
9568
9808
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
9569
9809
|
validity: 'tooShort',
|
|
9570
|
-
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
9810
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
9571
9811
|
},
|
|
9572
9812
|
{
|
|
9573
9813
|
check: (e) => e.value?.length > e.maxLength,
|
|
9574
9814
|
validity: 'tooLong',
|
|
9575
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
9815
|
+
message: e => e.getAttribute('setCustomValidityTooLong') || e.setCustomValidity || ''
|
|
9576
9816
|
}
|
|
9577
9817
|
],
|
|
9578
9818
|
pattern: [
|
|
9579
9819
|
{
|
|
9580
9820
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
9581
9821
|
validity: 'patternMismatch',
|
|
9582
|
-
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
9822
|
+
message: e => e.getAttribute('setCustomValidityPatternMismatch') || e.setCustomValidity || ''
|
|
9583
9823
|
}
|
|
9584
9824
|
]
|
|
9585
9825
|
},
|
|
@@ -9774,10 +10014,10 @@ class AuroFormValidation {
|
|
|
9774
10014
|
if (!hasValue && elem.required && elem.touched) {
|
|
9775
10015
|
elem.validity = 'valueMissing';
|
|
9776
10016
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
9777
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
10017
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
9778
10018
|
this.validateType(elem);
|
|
9779
10019
|
this.validateElementAttributes(elem);
|
|
9780
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
10020
|
+
} else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
|
|
9781
10021
|
this.validateElementAttributes(elem);
|
|
9782
10022
|
}
|
|
9783
10023
|
}
|
|
@@ -10259,7 +10499,7 @@ class BaseInput extends AuroElement$2$1 {
|
|
|
10259
10499
|
},
|
|
10260
10500
|
|
|
10261
10501
|
/**
|
|
10262
|
-
* Define custom placeholder text
|
|
10502
|
+
* Define custom placeholder text.
|
|
10263
10503
|
*/
|
|
10264
10504
|
placeholder: {
|
|
10265
10505
|
type: String,
|
|
@@ -10556,9 +10796,9 @@ class BaseInput extends AuroElement$2$1 {
|
|
|
10556
10796
|
if (!this.shadowRoot.contains(this.getActiveElement())) {
|
|
10557
10797
|
this.validation.validate(this);
|
|
10558
10798
|
}
|
|
10559
|
-
|
|
10560
|
-
this.notifyValueChanged();
|
|
10561
10799
|
}
|
|
10800
|
+
|
|
10801
|
+
this.notifyValueChanged();
|
|
10562
10802
|
}
|
|
10563
10803
|
|
|
10564
10804
|
if (changedProperties.has('error')) {
|
|
@@ -12519,7 +12759,7 @@ var buttonVersion$1 = '11.0.0';
|
|
|
12519
12759
|
|
|
12520
12760
|
var colorCss$5 = css`: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)}`;
|
|
12521
12761
|
|
|
12522
|
-
var styleCss$6 = css
|
|
12762
|
+
var styleCss$6 = css`: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}`;
|
|
12523
12763
|
|
|
12524
12764
|
var tokensCss$5 = css`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
12525
12765
|
|
|
@@ -12796,7 +13036,7 @@ class AuroInput extends BaseInput {
|
|
|
12796
13036
|
*/
|
|
12797
13037
|
get commonInputClasses() {
|
|
12798
13038
|
return {
|
|
12799
|
-
'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
|
|
13039
|
+
'util_displayHiddenVisually': (this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0) || ((!this.value || this.value.length === 0) && !this.hasFocus && (!this.placeholder || this.placeholder === '')),
|
|
12800
13040
|
};
|
|
12801
13041
|
}
|
|
12802
13042
|
|
|
@@ -15080,6 +15320,30 @@ class AuroBibtemplate extends LitElement {
|
|
|
15080
15320
|
AuroLibraryRuntimeUtils$3.prototype.registerComponent(name, AuroBibtemplate);
|
|
15081
15321
|
}
|
|
15082
15322
|
|
|
15323
|
+
/**
|
|
15324
|
+
* Prevents scrolling of the body when touching empty areas of the component.
|
|
15325
|
+
* @param {Event} event - The touchmove event.
|
|
15326
|
+
* @returns {void}
|
|
15327
|
+
*/
|
|
15328
|
+
preventBodyScroll(event) {
|
|
15329
|
+
if (event.target === this) {
|
|
15330
|
+
event.preventDefault();
|
|
15331
|
+
}
|
|
15332
|
+
}
|
|
15333
|
+
|
|
15334
|
+
connectedCallback() {
|
|
15335
|
+
super.connectedCallback();
|
|
15336
|
+
|
|
15337
|
+
this.preventBodyScroll = this.preventBodyScroll.bind(this);
|
|
15338
|
+
this.addEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
15339
|
+
}
|
|
15340
|
+
|
|
15341
|
+
disconnectedCallback() {
|
|
15342
|
+
super.disconnectedCallback();
|
|
15343
|
+
|
|
15344
|
+
this.removeEventListener('touchmove', this.preventBodyScroll, { passive: false });
|
|
15345
|
+
}
|
|
15346
|
+
|
|
15083
15347
|
onCloseButtonClick() {
|
|
15084
15348
|
this.dispatchEvent(new Event("close-click", { bubbles: true,
|
|
15085
15349
|
composed: true }));
|
|
@@ -15111,7 +15375,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
15111
15375
|
<div id="bibTemplate" part="bibtemplate">
|
|
15112
15376
|
${this.isFullscreen ? html`
|
|
15113
15377
|
<div id="headerContainer">
|
|
15114
|
-
<${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
15378
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
15115
15379
|
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
15116
15380
|
</${this.buttonTag}>
|
|
15117
15381
|
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
@@ -15240,7 +15504,7 @@ class AuroElement extends LitElement {
|
|
|
15240
15504
|
|
|
15241
15505
|
var colorCss = css`: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)}`;
|
|
15242
15506
|
|
|
15243
|
-
var styleCss = css
|
|
15507
|
+
var styleCss = css`: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}`;
|
|
15244
15508
|
|
|
15245
15509
|
var tokensCss = css`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
15246
15510
|
|
|
@@ -16128,18 +16392,9 @@ class AuroCombobox extends AuroElement {
|
|
|
16128
16392
|
/**
|
|
16129
16393
|
* Validate every time we remove focus from the datepicker.
|
|
16130
16394
|
*/
|
|
16131
|
-
this.addEventListener('focusout', (
|
|
16132
|
-
if (event.relatedTarget === event.target) {
|
|
16133
|
-
// if the focus is moved within combobox, do nothing.
|
|
16134
|
-
return;
|
|
16135
|
-
}
|
|
16395
|
+
this.addEventListener('focusout', () => {
|
|
16136
16396
|
if (document.activeElement !== this) {
|
|
16137
16397
|
this.validate();
|
|
16138
|
-
if (this.dropdown.isPopoverVisible && this.dropdown.isBibFullscreen) {
|
|
16139
|
-
event.preventDefault();
|
|
16140
|
-
event.stopImmediatePropagation();
|
|
16141
|
-
this.focus();
|
|
16142
|
-
}
|
|
16143
16398
|
}
|
|
16144
16399
|
});
|
|
16145
16400
|
|
|
@@ -16245,12 +16500,23 @@ class AuroCombobox extends AuroElement {
|
|
|
16245
16500
|
}
|
|
16246
16501
|
}
|
|
16247
16502
|
|
|
16248
|
-
if (evt.key === 'Tab') {
|
|
16249
|
-
|
|
16250
|
-
|
|
16251
|
-
|
|
16503
|
+
if (evt.key === 'Tab' && this.dropdown.isPopoverVisible) {
|
|
16504
|
+
if (this.dropdown.isBibFullscreen) {
|
|
16505
|
+
|
|
16506
|
+
// when focus is on the input, move focus back to close button with Tab key
|
|
16507
|
+
if (document.activeElement.shadowRoot.activeElement === this.inputInBib &&
|
|
16508
|
+
this.inputInBib.shadowRoot.activeElement.tagName !== 'INPUT' &&
|
|
16509
|
+
!evt.shiftKey) {
|
|
16510
|
+
evt.preventDefault();
|
|
16511
|
+
this.dropdown.focus();
|
|
16252
16512
|
}
|
|
16253
|
-
}
|
|
16513
|
+
} else {
|
|
16514
|
+
setTimeout(() => {
|
|
16515
|
+
if (document.activeElement !== this) {
|
|
16516
|
+
this.hideBib();
|
|
16517
|
+
}
|
|
16518
|
+
}, 0);
|
|
16519
|
+
}
|
|
16254
16520
|
}
|
|
16255
16521
|
|
|
16256
16522
|
/**
|
|
@@ -16263,7 +16529,12 @@ class AuroCombobox extends AuroElement {
|
|
|
16263
16529
|
|
|
16264
16530
|
if (this.dropdown.isPopoverVisible) {
|
|
16265
16531
|
evt.preventDefault();
|
|
16266
|
-
|
|
16532
|
+
|
|
16533
|
+
// navigate on menu only when the focus is on input
|
|
16534
|
+
if (!this.dropdown.isBibFullscreen || this.shadowRoot.activeElement === this.inputInBib) {
|
|
16535
|
+
const direction = evt.key.replace('Arrow', '').toLowerCase();
|
|
16536
|
+
this.menu.navigateOptions(direction);
|
|
16537
|
+
}
|
|
16267
16538
|
}
|
|
16268
16539
|
}
|
|
16269
16540
|
});
|
|
@@ -16315,9 +16586,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16315
16586
|
* @returns {void}
|
|
16316
16587
|
*/
|
|
16317
16588
|
focus() {
|
|
16318
|
-
|
|
16319
|
-
this.setInputFocus();
|
|
16320
|
-
}
|
|
16589
|
+
this.input.focus();
|
|
16321
16590
|
}
|
|
16322
16591
|
|
|
16323
16592
|
/**
|