@aurodesignsystem-dev/auro-formkit 0.0.0-pr1519.1 → 0.0.0-pr1520.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/checkbox/demo/customize.min.js +2 -15
- package/components/checkbox/demo/getting-started.min.js +2 -15
- package/components/checkbox/demo/index.min.js +2 -15
- package/components/checkbox/dist/index.js +2 -15
- package/components/checkbox/dist/registered.js +2 -15
- package/components/combobox/demo/customize.min.js +10 -105
- package/components/combobox/demo/getting-started.min.js +10 -105
- package/components/combobox/demo/index.min.js +10 -105
- package/components/combobox/dist/index.js +10 -105
- package/components/combobox/dist/registered.js +10 -105
- package/components/counter/demo/customize.min.js +3 -33
- package/components/counter/demo/index.min.js +3 -33
- package/components/counter/dist/index.js +3 -33
- package/components/counter/dist/registered.js +3 -33
- package/components/datepicker/demo/customize.min.js +13 -153
- package/components/datepicker/demo/index.min.js +13 -153
- package/components/datepicker/dist/index.js +13 -153
- package/components/datepicker/dist/registered.js +13 -153
- package/components/dropdown/demo/customize.min.js +1 -18
- package/components/dropdown/demo/getting-started.min.js +1 -18
- package/components/dropdown/demo/index.min.js +1 -18
- package/components/dropdown/dist/index.js +1 -18
- package/components/dropdown/dist/registered.js +1 -18
- package/components/form/demo/customize.min.js +40 -426
- package/components/form/demo/getting-started.min.js +40 -426
- package/components/form/demo/index.min.js +40 -426
- package/components/form/demo/registerDemoDeps.min.js +40 -426
- package/components/input/demo/api.md +57 -58
- package/components/input/demo/customize.min.js +7 -72
- package/components/input/demo/getting-started.min.js +7 -72
- package/components/input/demo/index.min.js +7 -72
- package/components/input/dist/base-input.d.ts +3 -9
- package/components/input/dist/index.js +7 -72
- package/components/input/dist/registered.js +7 -72
- package/components/input/dist/utilities.d.ts +0 -9
- package/components/radio/demo/customize.min.js +2 -15
- package/components/radio/demo/getting-started.min.js +2 -15
- package/components/radio/demo/index.min.js +2 -15
- package/components/radio/dist/index.js +2 -15
- package/components/radio/dist/registered.js +2 -15
- package/components/select/demo/customize.min.js +3 -33
- package/components/select/demo/getting-started.min.js +3 -33
- package/components/select/demo/index.min.js +3 -33
- package/components/select/dist/index.js +3 -33
- package/components/select/dist/registered.js +3 -33
- package/custom-elements.json +8 -78
- package/package.json +1 -1
|
@@ -4285,21 +4285,8 @@ class AuroFormValidation {
|
|
|
4285
4285
|
return;
|
|
4286
4286
|
}
|
|
4287
4287
|
|
|
4288
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
4289
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
4288
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
4290
4289
|
if (elem.value && !elem.valueObject) {
|
|
4291
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
4292
|
-
|
|
4293
|
-
if (isPartialDateFormat) {
|
|
4294
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
4295
|
-
elem.validity = 'patternMismatch';
|
|
4296
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
4297
|
-
}
|
|
4298
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
4299
|
-
return;
|
|
4300
|
-
}
|
|
4301
|
-
|
|
4302
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
4303
4290
|
elem.validity = 'patternMismatch';
|
|
4304
4291
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
4305
4292
|
return;
|
|
@@ -10229,11 +10216,10 @@ class AuroInputUtilities {
|
|
|
10229
10216
|
const dateFormat = format$1 || this.overrideFormat || pattern || 'mm/dd/yyyy';
|
|
10230
10217
|
|
|
10231
10218
|
if (dateFormat === 'dd' || dateFormat === 'yy' || dateFormat === 'yyyy') {
|
|
10232
|
-
const
|
|
10233
|
-
const maxValue = dateFormat === 'dd' ? 31 : (dateFormat === 'yy' ? 99 : 2100);
|
|
10219
|
+
const maxValue = dateFormat === 'dd' ? 31 : (dateFormat === 'yy' ? 99 : 9999);
|
|
10234
10220
|
return {
|
|
10235
10221
|
mask: IMask.MaskedRange,
|
|
10236
|
-
from:
|
|
10222
|
+
from: 1,
|
|
10237
10223
|
to: maxValue,
|
|
10238
10224
|
lazy: true,
|
|
10239
10225
|
placeholderChar: '',
|
|
@@ -10241,8 +10227,7 @@ class AuroInputUtilities {
|
|
|
10241
10227
|
return value.toString().padStart(dateFormat.length, '0');
|
|
10242
10228
|
},
|
|
10243
10229
|
parse(str) {
|
|
10244
|
-
|
|
10245
|
-
return isNaN(num) ? null : num;
|
|
10230
|
+
return parseInt(str) || null;
|
|
10246
10231
|
}
|
|
10247
10232
|
};
|
|
10248
10233
|
}
|
|
@@ -10306,49 +10291,6 @@ class AuroInputUtilities {
|
|
|
10306
10291
|
return type === 'date' && normalizedFormat.includes('yy') && normalizedFormat.includes('mm') && normalizedFormat.includes('dd');
|
|
10307
10292
|
}
|
|
10308
10293
|
|
|
10309
|
-
/**
|
|
10310
|
-
* Validates a value against a partial date format (one that lacks yy/mm/dd all three).
|
|
10311
|
-
* Day- and year-only formats (dd/yy/yyyy) are checked as integer ranges; other partial formats use
|
|
10312
|
-
* a date-fns parse + round-trip to confirm both validity and exact formatting.
|
|
10313
|
-
* @param {string} value - The user-facing display value.
|
|
10314
|
-
* @param {string} format - The partial date format string (e.g. "mm/yyyy", "yyyy", "dd").
|
|
10315
|
-
* @returns {boolean}
|
|
10316
|
-
*/
|
|
10317
|
-
isValidPartialDate(value, format$1) {
|
|
10318
|
-
if (!value || !format$1) {
|
|
10319
|
-
return false;
|
|
10320
|
-
}
|
|
10321
|
-
const normalizedFormat = format$1.toLowerCase();
|
|
10322
|
-
|
|
10323
|
-
if (normalizedFormat === 'dd') {
|
|
10324
|
-
const num = Number(value);
|
|
10325
|
-
return (/^\d{2}$/u).test(value) && num >= 1 && num <= 31;
|
|
10326
|
-
}
|
|
10327
|
-
if (normalizedFormat === 'yy') {
|
|
10328
|
-
const num = Number(value);
|
|
10329
|
-
return (/^\d{2}$/u).test(value) && num >= 0 && num <= 99;
|
|
10330
|
-
}
|
|
10331
|
-
if (normalizedFormat === 'yyyy') {
|
|
10332
|
-
const num = Number(value);
|
|
10333
|
-
return (/^\d{4}$/u).test(value) && num >= 1900 && num <= 2100;
|
|
10334
|
-
}
|
|
10335
|
-
|
|
10336
|
-
const dateFnsMask = this.toDateFnsMask(normalizedFormat);
|
|
10337
|
-
// Use the 1st of the current month as the reference so that formats
|
|
10338
|
-
// omitting a day (e.g. MM/yyyy) never roll over on days 29–31.
|
|
10339
|
-
const referenceDate = new Date();
|
|
10340
|
-
referenceDate.setDate(1);
|
|
10341
|
-
const parsed = parse(value, dateFnsMask, referenceDate);
|
|
10342
|
-
if (!isValid(parsed) || format(parsed, dateFnsMask) !== value) {
|
|
10343
|
-
return false;
|
|
10344
|
-
}
|
|
10345
|
-
if (normalizedFormat.includes('yyyy')) {
|
|
10346
|
-
const year = parsed.getFullYear();
|
|
10347
|
-
return year >= 1900 && year <= 2100;
|
|
10348
|
-
}
|
|
10349
|
-
return true;
|
|
10350
|
-
}
|
|
10351
|
-
|
|
10352
10294
|
/**
|
|
10353
10295
|
* Converts a display string to its model value.
|
|
10354
10296
|
* For full date formats, converts the display string to an ISO date string.
|
|
@@ -10968,13 +10910,6 @@ class BaseInput extends AuroElement {
|
|
|
10968
10910
|
type: String
|
|
10969
10911
|
},
|
|
10970
10912
|
|
|
10971
|
-
/**
|
|
10972
|
-
* Custom help text message to display when validity = `patternMismatch`.
|
|
10973
|
-
*/
|
|
10974
|
-
setCustomValidityPatternMismatch: {
|
|
10975
|
-
type: String
|
|
10976
|
-
},
|
|
10977
|
-
|
|
10978
10913
|
/**
|
|
10979
10914
|
* Custom help text message to display when validity = `rangeOverflow`.
|
|
10980
10915
|
*/
|
|
@@ -11045,7 +10980,7 @@ class BaseInput extends AuroElement {
|
|
|
11045
10980
|
|
|
11046
10981
|
/**
|
|
11047
10982
|
* Populates the `type` attribute on the input.
|
|
11048
|
-
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number'
|
|
10983
|
+
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number'}
|
|
11049
10984
|
* @default 'text'
|
|
11050
10985
|
*/
|
|
11051
10986
|
type: {
|
|
@@ -11070,7 +11005,7 @@ class BaseInput extends AuroElement {
|
|
|
11070
11005
|
|
|
11071
11006
|
/**
|
|
11072
11007
|
* Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.
|
|
11073
|
-
*
|
|
11008
|
+
* The format for this property should be ISO for `date` type inputs.
|
|
11074
11009
|
*/
|
|
11075
11010
|
value: {
|
|
11076
11011
|
type: String
|
|
@@ -12193,7 +12128,7 @@ class AuroHelpText extends LitElement {
|
|
|
12193
12128
|
}
|
|
12194
12129
|
}
|
|
12195
12130
|
|
|
12196
|
-
var formkitVersion = '
|
|
12131
|
+
var formkitVersion = '202607011727';
|
|
12197
12132
|
|
|
12198
12133
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12199
12134
|
// See LICENSE in the project root for license information.
|
|
@@ -4285,21 +4285,8 @@ class AuroFormValidation {
|
|
|
4285
4285
|
return;
|
|
4286
4286
|
}
|
|
4287
4287
|
|
|
4288
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
4289
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
4288
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
4290
4289
|
if (elem.value && !elem.valueObject) {
|
|
4291
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
4292
|
-
|
|
4293
|
-
if (isPartialDateFormat) {
|
|
4294
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
4295
|
-
elem.validity = 'patternMismatch';
|
|
4296
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
4297
|
-
}
|
|
4298
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
4299
|
-
return;
|
|
4300
|
-
}
|
|
4301
|
-
|
|
4302
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
4303
4290
|
elem.validity = 'patternMismatch';
|
|
4304
4291
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
4305
4292
|
return;
|
|
@@ -10229,11 +10216,10 @@ class AuroInputUtilities {
|
|
|
10229
10216
|
const dateFormat = format$1 || this.overrideFormat || pattern || 'mm/dd/yyyy';
|
|
10230
10217
|
|
|
10231
10218
|
if (dateFormat === 'dd' || dateFormat === 'yy' || dateFormat === 'yyyy') {
|
|
10232
|
-
const
|
|
10233
|
-
const maxValue = dateFormat === 'dd' ? 31 : (dateFormat === 'yy' ? 99 : 2100);
|
|
10219
|
+
const maxValue = dateFormat === 'dd' ? 31 : (dateFormat === 'yy' ? 99 : 9999);
|
|
10234
10220
|
return {
|
|
10235
10221
|
mask: IMask.MaskedRange,
|
|
10236
|
-
from:
|
|
10222
|
+
from: 1,
|
|
10237
10223
|
to: maxValue,
|
|
10238
10224
|
lazy: true,
|
|
10239
10225
|
placeholderChar: '',
|
|
@@ -10241,8 +10227,7 @@ class AuroInputUtilities {
|
|
|
10241
10227
|
return value.toString().padStart(dateFormat.length, '0');
|
|
10242
10228
|
},
|
|
10243
10229
|
parse(str) {
|
|
10244
|
-
|
|
10245
|
-
return isNaN(num) ? null : num;
|
|
10230
|
+
return parseInt(str) || null;
|
|
10246
10231
|
}
|
|
10247
10232
|
};
|
|
10248
10233
|
}
|
|
@@ -10306,49 +10291,6 @@ class AuroInputUtilities {
|
|
|
10306
10291
|
return type === 'date' && normalizedFormat.includes('yy') && normalizedFormat.includes('mm') && normalizedFormat.includes('dd');
|
|
10307
10292
|
}
|
|
10308
10293
|
|
|
10309
|
-
/**
|
|
10310
|
-
* Validates a value against a partial date format (one that lacks yy/mm/dd all three).
|
|
10311
|
-
* Day- and year-only formats (dd/yy/yyyy) are checked as integer ranges; other partial formats use
|
|
10312
|
-
* a date-fns parse + round-trip to confirm both validity and exact formatting.
|
|
10313
|
-
* @param {string} value - The user-facing display value.
|
|
10314
|
-
* @param {string} format - The partial date format string (e.g. "mm/yyyy", "yyyy", "dd").
|
|
10315
|
-
* @returns {boolean}
|
|
10316
|
-
*/
|
|
10317
|
-
isValidPartialDate(value, format$1) {
|
|
10318
|
-
if (!value || !format$1) {
|
|
10319
|
-
return false;
|
|
10320
|
-
}
|
|
10321
|
-
const normalizedFormat = format$1.toLowerCase();
|
|
10322
|
-
|
|
10323
|
-
if (normalizedFormat === 'dd') {
|
|
10324
|
-
const num = Number(value);
|
|
10325
|
-
return (/^\d{2}$/u).test(value) && num >= 1 && num <= 31;
|
|
10326
|
-
}
|
|
10327
|
-
if (normalizedFormat === 'yy') {
|
|
10328
|
-
const num = Number(value);
|
|
10329
|
-
return (/^\d{2}$/u).test(value) && num >= 0 && num <= 99;
|
|
10330
|
-
}
|
|
10331
|
-
if (normalizedFormat === 'yyyy') {
|
|
10332
|
-
const num = Number(value);
|
|
10333
|
-
return (/^\d{4}$/u).test(value) && num >= 1900 && num <= 2100;
|
|
10334
|
-
}
|
|
10335
|
-
|
|
10336
|
-
const dateFnsMask = this.toDateFnsMask(normalizedFormat);
|
|
10337
|
-
// Use the 1st of the current month as the reference so that formats
|
|
10338
|
-
// omitting a day (e.g. MM/yyyy) never roll over on days 29–31.
|
|
10339
|
-
const referenceDate = new Date();
|
|
10340
|
-
referenceDate.setDate(1);
|
|
10341
|
-
const parsed = parse(value, dateFnsMask, referenceDate);
|
|
10342
|
-
if (!isValid(parsed) || format(parsed, dateFnsMask) !== value) {
|
|
10343
|
-
return false;
|
|
10344
|
-
}
|
|
10345
|
-
if (normalizedFormat.includes('yyyy')) {
|
|
10346
|
-
const year = parsed.getFullYear();
|
|
10347
|
-
return year >= 1900 && year <= 2100;
|
|
10348
|
-
}
|
|
10349
|
-
return true;
|
|
10350
|
-
}
|
|
10351
|
-
|
|
10352
10294
|
/**
|
|
10353
10295
|
* Converts a display string to its model value.
|
|
10354
10296
|
* For full date formats, converts the display string to an ISO date string.
|
|
@@ -10968,13 +10910,6 @@ class BaseInput extends AuroElement {
|
|
|
10968
10910
|
type: String
|
|
10969
10911
|
},
|
|
10970
10912
|
|
|
10971
|
-
/**
|
|
10972
|
-
* Custom help text message to display when validity = `patternMismatch`.
|
|
10973
|
-
*/
|
|
10974
|
-
setCustomValidityPatternMismatch: {
|
|
10975
|
-
type: String
|
|
10976
|
-
},
|
|
10977
|
-
|
|
10978
10913
|
/**
|
|
10979
10914
|
* Custom help text message to display when validity = `rangeOverflow`.
|
|
10980
10915
|
*/
|
|
@@ -11045,7 +10980,7 @@ class BaseInput extends AuroElement {
|
|
|
11045
10980
|
|
|
11046
10981
|
/**
|
|
11047
10982
|
* Populates the `type` attribute on the input.
|
|
11048
|
-
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number'
|
|
10983
|
+
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number'}
|
|
11049
10984
|
* @default 'text'
|
|
11050
10985
|
*/
|
|
11051
10986
|
type: {
|
|
@@ -11070,7 +11005,7 @@ class BaseInput extends AuroElement {
|
|
|
11070
11005
|
|
|
11071
11006
|
/**
|
|
11072
11007
|
* Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.
|
|
11073
|
-
*
|
|
11008
|
+
* The format for this property should be ISO for `date` type inputs.
|
|
11074
11009
|
*/
|
|
11075
11010
|
value: {
|
|
11076
11011
|
type: String
|
|
@@ -12193,7 +12128,7 @@ class AuroHelpText extends LitElement {
|
|
|
12193
12128
|
}
|
|
12194
12129
|
}
|
|
12195
12130
|
|
|
12196
|
-
var formkitVersion = '
|
|
12131
|
+
var formkitVersion = '202607011727';
|
|
12197
12132
|
|
|
12198
12133
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12199
12134
|
// See LICENSE in the project root for license information.
|
|
@@ -62,15 +62,6 @@ export class AuroInputUtilities {
|
|
|
62
62
|
* @returns {boolean}
|
|
63
63
|
*/
|
|
64
64
|
private isFullDateFormat;
|
|
65
|
-
/**
|
|
66
|
-
* Validates a value against a partial date format (one that lacks yy/mm/dd all three).
|
|
67
|
-
* Day- and year-only formats (dd/yy/yyyy) are checked as integer ranges; other partial formats use
|
|
68
|
-
* a date-fns parse + round-trip to confirm both validity and exact formatting.
|
|
69
|
-
* @param {string} value - The user-facing display value.
|
|
70
|
-
* @param {string} format - The partial date format string (e.g. "mm/yyyy", "yyyy", "dd").
|
|
71
|
-
* @returns {boolean}
|
|
72
|
-
*/
|
|
73
|
-
isValidPartialDate(value: string, format: string): boolean;
|
|
74
65
|
/**
|
|
75
66
|
* Converts a display string to its model value.
|
|
76
67
|
* For full date formats, converts the display string to an ISO date string.
|
|
@@ -715,21 +715,8 @@ class AuroFormValidation {
|
|
|
715
715
|
return;
|
|
716
716
|
}
|
|
717
717
|
|
|
718
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
719
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
718
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
720
719
|
if (elem.value && !elem.valueObject) {
|
|
721
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
722
|
-
|
|
723
|
-
if (isPartialDateFormat) {
|
|
724
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
725
|
-
elem.validity = 'patternMismatch';
|
|
726
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
727
|
-
}
|
|
728
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
729
|
-
return;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
733
720
|
elem.validity = 'patternMismatch';
|
|
734
721
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
735
722
|
return;
|
|
@@ -1227,7 +1214,7 @@ class AuroHelpText extends i$2 {
|
|
|
1227
1214
|
}
|
|
1228
1215
|
}
|
|
1229
1216
|
|
|
1230
|
-
var formkitVersion = '
|
|
1217
|
+
var formkitVersion = '202607011727';
|
|
1231
1218
|
|
|
1232
1219
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1233
1220
|
// See LICENSE in the project root for license information.
|
|
@@ -715,21 +715,8 @@ class AuroFormValidation {
|
|
|
715
715
|
return;
|
|
716
716
|
}
|
|
717
717
|
|
|
718
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
719
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
718
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
720
719
|
if (elem.value && !elem.valueObject) {
|
|
721
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
722
|
-
|
|
723
|
-
if (isPartialDateFormat) {
|
|
724
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
725
|
-
elem.validity = 'patternMismatch';
|
|
726
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
727
|
-
}
|
|
728
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
729
|
-
return;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
733
720
|
elem.validity = 'patternMismatch';
|
|
734
721
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
735
722
|
return;
|
|
@@ -1227,7 +1214,7 @@ class AuroHelpText extends i$2 {
|
|
|
1227
1214
|
}
|
|
1228
1215
|
}
|
|
1229
1216
|
|
|
1230
|
-
var formkitVersion = '
|
|
1217
|
+
var formkitVersion = '202607011727';
|
|
1231
1218
|
|
|
1232
1219
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1233
1220
|
// See LICENSE in the project root for license information.
|
|
@@ -715,21 +715,8 @@ class AuroFormValidation {
|
|
|
715
715
|
return;
|
|
716
716
|
}
|
|
717
717
|
|
|
718
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
719
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
718
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
720
719
|
if (elem.value && !elem.valueObject) {
|
|
721
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
722
|
-
|
|
723
|
-
if (isPartialDateFormat) {
|
|
724
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
725
|
-
elem.validity = 'patternMismatch';
|
|
726
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
727
|
-
}
|
|
728
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
729
|
-
return;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
733
720
|
elem.validity = 'patternMismatch';
|
|
734
721
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
735
722
|
return;
|
|
@@ -1227,7 +1214,7 @@ class AuroHelpText extends i$2 {
|
|
|
1227
1214
|
}
|
|
1228
1215
|
}
|
|
1229
1216
|
|
|
1230
|
-
var formkitVersion = '
|
|
1217
|
+
var formkitVersion = '202607011727';
|
|
1231
1218
|
|
|
1232
1219
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1233
1220
|
// See LICENSE in the project root for license information.
|
|
@@ -654,21 +654,8 @@ class AuroFormValidation {
|
|
|
654
654
|
return;
|
|
655
655
|
}
|
|
656
656
|
|
|
657
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
658
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
657
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
659
658
|
if (elem.value && !elem.valueObject) {
|
|
660
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
661
|
-
|
|
662
|
-
if (isPartialDateFormat) {
|
|
663
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
664
|
-
elem.validity = 'patternMismatch';
|
|
665
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
666
|
-
}
|
|
667
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
668
|
-
return;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
672
659
|
elem.validity = 'patternMismatch';
|
|
673
660
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
674
661
|
return;
|
|
@@ -1166,7 +1153,7 @@ class AuroHelpText extends LitElement {
|
|
|
1166
1153
|
}
|
|
1167
1154
|
}
|
|
1168
1155
|
|
|
1169
|
-
var formkitVersion = '
|
|
1156
|
+
var formkitVersion = '202607011727';
|
|
1170
1157
|
|
|
1171
1158
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1172
1159
|
// See LICENSE in the project root for license information.
|
|
@@ -654,21 +654,8 @@ class AuroFormValidation {
|
|
|
654
654
|
return;
|
|
655
655
|
}
|
|
656
656
|
|
|
657
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
658
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
657
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
659
658
|
if (elem.value && !elem.valueObject) {
|
|
660
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
661
|
-
|
|
662
|
-
if (isPartialDateFormat) {
|
|
663
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
664
|
-
elem.validity = 'patternMismatch';
|
|
665
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
666
|
-
}
|
|
667
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
668
|
-
return;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
672
659
|
elem.validity = 'patternMismatch';
|
|
673
660
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
674
661
|
return;
|
|
@@ -1166,7 +1153,7 @@ class AuroHelpText extends LitElement {
|
|
|
1166
1153
|
}
|
|
1167
1154
|
}
|
|
1168
1155
|
|
|
1169
|
-
var formkitVersion = '
|
|
1156
|
+
var formkitVersion = '202607011727';
|
|
1170
1157
|
|
|
1171
1158
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1172
1159
|
// See LICENSE in the project root for license information.
|
|
@@ -455,21 +455,8 @@ class AuroFormValidation {
|
|
|
455
455
|
return;
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
459
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
458
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
460
459
|
if (elem.value && !elem.valueObject) {
|
|
461
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
462
|
-
|
|
463
|
-
if (isPartialDateFormat) {
|
|
464
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
465
|
-
elem.validity = 'patternMismatch';
|
|
466
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
467
|
-
}
|
|
468
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
469
|
-
return;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
473
460
|
elem.validity = 'patternMismatch';
|
|
474
461
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
475
462
|
return;
|
|
@@ -4987,7 +4974,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
4987
4974
|
}
|
|
4988
4975
|
};
|
|
4989
4976
|
|
|
4990
|
-
var formkitVersion$1 = '
|
|
4977
|
+
var formkitVersion$1 = '202607011727';
|
|
4991
4978
|
|
|
4992
4979
|
class AuroElement extends i$2 {
|
|
4993
4980
|
static get properties() {
|
|
@@ -5739,23 +5726,6 @@ class AuroDropdown extends AuroElement {
|
|
|
5739
5726
|
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
|
|
5740
5727
|
this.trigger.focus();
|
|
5741
5728
|
}
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
if (!this.isPopoverVisible) {
|
|
5745
|
-
// wait til the bib gets fully closed and rendered
|
|
5746
|
-
setTimeout(() => {
|
|
5747
|
-
// Skip if the bib re-opened, or if focus moved intentionally outside the dropdown (not to body).
|
|
5748
|
-
// Restore focus to trigger when focus is still inside the bib (:focus-within) or fell to body.
|
|
5749
|
-
if (this.isPopoverVisible ||
|
|
5750
|
-
// eslint-disable-next-line no-extra-parens
|
|
5751
|
-
(!this.bibContent?.matches(':focus-within') &&
|
|
5752
|
-
document.activeElement !== document.body)) {
|
|
5753
|
-
return;
|
|
5754
|
-
}
|
|
5755
|
-
// Restore focus to the trigger.
|
|
5756
|
-
this.trigger.focus();
|
|
5757
|
-
});
|
|
5758
|
-
}
|
|
5759
5729
|
}
|
|
5760
5730
|
|
|
5761
5731
|
firstUpdated() {
|
|
@@ -7026,7 +6996,7 @@ class AuroHelpText extends i$2 {
|
|
|
7026
6996
|
}
|
|
7027
6997
|
}
|
|
7028
6998
|
|
|
7029
|
-
var formkitVersion = '
|
|
6999
|
+
var formkitVersion = '202607011727';
|
|
7030
7000
|
|
|
7031
7001
|
var styleCss$2 = i$5`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);font-weight:var(--wcss-body-default-weight, );line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-default-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-default-emphasized{font-size:var(--wcss-body-default-emphasized-font-size, 1rem);font-weight:var(--wcss-body-default-emphasized-weight, );line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);font-weight:var(--wcss-body-lg-weight, );line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg,.body-lg-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg-emphasized{font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);font-weight:var(--wcss-body-lg-emphasized-weight, );line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, 0.875rem);font-weight:var(--wcss-body-sm-weight, );line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-sm-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-sm-emphasized{font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);font-weight:var(--wcss-body-sm-emphasized-weight, );line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.body-xs{font-size:var(--wcss-body-xs-font-size, 0.75rem);font-weight:var(--wcss-body-xs-weight, );line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs,.body-xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs-emphasized{font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);font-weight:var(--wcss-body-xs-emphasized-weight, );line-height:var(--wcss-body-xs-emphasized-line-height, 1rem)}.body-2xs{font-size:var(--wcss-body-2xs-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-weight, );line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs,.body-2xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-2xs-emphasized{font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-emphasized-weight, );line-height:var(--wcss-body-2xs-emphasized-line-height, 0.875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 300);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 300);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
|
|
7032
7002
|
|
|
@@ -455,21 +455,8 @@ class AuroFormValidation {
|
|
|
455
455
|
return;
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
-
// Validate that the date passed was the correct format and is a valid date
|
|
459
|
-
// For partial date formats, valueObject is never populated; validate them directly.
|
|
458
|
+
// Validate that the date passed was the correct format and is a valid date
|
|
460
459
|
if (elem.value && !elem.valueObject) {
|
|
461
|
-
const isPartialDateFormat = elem.util && !elem.util.isFullDateFormat(elem.type, elem.format);
|
|
462
|
-
|
|
463
|
-
if (isPartialDateFormat) {
|
|
464
|
-
if (!elem.util.isValidPartialDate(elem.value, elem.format)) {
|
|
465
|
-
elem.validity = 'patternMismatch';
|
|
466
|
-
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
467
|
-
}
|
|
468
|
-
// Partial date format — validate directly and skip max/min checks since valueObject is undefined.
|
|
469
|
-
return;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
// Full date format with no valueObject means the value is not a valid calendar date.
|
|
473
460
|
elem.validity = 'patternMismatch';
|
|
474
461
|
elem.errorMessage = elem.setCustomValidityPatternMismatch || elem.setCustomValidity || 'Invalid Date Format Entered';
|
|
475
462
|
return;
|
|
@@ -4987,7 +4974,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
4987
4974
|
}
|
|
4988
4975
|
};
|
|
4989
4976
|
|
|
4990
|
-
var formkitVersion$1 = '
|
|
4977
|
+
var formkitVersion$1 = '202607011727';
|
|
4991
4978
|
|
|
4992
4979
|
class AuroElement extends i$2 {
|
|
4993
4980
|
static get properties() {
|
|
@@ -5739,23 +5726,6 @@ class AuroDropdown extends AuroElement {
|
|
|
5739
5726
|
if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
|
|
5740
5727
|
this.trigger.focus();
|
|
5741
5728
|
}
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
if (!this.isPopoverVisible) {
|
|
5745
|
-
// wait til the bib gets fully closed and rendered
|
|
5746
|
-
setTimeout(() => {
|
|
5747
|
-
// Skip if the bib re-opened, or if focus moved intentionally outside the dropdown (not to body).
|
|
5748
|
-
// Restore focus to trigger when focus is still inside the bib (:focus-within) or fell to body.
|
|
5749
|
-
if (this.isPopoverVisible ||
|
|
5750
|
-
// eslint-disable-next-line no-extra-parens
|
|
5751
|
-
(!this.bibContent?.matches(':focus-within') &&
|
|
5752
|
-
document.activeElement !== document.body)) {
|
|
5753
|
-
return;
|
|
5754
|
-
}
|
|
5755
|
-
// Restore focus to the trigger.
|
|
5756
|
-
this.trigger.focus();
|
|
5757
|
-
});
|
|
5758
|
-
}
|
|
5759
5729
|
}
|
|
5760
5730
|
|
|
5761
5731
|
firstUpdated() {
|
|
@@ -7026,7 +6996,7 @@ class AuroHelpText extends i$2 {
|
|
|
7026
6996
|
}
|
|
7027
6997
|
}
|
|
7028
6998
|
|
|
7029
|
-
var formkitVersion = '
|
|
6999
|
+
var formkitVersion = '202607011727';
|
|
7030
7000
|
|
|
7031
7001
|
var styleCss$2 = i$5`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);font-weight:var(--wcss-body-default-weight, );line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-default-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-default-emphasized{font-size:var(--wcss-body-default-emphasized-font-size, 1rem);font-weight:var(--wcss-body-default-emphasized-weight, );line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);font-weight:var(--wcss-body-lg-weight, );line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg,.body-lg-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg-emphasized{font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);font-weight:var(--wcss-body-lg-emphasized-weight, );line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, 0.875rem);font-weight:var(--wcss-body-sm-weight, );line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-sm-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-sm-emphasized{font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);font-weight:var(--wcss-body-sm-emphasized-weight, );line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.body-xs{font-size:var(--wcss-body-xs-font-size, 0.75rem);font-weight:var(--wcss-body-xs-weight, );line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs,.body-xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs-emphasized{font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);font-weight:var(--wcss-body-xs-emphasized-weight, );line-height:var(--wcss-body-xs-emphasized-line-height, 1rem)}.body-2xs{font-size:var(--wcss-body-2xs-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-weight, );line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs,.body-2xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-2xs-emphasized{font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-emphasized-weight, );line-height:var(--wcss-body-2xs-emphasized-line-height, 0.875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 300);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 300);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
|
|
7032
7002
|
|