@aurodesignsystem-dev/auro-formkit 0.0.0-pr1507.0 → 0.0.0-pr1509.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.html +1 -2
- package/components/checkbox/demo/customize.min.js +1 -1
- package/components/checkbox/demo/getting-started.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/customize.html +1 -2
- package/components/combobox/demo/customize.md +108 -132
- package/components/combobox/demo/customize.min.js +30 -21
- package/components/combobox/demo/getting-started.min.js +30 -21
- package/components/combobox/demo/index.min.js +30 -21
- package/components/combobox/dist/index.js +30 -21
- package/components/combobox/dist/registered.js +30 -21
- package/components/counter/demo/customize.min.js +10 -2
- package/components/counter/demo/index.min.js +10 -2
- package/components/counter/dist/index.js +10 -2
- package/components/counter/dist/registered.js +10 -2
- package/components/datepicker/demo/api.md +2 -0
- package/components/datepicker/demo/customize.js +0 -2
- package/components/datepicker/demo/customize.md +138 -38
- package/components/datepicker/demo/customize.min.js +36 -22
- package/components/datepicker/demo/index.min.js +36 -4
- package/components/datepicker/dist/index.js +36 -4
- package/components/datepicker/dist/registered.js +36 -4
- package/components/datepicker/dist/src/auro-datepicker.d.ts +2 -0
- package/components/dropdown/demo/customize.min.js +9 -1
- package/components/dropdown/demo/getting-started.min.js +9 -1
- package/components/dropdown/demo/index.min.js +9 -1
- package/components/dropdown/dist/auro-dropdown.d.ts +1 -0
- package/components/dropdown/dist/index.js +9 -1
- package/components/dropdown/dist/registered.js +9 -1
- package/components/form/demo/customize.html +6 -6
- package/components/form/demo/customize.js +19 -0
- package/components/form/demo/customize.md +203 -51
- package/components/form/demo/customize.min.js +542 -69
- package/components/form/demo/getting-started.min.js +470 -69
- package/components/form/demo/index.min.js +470 -69
- package/components/form/demo/registerDemoDeps.min.js +107 -32
- package/components/form/dist/auro-form.d.ts +122 -4
- package/components/form/dist/index.js +363 -37
- package/components/form/dist/registered.js +363 -37
- package/components/input/demo/customize.html +1 -2
- package/components/input/demo/customize.md +54 -53
- package/components/input/demo/customize.min.js +19 -1
- package/components/input/demo/getting-started.min.js +19 -1
- package/components/input/demo/index.min.js +19 -1
- package/components/input/dist/index.js +19 -1
- package/components/input/dist/registered.js +19 -1
- package/components/radio/demo/customize.min.js +1 -1
- package/components/radio/demo/getting-started.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/customize.html +1 -2
- package/components/select/demo/customize.min.js +10 -2
- package/components/select/demo/getting-started.min.js +10 -2
- package/components/select/demo/index.min.js +10 -2
- package/components/select/dist/index.js +10 -2
- package/components/select/dist/registered.js +10 -2
- package/custom-elements.json +1557 -1428
- package/package.json +1 -1
|
@@ -232,21 +232,19 @@
|
|
|
232
232
|
<auro-header level="3" id="localization">Localization</auro-header>
|
|
233
233
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../docs/partials/customize/localization.md) -->
|
|
234
234
|
<!-- The below content is automatically added from ./../docs/partials/customize/localization.md -->
|
|
235
|
-
<p>The component supports complete localization, including visible strings, screen reader announcements and locale
|
|
236
|
-
<auro-header level="4" id="localizationVisibleStrings">Visible
|
|
235
|
+
<p>The component supports complete localization, including visible strings, screen reader announcements, and locale-based date formatting.</p>
|
|
236
|
+
<auro-header level="4" id="localizationVisibleStrings">Visible Strings</auro-header>
|
|
237
237
|
<p>The visible strings rendered in the input are not derived from <code>locale</code> — they are projected through named slots so each language can supply its own translation. Pass a <code><span></code> with the matching <code>slot</code> attribute for every string you need to localize.</p>
|
|
238
238
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-visible-strings.html) -->
|
|
239
|
-
<!-- The below content is automatically added from ./../apiExamples/localization-visible-strings.html -->
|
|
240
|
-
|
|
241
|
-
<
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
<span slot="ariaLabel.password.hide">パスワードを非表示</span>
|
|
247
|
-
</auro-input>
|
|
239
|
+
<!-- The below content is automatically added from ./../apiExamples/localization-visible-strings.html -->
|
|
240
|
+
|
|
241
|
+
<pre class="language-diff"><code class="language-diff"> <auro-input>
|
|
242
|
+
+ <span slot="label">出発日</span>
|
|
243
|
+
+ <span slot="helpText">日付を選択してください</span>
|
|
244
|
+
+ <span slot="optionalLabel">(任意)</span>
|
|
245
|
+
</auro-input></code></pre>
|
|
248
246
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
249
|
-
<auro-header level="4" id="localizationA11yStrings">Screen
|
|
247
|
+
<auro-header level="4" id="localizationA11yStrings">Screen Reader Strings</auro-header>
|
|
250
248
|
<p>Assistive-technology announcements that are not visible in the UI are also exposed as named slots so they can be translated independently. These strings are not derived from <code>locale</code>; supply translated values for every language you support.</p>
|
|
251
249
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-screenreader-strings.html) -->
|
|
252
250
|
<!-- The below content is automatically added from ./../apiExamples/localization-screenreader-strings.html -->
|
|
@@ -261,7 +259,7 @@
|
|
|
261
259
|
</auro-input></code></pre>
|
|
262
260
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
263
261
|
<p class="note"><strong>Note:</strong> Custom validation messages set via <code>setCustomValidity*</code> attributes are also not localized — supply translated strings yourself when using those properties.</p>
|
|
264
|
-
<auro-header level="4" id="localizationDateFormatting">Date
|
|
262
|
+
<auro-header level="4" id="localizationDateFormatting">Date Formatting</auro-header>
|
|
265
263
|
<p>When <code>type="date"</code> is set, the <code>locale</code> attribute drives the date format used by the input mask. Setting <code>locale</code> automatically selects the regional format (for example <code>en-US</code> → <code>mm/dd/yyyy</code>, <code>de-DE</code> → <code>dd.mm.yyyy</code>, <code>ja-JP</code> → <code>yyyy/mm/dd</code>), derived from the browser's <auro-hyperlink href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl" target="_blank">Intl</auro-hyperlink> API, so <code>format</code> does not need to be set manually.</p>
|
|
266
264
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-locale.html) -->
|
|
267
265
|
<!-- The below content is automatically added from ./../apiExamples/localization-locale.html -->
|
|
@@ -298,41 +296,43 @@
|
|
|
298
296
|
<span slot="optionalLabel">(freiwillig)</span>
|
|
299
297
|
</auro-input></code></pre>
|
|
300
298
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
299
|
+
<p>The following live example shows several locale configurations in action:</p>
|
|
301
300
|
<div class="exampleWrapper">
|
|
302
301
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/locale.html) -->
|
|
303
302
|
<!-- The below content is automatically added from ./../apiExamples/locale.html -->
|
|
304
|
-
<
|
|
305
|
-
<auro-header level="4">en-GB Example</auro-header>
|
|
303
|
+
<p class="body-sm"><strong>en-GB</strong></p>
|
|
306
304
|
<auro-input type="date" locale="en-GB">
|
|
307
305
|
<span slot="ariaLabel.clear">Clear All</span>
|
|
308
306
|
<span slot="label">en-GB Date</span>
|
|
309
307
|
<span slot="helpText">Help Text</span>
|
|
310
308
|
</auro-input>
|
|
311
|
-
<
|
|
309
|
+
<p class="body-sm"><strong>en-US</strong></p>
|
|
312
310
|
<auro-input type="date" locale="en-US">
|
|
313
311
|
<span slot="ariaLabel.clear">Clear All</span>
|
|
314
312
|
<span slot="label">en-US Date</span>
|
|
315
313
|
<span slot="helpText">Help Text</span>
|
|
316
314
|
</auro-input>
|
|
317
|
-
<
|
|
315
|
+
<p class="body-sm"><strong>zh-CN</strong></p>
|
|
318
316
|
<auro-input type="date" locale="zh-CN">
|
|
319
317
|
<span slot="ariaLabel.clear">全部清除</span>
|
|
320
318
|
<span slot="label">中文日期</span>
|
|
321
319
|
<span slot="helpText">帮助文本</span>
|
|
322
320
|
<span slot="optionalLabel">(可选)</span>
|
|
323
321
|
</auro-input>
|
|
324
|
-
<
|
|
325
|
-
<auro-input type="date">
|
|
326
|
-
<span slot="ariaLabel.clear">Alles löschen</span>
|
|
327
|
-
<span slot="label">Nächstes `data-locale`-Attributformat (`de-DE` in diesem Fall)</span>
|
|
328
|
-
<span slot="helpText">Hilfetext</span>
|
|
329
|
-
<span slot="optionalLabel">(freiwillig)</span>
|
|
330
|
-
</auro-input>
|
|
331
|
-
<auro-header level="4">en-US with `yyyy.mm.dd` format Example</auro-header>
|
|
322
|
+
<p class="body-sm"><strong>en-US with explicit <code>format="yyyy.mm.dd"</code></strong></p>
|
|
332
323
|
<auro-input type="date" locale="en-US" format="yyyy.mm.dd">
|
|
333
324
|
<span slot="ariaLabel.clear">Clear All</span>
|
|
334
325
|
<span slot="label">en-US with yyyy.mm.dd format</span>
|
|
335
326
|
<span slot="helpText">Help Text</span>
|
|
327
|
+
</auro-input>
|
|
328
|
+
<p class="body-sm"><strong>Inherited de-DE (via <code>data-locale</code>)</strong></p>
|
|
329
|
+
<div data-locale="de-DE">
|
|
330
|
+
<auro-input type="date">
|
|
331
|
+
<span slot="ariaLabel.clear">Alles löschen</span>
|
|
332
|
+
<span slot="label">Abreisedatum (geerbt aus `data-locale="de-DE"`)</span>
|
|
333
|
+
<span slot="helpText">Hilfetext</span>
|
|
334
|
+
<span slot="optionalLabel">(freiwillig)</span>
|
|
335
|
+
</auro-input>
|
|
336
336
|
</div>
|
|
337
337
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
338
338
|
</div>
|
|
@@ -340,42 +340,43 @@
|
|
|
340
340
|
<span slot="trigger">See code</span>
|
|
341
341
|
<!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/locale.html) -->
|
|
342
342
|
<!-- The below code snippet is automatically added from ./../apiExamples/locale.html -->
|
|
343
|
-
<pre class="language-html"><code class="language-html"><
|
|
344
|
-
|
|
345
|
-
<
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
</auro-input>
|
|
343
|
+
<pre class="language-html"><code class="language-html"><p class="body-sm"><strong>en-GB</strong></p>
|
|
344
|
+
<auro-input type="date" locale="en-GB">
|
|
345
|
+
<span slot="ariaLabel.clear">Clear All</span>
|
|
346
|
+
<span slot="label">en-GB Date</span>
|
|
347
|
+
<span slot="helpText">Help Text</span>
|
|
348
|
+
</auro-input>
|
|
350
349
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
350
|
+
<p class="body-sm"><strong>en-US</strong></p>
|
|
351
|
+
<auro-input type="date" locale="en-US">
|
|
352
|
+
<span slot="ariaLabel.clear">Clear All</span>
|
|
353
|
+
<span slot="label">en-US Date</span>
|
|
354
|
+
<span slot="helpText">Help Text</span>
|
|
355
|
+
</auro-input>
|
|
357
356
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
357
|
+
<p class="body-sm"><strong>zh-CN</strong></p>
|
|
358
|
+
<auro-input type="date" locale="zh-CN">
|
|
359
|
+
<span slot="ariaLabel.clear">全部清除</span>
|
|
360
|
+
<span slot="label">中文日期</span>
|
|
361
|
+
<span slot="helpText">帮助文本</span>
|
|
362
|
+
<span slot="optionalLabel">(可选)</span>
|
|
363
|
+
</auro-input>
|
|
365
364
|
|
|
366
|
-
|
|
365
|
+
<p class="body-sm"><strong>en-US with explicit <code>format="yyyy.mm.dd"</code></strong></p>
|
|
366
|
+
<auro-input type="date" locale="en-US" format="yyyy.mm.dd">
|
|
367
|
+
<span slot="ariaLabel.clear">Clear All</span>
|
|
368
|
+
<span slot="label">en-US with yyyy.mm.dd format</span>
|
|
369
|
+
<span slot="helpText">Help Text</span>
|
|
370
|
+
</auro-input>
|
|
371
|
+
|
|
372
|
+
<p class="body-sm"><strong>Inherited de-DE (via <code>data-locale</code>)</strong></p>
|
|
373
|
+
<div data-locale="de-DE">
|
|
367
374
|
<auro-input type="date">
|
|
368
375
|
<span slot="ariaLabel.clear">Alles löschen</span>
|
|
369
|
-
<span slot="label">
|
|
376
|
+
<span slot="label">Abreisedatum (geerbt aus `data-locale="de-DE"`)</span>
|
|
370
377
|
<span slot="helpText">Hilfetext</span>
|
|
371
378
|
<span slot="optionalLabel">(freiwillig)</span>
|
|
372
379
|
</auro-input>
|
|
373
|
-
|
|
374
|
-
<auro-header level="4">en-US with `yyyy.mm.dd` format Example</auro-header>
|
|
375
|
-
<auro-input type="date" locale="en-US" format="yyyy.mm.dd">
|
|
376
|
-
<span slot="ariaLabel.clear">Clear All</span>
|
|
377
|
-
<span slot="label">en-US with yyyy.mm.dd format</span>
|
|
378
|
-
<span slot="helpText">Help Text</span>
|
|
379
380
|
</div></code></pre>
|
|
380
381
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
381
382
|
</auro-accordion>
|
|
@@ -11200,6 +11200,11 @@ class BaseInput extends AuroElement {
|
|
|
11200
11200
|
}
|
|
11201
11201
|
|
|
11202
11202
|
// add attribute for query selectors when auro-input is registered under a custom name
|
|
11203
|
+
// COVERAGE: the body of this branch is unreachable in WTR — connectedCallback
|
|
11204
|
+
// performs the same `setAttribute('auro-input', '')` earlier (see L665-667),
|
|
11205
|
+
// so by the time firstUpdated runs the attribute is already present and the
|
|
11206
|
+
// `!hasAttribute('auro-input')` guard is false. Retained as a defensive
|
|
11207
|
+
// safety net in case connectedCallback is ever short-circuited.
|
|
11203
11208
|
if (this.tagName.toLowerCase() !== 'auro-input' && !this.hasAttribute('auro-input')) {
|
|
11204
11209
|
this.setAttribute('auro-input', '');
|
|
11205
11210
|
}
|
|
@@ -11289,6 +11294,13 @@ class BaseInput extends AuroElement {
|
|
|
11289
11294
|
|
|
11290
11295
|
if (typeToI18n.includes(this.type)) {
|
|
11291
11296
|
this.setCustomValidityForType = i18n(this.lang, this.type);
|
|
11297
|
+
// COVERAGE: this `else if` branch is unreachable in WTR. connectedCallback
|
|
11298
|
+
// (L682) calls configureDataForType, which at L1266-1268 assigns
|
|
11299
|
+
// `this.format = this.util.getDateMaskFromLocale().toLowerCase()` for any
|
|
11300
|
+
// type=date input whose `format` attribute is unset. That runs before
|
|
11301
|
+
// firstUpdated invokes setCustomHelpTextMessage, so `!this.format` is
|
|
11302
|
+
// always false here. Retained as a defensive fallback; the whole function
|
|
11303
|
+
// is @deprecated per AB#1557296 and slated for removal.
|
|
11292
11304
|
} else if (!this.format && this.type === 'date') {
|
|
11293
11305
|
this.setCustomValidityForType = i18n(this.lang, 'dateMMDDYYYY');
|
|
11294
11306
|
} else if (this.dateFormatMap[this.format]) {
|
|
@@ -11766,6 +11778,12 @@ class BaseInput extends AuroElement {
|
|
|
11766
11778
|
*/
|
|
11767
11779
|
get placeholderStr() {
|
|
11768
11780
|
if (!this.placeholder && this.type === 'date') {
|
|
11781
|
+
// COVERAGE: the `'MM/DD/YYYY'` literal fallback is unreachable in WTR.
|
|
11782
|
+
// connectedCallback (L682) calls configureDataForType, which at L1266-1268
|
|
11783
|
+
// assigns `this.format = this.util.getDateMaskFromLocale().toLowerCase()`
|
|
11784
|
+
// when type=date and format is unset. That runs before the first render
|
|
11785
|
+
// reads this getter, so the ternary's truthy arm always wins. Retained
|
|
11786
|
+
// as a defensive fallback for direct getter calls before connection.
|
|
11769
11787
|
return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
|
|
11770
11788
|
}
|
|
11771
11789
|
return this.placeholder || "";
|
|
@@ -12257,7 +12275,7 @@ class AuroHelpText extends i$3 {
|
|
|
12257
12275
|
}
|
|
12258
12276
|
}
|
|
12259
12277
|
|
|
12260
|
-
var formkitVersion = '
|
|
12278
|
+
var formkitVersion = '202606232113';
|
|
12261
12279
|
|
|
12262
12280
|
/**
|
|
12263
12281
|
* @license
|
|
@@ -11200,6 +11200,11 @@ class BaseInput extends AuroElement {
|
|
|
11200
11200
|
}
|
|
11201
11201
|
|
|
11202
11202
|
// add attribute for query selectors when auro-input is registered under a custom name
|
|
11203
|
+
// COVERAGE: the body of this branch is unreachable in WTR — connectedCallback
|
|
11204
|
+
// performs the same `setAttribute('auro-input', '')` earlier (see L665-667),
|
|
11205
|
+
// so by the time firstUpdated runs the attribute is already present and the
|
|
11206
|
+
// `!hasAttribute('auro-input')` guard is false. Retained as a defensive
|
|
11207
|
+
// safety net in case connectedCallback is ever short-circuited.
|
|
11203
11208
|
if (this.tagName.toLowerCase() !== 'auro-input' && !this.hasAttribute('auro-input')) {
|
|
11204
11209
|
this.setAttribute('auro-input', '');
|
|
11205
11210
|
}
|
|
@@ -11289,6 +11294,13 @@ class BaseInput extends AuroElement {
|
|
|
11289
11294
|
|
|
11290
11295
|
if (typeToI18n.includes(this.type)) {
|
|
11291
11296
|
this.setCustomValidityForType = i18n(this.lang, this.type);
|
|
11297
|
+
// COVERAGE: this `else if` branch is unreachable in WTR. connectedCallback
|
|
11298
|
+
// (L682) calls configureDataForType, which at L1266-1268 assigns
|
|
11299
|
+
// `this.format = this.util.getDateMaskFromLocale().toLowerCase()` for any
|
|
11300
|
+
// type=date input whose `format` attribute is unset. That runs before
|
|
11301
|
+
// firstUpdated invokes setCustomHelpTextMessage, so `!this.format` is
|
|
11302
|
+
// always false here. Retained as a defensive fallback; the whole function
|
|
11303
|
+
// is @deprecated per AB#1557296 and slated for removal.
|
|
11292
11304
|
} else if (!this.format && this.type === 'date') {
|
|
11293
11305
|
this.setCustomValidityForType = i18n(this.lang, 'dateMMDDYYYY');
|
|
11294
11306
|
} else if (this.dateFormatMap[this.format]) {
|
|
@@ -11766,6 +11778,12 @@ class BaseInput extends AuroElement {
|
|
|
11766
11778
|
*/
|
|
11767
11779
|
get placeholderStr() {
|
|
11768
11780
|
if (!this.placeholder && this.type === 'date') {
|
|
11781
|
+
// COVERAGE: the `'MM/DD/YYYY'` literal fallback is unreachable in WTR.
|
|
11782
|
+
// connectedCallback (L682) calls configureDataForType, which at L1266-1268
|
|
11783
|
+
// assigns `this.format = this.util.getDateMaskFromLocale().toLowerCase()`
|
|
11784
|
+
// when type=date and format is unset. That runs before the first render
|
|
11785
|
+
// reads this getter, so the ternary's truthy arm always wins. Retained
|
|
11786
|
+
// as a defensive fallback for direct getter calls before connection.
|
|
11769
11787
|
return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
|
|
11770
11788
|
}
|
|
11771
11789
|
return this.placeholder || "";
|
|
@@ -12257,7 +12275,7 @@ class AuroHelpText extends i$3 {
|
|
|
12257
12275
|
}
|
|
12258
12276
|
}
|
|
12259
12277
|
|
|
12260
|
-
var formkitVersion = '
|
|
12278
|
+
var formkitVersion = '202606232113';
|
|
12261
12279
|
|
|
12262
12280
|
/**
|
|
12263
12281
|
* @license
|
|
@@ -11200,6 +11200,11 @@ class BaseInput extends AuroElement {
|
|
|
11200
11200
|
}
|
|
11201
11201
|
|
|
11202
11202
|
// add attribute for query selectors when auro-input is registered under a custom name
|
|
11203
|
+
// COVERAGE: the body of this branch is unreachable in WTR — connectedCallback
|
|
11204
|
+
// performs the same `setAttribute('auro-input', '')` earlier (see L665-667),
|
|
11205
|
+
// so by the time firstUpdated runs the attribute is already present and the
|
|
11206
|
+
// `!hasAttribute('auro-input')` guard is false. Retained as a defensive
|
|
11207
|
+
// safety net in case connectedCallback is ever short-circuited.
|
|
11203
11208
|
if (this.tagName.toLowerCase() !== 'auro-input' && !this.hasAttribute('auro-input')) {
|
|
11204
11209
|
this.setAttribute('auro-input', '');
|
|
11205
11210
|
}
|
|
@@ -11289,6 +11294,13 @@ class BaseInput extends AuroElement {
|
|
|
11289
11294
|
|
|
11290
11295
|
if (typeToI18n.includes(this.type)) {
|
|
11291
11296
|
this.setCustomValidityForType = i18n(this.lang, this.type);
|
|
11297
|
+
// COVERAGE: this `else if` branch is unreachable in WTR. connectedCallback
|
|
11298
|
+
// (L682) calls configureDataForType, which at L1266-1268 assigns
|
|
11299
|
+
// `this.format = this.util.getDateMaskFromLocale().toLowerCase()` for any
|
|
11300
|
+
// type=date input whose `format` attribute is unset. That runs before
|
|
11301
|
+
// firstUpdated invokes setCustomHelpTextMessage, so `!this.format` is
|
|
11302
|
+
// always false here. Retained as a defensive fallback; the whole function
|
|
11303
|
+
// is @deprecated per AB#1557296 and slated for removal.
|
|
11292
11304
|
} else if (!this.format && this.type === 'date') {
|
|
11293
11305
|
this.setCustomValidityForType = i18n(this.lang, 'dateMMDDYYYY');
|
|
11294
11306
|
} else if (this.dateFormatMap[this.format]) {
|
|
@@ -11766,6 +11778,12 @@ class BaseInput extends AuroElement {
|
|
|
11766
11778
|
*/
|
|
11767
11779
|
get placeholderStr() {
|
|
11768
11780
|
if (!this.placeholder && this.type === 'date') {
|
|
11781
|
+
// COVERAGE: the `'MM/DD/YYYY'` literal fallback is unreachable in WTR.
|
|
11782
|
+
// connectedCallback (L682) calls configureDataForType, which at L1266-1268
|
|
11783
|
+
// assigns `this.format = this.util.getDateMaskFromLocale().toLowerCase()`
|
|
11784
|
+
// when type=date and format is unset. That runs before the first render
|
|
11785
|
+
// reads this getter, so the ternary's truthy arm always wins. Retained
|
|
11786
|
+
// as a defensive fallback for direct getter calls before connection.
|
|
11769
11787
|
return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
|
|
11770
11788
|
}
|
|
11771
11789
|
return this.placeholder || "";
|
|
@@ -12257,7 +12275,7 @@ class AuroHelpText extends i$3 {
|
|
|
12257
12275
|
}
|
|
12258
12276
|
}
|
|
12259
12277
|
|
|
12260
|
-
var formkitVersion = '
|
|
12278
|
+
var formkitVersion = '202606232113';
|
|
12261
12279
|
|
|
12262
12280
|
/**
|
|
12263
12281
|
* @license
|
|
@@ -11142,6 +11142,11 @@ class BaseInput extends AuroElement {
|
|
|
11142
11142
|
}
|
|
11143
11143
|
|
|
11144
11144
|
// add attribute for query selectors when auro-input is registered under a custom name
|
|
11145
|
+
// COVERAGE: the body of this branch is unreachable in WTR — connectedCallback
|
|
11146
|
+
// performs the same `setAttribute('auro-input', '')` earlier (see L665-667),
|
|
11147
|
+
// so by the time firstUpdated runs the attribute is already present and the
|
|
11148
|
+
// `!hasAttribute('auro-input')` guard is false. Retained as a defensive
|
|
11149
|
+
// safety net in case connectedCallback is ever short-circuited.
|
|
11145
11150
|
if (this.tagName.toLowerCase() !== 'auro-input' && !this.hasAttribute('auro-input')) {
|
|
11146
11151
|
this.setAttribute('auro-input', '');
|
|
11147
11152
|
}
|
|
@@ -11231,6 +11236,13 @@ class BaseInput extends AuroElement {
|
|
|
11231
11236
|
|
|
11232
11237
|
if (typeToI18n.includes(this.type)) {
|
|
11233
11238
|
this.setCustomValidityForType = i18n(this.lang, this.type);
|
|
11239
|
+
// COVERAGE: this `else if` branch is unreachable in WTR. connectedCallback
|
|
11240
|
+
// (L682) calls configureDataForType, which at L1266-1268 assigns
|
|
11241
|
+
// `this.format = this.util.getDateMaskFromLocale().toLowerCase()` for any
|
|
11242
|
+
// type=date input whose `format` attribute is unset. That runs before
|
|
11243
|
+
// firstUpdated invokes setCustomHelpTextMessage, so `!this.format` is
|
|
11244
|
+
// always false here. Retained as a defensive fallback; the whole function
|
|
11245
|
+
// is @deprecated per AB#1557296 and slated for removal.
|
|
11234
11246
|
} else if (!this.format && this.type === 'date') {
|
|
11235
11247
|
this.setCustomValidityForType = i18n(this.lang, 'dateMMDDYYYY');
|
|
11236
11248
|
} else if (this.dateFormatMap[this.format]) {
|
|
@@ -11708,6 +11720,12 @@ class BaseInput extends AuroElement {
|
|
|
11708
11720
|
*/
|
|
11709
11721
|
get placeholderStr() {
|
|
11710
11722
|
if (!this.placeholder && this.type === 'date') {
|
|
11723
|
+
// COVERAGE: the `'MM/DD/YYYY'` literal fallback is unreachable in WTR.
|
|
11724
|
+
// connectedCallback (L682) calls configureDataForType, which at L1266-1268
|
|
11725
|
+
// assigns `this.format = this.util.getDateMaskFromLocale().toLowerCase()`
|
|
11726
|
+
// when type=date and format is unset. That runs before the first render
|
|
11727
|
+
// reads this getter, so the ternary's truthy arm always wins. Retained
|
|
11728
|
+
// as a defensive fallback for direct getter calls before connection.
|
|
11711
11729
|
return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
|
|
11712
11730
|
}
|
|
11713
11731
|
return this.placeholder || "";
|
|
@@ -12199,7 +12217,7 @@ class AuroHelpText extends LitElement {
|
|
|
12199
12217
|
}
|
|
12200
12218
|
}
|
|
12201
12219
|
|
|
12202
|
-
var formkitVersion = '
|
|
12220
|
+
var formkitVersion = '202606232113';
|
|
12203
12221
|
|
|
12204
12222
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12205
12223
|
// See LICENSE in the project root for license information.
|
|
@@ -11142,6 +11142,11 @@ class BaseInput extends AuroElement {
|
|
|
11142
11142
|
}
|
|
11143
11143
|
|
|
11144
11144
|
// add attribute for query selectors when auro-input is registered under a custom name
|
|
11145
|
+
// COVERAGE: the body of this branch is unreachable in WTR — connectedCallback
|
|
11146
|
+
// performs the same `setAttribute('auro-input', '')` earlier (see L665-667),
|
|
11147
|
+
// so by the time firstUpdated runs the attribute is already present and the
|
|
11148
|
+
// `!hasAttribute('auro-input')` guard is false. Retained as a defensive
|
|
11149
|
+
// safety net in case connectedCallback is ever short-circuited.
|
|
11145
11150
|
if (this.tagName.toLowerCase() !== 'auro-input' && !this.hasAttribute('auro-input')) {
|
|
11146
11151
|
this.setAttribute('auro-input', '');
|
|
11147
11152
|
}
|
|
@@ -11231,6 +11236,13 @@ class BaseInput extends AuroElement {
|
|
|
11231
11236
|
|
|
11232
11237
|
if (typeToI18n.includes(this.type)) {
|
|
11233
11238
|
this.setCustomValidityForType = i18n(this.lang, this.type);
|
|
11239
|
+
// COVERAGE: this `else if` branch is unreachable in WTR. connectedCallback
|
|
11240
|
+
// (L682) calls configureDataForType, which at L1266-1268 assigns
|
|
11241
|
+
// `this.format = this.util.getDateMaskFromLocale().toLowerCase()` for any
|
|
11242
|
+
// type=date input whose `format` attribute is unset. That runs before
|
|
11243
|
+
// firstUpdated invokes setCustomHelpTextMessage, so `!this.format` is
|
|
11244
|
+
// always false here. Retained as a defensive fallback; the whole function
|
|
11245
|
+
// is @deprecated per AB#1557296 and slated for removal.
|
|
11234
11246
|
} else if (!this.format && this.type === 'date') {
|
|
11235
11247
|
this.setCustomValidityForType = i18n(this.lang, 'dateMMDDYYYY');
|
|
11236
11248
|
} else if (this.dateFormatMap[this.format]) {
|
|
@@ -11708,6 +11720,12 @@ class BaseInput extends AuroElement {
|
|
|
11708
11720
|
*/
|
|
11709
11721
|
get placeholderStr() {
|
|
11710
11722
|
if (!this.placeholder && this.type === 'date') {
|
|
11723
|
+
// COVERAGE: the `'MM/DD/YYYY'` literal fallback is unreachable in WTR.
|
|
11724
|
+
// connectedCallback (L682) calls configureDataForType, which at L1266-1268
|
|
11725
|
+
// assigns `this.format = this.util.getDateMaskFromLocale().toLowerCase()`
|
|
11726
|
+
// when type=date and format is unset. That runs before the first render
|
|
11727
|
+
// reads this getter, so the ternary's truthy arm always wins. Retained
|
|
11728
|
+
// as a defensive fallback for direct getter calls before connection.
|
|
11711
11729
|
return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
|
|
11712
11730
|
}
|
|
11713
11731
|
return this.placeholder || "";
|
|
@@ -12199,7 +12217,7 @@ class AuroHelpText extends LitElement {
|
|
|
12199
12217
|
}
|
|
12200
12218
|
}
|
|
12201
12219
|
|
|
12202
|
-
var formkitVersion = '
|
|
12220
|
+
var formkitVersion = '202606232113';
|
|
12203
12221
|
|
|
12204
12222
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12205
12223
|
// See LICENSE in the project root for license information.
|
|
@@ -1212,7 +1212,7 @@ class AuroHelpText extends i$2 {
|
|
|
1212
1212
|
}
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
|
-
var formkitVersion = '
|
|
1215
|
+
var formkitVersion = '202606232113';
|
|
1216
1216
|
|
|
1217
1217
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1218
1218
|
// See LICENSE in the project root for license information.
|
|
@@ -1212,7 +1212,7 @@ class AuroHelpText extends i$2 {
|
|
|
1212
1212
|
}
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
|
-
var formkitVersion = '
|
|
1215
|
+
var formkitVersion = '202606232113';
|
|
1216
1216
|
|
|
1217
1217
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1218
1218
|
// See LICENSE in the project root for license information.
|
|
@@ -1212,7 +1212,7 @@ class AuroHelpText extends i$2 {
|
|
|
1212
1212
|
}
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
|
-
var formkitVersion = '
|
|
1215
|
+
var formkitVersion = '202606232113';
|
|
1216
1216
|
|
|
1217
1217
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1218
1218
|
// See LICENSE in the project root for license information.
|
|
@@ -1151,7 +1151,7 @@ class AuroHelpText extends LitElement {
|
|
|
1151
1151
|
}
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
-
var formkitVersion = '
|
|
1154
|
+
var formkitVersion = '202606232113';
|
|
1155
1155
|
|
|
1156
1156
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1157
1157
|
// See LICENSE in the project root for license information.
|
|
@@ -1151,7 +1151,7 @@ class AuroHelpText extends LitElement {
|
|
|
1151
1151
|
}
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
-
var formkitVersion = '
|
|
1154
|
+
var formkitVersion = '202606232113';
|
|
1155
1155
|
|
|
1156
1156
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
1157
1157
|
// See LICENSE in the project root for license information.
|
|
@@ -41,12 +41,11 @@
|
|
|
41
41
|
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-hyperlink@latest/+esm" type="module"></script>
|
|
42
42
|
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-icon@latest/+esm" type="module"></script>
|
|
43
43
|
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-button@latest/+esm" type="module"></script>
|
|
44
|
-
<script type="module">
|
|
44
|
+
<script type="module" data-demo-script="true">
|
|
45
45
|
import { renderPage } from './demo-support.min.js';
|
|
46
46
|
await renderPage('./customize.md');
|
|
47
47
|
import { initExamples } from "./customize.min.js";
|
|
48
48
|
initExamples();
|
|
49
49
|
</script>
|
|
50
|
-
<script src="./customize.min.js" data-demo-script="true" type="module"></script>
|
|
51
50
|
</body>
|
|
52
51
|
</html>
|
|
@@ -4961,7 +4961,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
4961
4961
|
}
|
|
4962
4962
|
};
|
|
4963
4963
|
|
|
4964
|
-
var formkitVersion$1 = '
|
|
4964
|
+
var formkitVersion$1 = '202606232113';
|
|
4965
4965
|
|
|
4966
4966
|
class AuroElement extends i$2 {
|
|
4967
4967
|
static get properties() {
|
|
@@ -5912,6 +5912,14 @@ class AuroDropdown extends AuroElement {
|
|
|
5912
5912
|
};
|
|
5913
5913
|
this.addEventListener('keydown', this._bibTabHandler);
|
|
5914
5914
|
|
|
5915
|
+
// Suppress AuroFloatingUI's auto-hide-on-focus-loss while the
|
|
5916
|
+
// desktopModal trap owns focus management. Without this, the very
|
|
5917
|
+
// first focus move into the bib (from the RAF below) triggers
|
|
5918
|
+
// handleFocusLoss → hideBib, tearing down the trap before the
|
|
5919
|
+
// user can press Tab.
|
|
5920
|
+
this._priorNoHideOnFocusLoss = this.noHideOnThisFocusLoss;
|
|
5921
|
+
this.noHideOnThisFocusLoss = true;
|
|
5922
|
+
|
|
5915
5923
|
// Move initial focus into the bib content, matching FocusTrap behavior
|
|
5916
5924
|
requestAnimationFrame(() => {
|
|
5917
5925
|
const focusables = getFocusableElements(this.bibContent);
|
|
@@ -6974,7 +6982,7 @@ class AuroHelpText extends i$2 {
|
|
|
6974
6982
|
}
|
|
6975
6983
|
}
|
|
6976
6984
|
|
|
6977
|
-
var formkitVersion = '
|
|
6985
|
+
var formkitVersion = '202606232113';
|
|
6978
6986
|
|
|
6979
6987
|
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}`;
|
|
6980
6988
|
|
|
@@ -4992,7 +4992,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
4992
4992
|
}
|
|
4993
4993
|
};
|
|
4994
4994
|
|
|
4995
|
-
var formkitVersion$1 = '
|
|
4995
|
+
var formkitVersion$1 = '202606232113';
|
|
4996
4996
|
|
|
4997
4997
|
class AuroElement extends i$2 {
|
|
4998
4998
|
static get properties() {
|
|
@@ -5943,6 +5943,14 @@ class AuroDropdown extends AuroElement {
|
|
|
5943
5943
|
};
|
|
5944
5944
|
this.addEventListener('keydown', this._bibTabHandler);
|
|
5945
5945
|
|
|
5946
|
+
// Suppress AuroFloatingUI's auto-hide-on-focus-loss while the
|
|
5947
|
+
// desktopModal trap owns focus management. Without this, the very
|
|
5948
|
+
// first focus move into the bib (from the RAF below) triggers
|
|
5949
|
+
// handleFocusLoss → hideBib, tearing down the trap before the
|
|
5950
|
+
// user can press Tab.
|
|
5951
|
+
this._priorNoHideOnFocusLoss = this.noHideOnThisFocusLoss;
|
|
5952
|
+
this.noHideOnThisFocusLoss = true;
|
|
5953
|
+
|
|
5946
5954
|
// Move initial focus into the bib content, matching FocusTrap behavior
|
|
5947
5955
|
requestAnimationFrame(() => {
|
|
5948
5956
|
const focusables = getFocusableElements(this.bibContent);
|
|
@@ -7005,7 +7013,7 @@ class AuroHelpText extends i$2 {
|
|
|
7005
7013
|
}
|
|
7006
7014
|
}
|
|
7007
7015
|
|
|
7008
|
-
var formkitVersion = '
|
|
7016
|
+
var formkitVersion = '202606232113';
|
|
7009
7017
|
|
|
7010
7018
|
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}`;
|
|
7011
7019
|
|