@aurodesignsystem-dev/auro-formkit 0.0.0-pr1505.0 → 0.0.0-pr1506.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.
Files changed (55) hide show
  1. package/components/checkbox/demo/customize.min.js +1 -1
  2. package/components/checkbox/demo/getting-started.min.js +1 -1
  3. package/components/checkbox/demo/index.min.js +1 -1
  4. package/components/checkbox/dist/index.js +1 -1
  5. package/components/checkbox/dist/registered.js +1 -1
  6. package/components/combobox/demo/customize.min.js +120 -139
  7. package/components/combobox/demo/getting-started.min.js +120 -139
  8. package/components/combobox/demo/index.min.js +120 -139
  9. package/components/combobox/dist/auro-combobox.d.ts +9 -0
  10. package/components/combobox/dist/index.js +120 -139
  11. package/components/combobox/dist/registered.js +120 -139
  12. package/components/counter/demo/customize.min.js +2 -2
  13. package/components/counter/demo/index.min.js +2 -2
  14. package/components/counter/dist/index.js +2 -2
  15. package/components/counter/dist/registered.js +2 -2
  16. package/components/datepicker/demo/api.md +0 -2
  17. package/components/datepicker/demo/customize.md +33 -195
  18. package/components/datepicker/demo/customize.min.js +37 -43
  19. package/components/datepicker/demo/index.min.js +36 -35
  20. package/components/datepicker/dist/index.js +36 -35
  21. package/components/datepicker/dist/registered.js +36 -35
  22. package/components/datepicker/dist/src/auro-datepicker.d.ts +0 -2
  23. package/components/dropdown/demo/customize.min.js +1 -1
  24. package/components/dropdown/demo/getting-started.min.js +1 -1
  25. package/components/dropdown/demo/index.min.js +1 -1
  26. package/components/dropdown/dist/index.js +1 -1
  27. package/components/dropdown/dist/registered.js +1 -1
  28. package/components/form/demo/customize.min.js +325 -230
  29. package/components/form/demo/getting-started.min.js +325 -230
  30. package/components/form/demo/index.min.js +325 -230
  31. package/components/form/demo/registerDemoDeps.min.js +325 -230
  32. package/components/input/demo/customize.md +55 -56
  33. package/components/input/demo/customize.min.js +32 -26
  34. package/components/input/demo/getting-started.min.js +32 -26
  35. package/components/input/demo/index.md +2 -2
  36. package/components/input/demo/index.min.js +32 -26
  37. package/components/input/dist/index.js +32 -26
  38. package/components/input/dist/registered.js +32 -26
  39. package/components/radio/demo/customize.min.js +1 -1
  40. package/components/radio/demo/getting-started.min.js +1 -1
  41. package/components/radio/demo/index.min.js +1 -1
  42. package/components/radio/dist/index.js +1 -1
  43. package/components/radio/dist/registered.js +1 -1
  44. package/components/select/demo/api.md +1 -0
  45. package/components/select/demo/customize.md +71 -0
  46. package/components/select/demo/customize.min.js +133 -26
  47. package/components/select/demo/getting-started.min.js +133 -26
  48. package/components/select/demo/index.min.js +133 -26
  49. package/components/select/demo/keyboard-behavior.md +18 -0
  50. package/components/select/dist/auro-select.d.ts +38 -2
  51. package/components/select/dist/index.js +133 -26
  52. package/components/select/dist/registered.js +133 -26
  53. package/components/select/dist/selectUtils.d.ts +12 -0
  54. package/custom-elements.json +114 -10
  55. package/package.json +1 -1
@@ -255,9 +255,9 @@
255
255
  <auro-header level="3" id="localization">Localization</auro-header>
256
256
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../docs/partials/customize/localization.md) -->
257
257
  <!-- The below content is automatically added from ./../docs/partials/customize/localization.md -->
258
- <p>The component supports complete localization, including visible strings, screen reader announcements, and locale-based date formatting.</p>
258
+ <p>The component supports complete localization, including visible strings, screen reader announcements and locale based date formatting.</p>
259
259
  <auro-header level="4" id="localizationTrigger">Trigger</auro-header>
260
- <auro-header level="5" id="localizationTriggerVisibleStrings">Visible Strings</auro-header>
260
+ <auro-header level="4" id="localizationTriggerVisibleStrings">Trigger Visible strings</auro-header>
261
261
  <p>The visible strings rendered in the input, trigger, and fullscreen bib are not derived from <code>locale</code> — they are projected through named slots so each language can supply its own translation. Pass a <code>&lt;span&gt;</code> with the matching <code>slot</code> attribute for every string you need to localize.</p>
262
262
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-visible-strings.html) -->
263
263
  <!-- The below content is automatically added from ./../apiExamples/localization-visible-strings.html -->
@@ -265,13 +265,13 @@
265
265
  <pre class="language-diff"><code class="language-diff"> &lt;auro-datepicker&gt;
266
266
  + &lt;span slot="fromLabel"&gt;Abreisedatum&lt;/span&gt;
267
267
  + &lt;span slot="helpText"&gt;Wählen Sie ein Datum&lt;/span&gt;
268
- + &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
268
+ + &lt;span slot="optionalLabel"&gt;(freiwillig)&lt;/span&gt;
269
269
  + &lt;span slot="bib.fullscreen.headline"&gt;Datum auswählen&lt;/span&gt;
270
270
  + &lt;span slot="bib.fullscreen.fromLabel"&gt;Abreisedatum&lt;/span&gt;
271
271
  &lt;/auro-datepicker&gt;</code></pre>
272
272
  <!-- AURO-GENERATED-CONTENT:END -->
273
273
  <auro-header level="4" id="localizationCalendar">Calendar</auro-header>
274
- <auro-header level="5" id="localizationCalendarVisibleStrings">Visible Strings</auro-header>
274
+ <auro-header level="4" id="localizationCalendarVisibleStrings">Visible strings</auro-header>
275
275
  <p>By default, the calendar weekday names rendered above the day grid and the month names rendered in the calendar header are derived from the active <code>locale</code> using 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 they update automatically when <code>locale</code> changes. Use the <code>monthNames</code> attribute to override the derived month names — for example, to supply a translation the browser does not produce or to support a locale the browser does not recognize.</p>
276
276
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-calendar-strings.html) -->
277
277
  <!-- The below content is automatically added from ./../apiExamples/localization-calendar-strings.html -->
@@ -280,64 +280,9 @@
280
280
  + &lt;auro-datepicker monthNames='["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]'&gt;
281
281
  &lt;span slot="fromLabel"&gt;Abreisedatum&lt;/span&gt;
282
282
  &lt;span slot="helpText"&gt;Wählen Sie ein Datum&lt;/span&gt;
283
- &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
284
283
  &lt;/auro-datepicker&gt;</code></pre>
285
284
  <!-- AURO-GENERATED-CONTENT:END -->
286
- <p>The following live example sets <code>monthNames</code> imperatively on an <code>es-MX</code> picker:</p>
287
- <div class="exampleWrapper">
288
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization.html) -->
289
- <!-- The below content is automatically added from ./../apiExamples/localization.html -->
290
- <auro-datepicker
291
- range
292
- locale="es-MX"
293
- rangeLabelStart="fecha de salida"
294
- rangeLabelEnd="fecha de regreso"
295
- rangeLabelBeforeRange="antes de la salida"
296
- rangeLabelInRange="entre vuelos"
297
- rangeLabelAfterRange="después del regreso"
298
- navLabelPrevMonth="Ir al mes anterior"
299
- navLabelNextMonth="Ir al mes siguiente"
300
- calendarGridLabel="Días del mes del calendario"
301
- id="localizationExample">
302
- <span slot="fromLabel">Salida</span>
303
- <span slot="toLabel">Regreso</span>
304
- <span slot="helpText">Seleccione un rango de fechas</span>
305
- <span slot="optionalFromLabel">(opcional)</span>
306
- <span slot="optionalToLabel">(opcional)</span>
307
- <span slot="bib.fullscreen.headline">Seleccione fechas</span>
308
- <span slot="bib.fullscreen.fromLabel">Salida</span>
309
- <span slot="bib.fullscreen.toLabel">Regreso</span>
310
- </auro-datepicker>
311
- <!-- AURO-GENERATED-CONTENT:END -->
312
- </div>
313
- <auro-accordion alignRight>
314
- <span slot="trigger">See code</span>
315
- <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/localization.html) -->
316
- <!-- The below code snippet is automatically added from ./../apiExamples/localization.html -->
317
- <pre class="language-html"><code class="language-html">&lt;auro-datepicker
318
- range
319
- locale="es-MX"
320
- rangeLabelStart="fecha de salida"
321
- rangeLabelEnd="fecha de regreso"
322
- rangeLabelBeforeRange="antes de la salida"
323
- rangeLabelInRange="entre vuelos"
324
- rangeLabelAfterRange="después del regreso"
325
- navLabelPrevMonth="Ir al mes anterior"
326
- navLabelNextMonth="Ir al mes siguiente"
327
- calendarGridLabel="Días del mes del calendario"
328
- id="localizationExample"&gt;
329
- &lt;span slot="fromLabel"&gt;Salida&lt;/span&gt;
330
- &lt;span slot="toLabel"&gt;Regreso&lt;/span&gt;
331
- &lt;span slot="helpText"&gt;Seleccione un rango de fechas&lt;/span&gt;
332
- &lt;span slot="optionalFromLabel"&gt;(opcional)&lt;/span&gt;
333
- &lt;span slot="optionalToLabel"&gt;(opcional)&lt;/span&gt;
334
- &lt;span slot="bib.fullscreen.headline"&gt;Seleccione fechas&lt;/span&gt;
335
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Salida&lt;/span&gt;
336
- &lt;span slot="bib.fullscreen.toLabel"&gt;Regreso&lt;/span&gt;
337
- &lt;/auro-datepicker&gt;</code></pre>
338
- <!-- AURO-GENERATED-CONTENT:END -->
339
- </auro-accordion>
340
- <auro-header level="5" id="localizationCalendarA11yStrings">Screen Reader Strings</auro-header>
285
+ <auro-header level="4" id="localizationCalendarA11yStrings">Screen reader strings</auro-header>
341
286
  <p>Assistive-technology announcements — range descriptors (<code>rangeLabelStart</code>, <code>rangeLabelEnd</code>, <code>rangeLabelBeforeRange</code>, <code>rangeLabelInRange</code>, <code>rangeLabelAfterRange</code>), month navigation labels (<code>navLabelPrevMonth</code>, <code>navLabelNextMonth</code>), and the calendar grid label (<code>calendarGridLabel</code>) — are exposed as individual attributes so they can be translated independently of the visible UI. These strings are not derived from <code>locale</code>; supply translated values for every language you support.</p>
342
287
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-screenreader-strings.html) -->
343
288
  <!-- The below content is automatically added from ./../apiExamples/localization-screenreader-strings.html -->
@@ -356,11 +301,9 @@
356
301
  &lt;span slot="fromLabel"&gt;Abreise&lt;/span&gt;
357
302
  &lt;span slot="toLabel"&gt;Rückkehr&lt;/span&gt;
358
303
  &lt;span slot="helpText"&gt;Wählen Sie einen Zeitraum&lt;/span&gt;
359
- &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
360
- &lt;span slot="optionalToLabel"&gt;(freiwillig)&lt;/span&gt;
361
304
  &lt;/auro-datepicker&gt;</code></pre>
362
305
  <!-- AURO-GENERATED-CONTENT:END -->
363
- <auro-header level="4" id="localizationDateFormatting">Date Formatting</auro-header>
306
+ <auro-header level="4" id="localizationDateFormatting">Date formatting</auro-header>
364
307
  <p>The <code>locale</code> attribute drives the date format used by the input and the calendar. 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 <code>Intl</code> API, so <code>format</code> does not need to be set manually.</p>
365
308
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/localization-locale.html) -->
366
309
  <!-- The below content is automatically added from ./../apiExamples/localization-locale.html -->
@@ -369,7 +312,7 @@
369
312
  + &lt;auro-datepicker locale="de-DE"&gt;
370
313
  &lt;span slot="fromLabel"&gt;Deutsches Datum&lt;/span&gt;
371
314
  &lt;span slot="helpText"&gt;Hilfetext&lt;/span&gt;
372
- &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
315
+ &lt;span slot="optionalLabel"&gt;(freiwillig)&lt;/span&gt;
373
316
  &lt;/auro-datepicker&gt;</code></pre>
374
317
  <!-- AURO-GENERATED-CONTENT:END -->
375
318
  <p>If no <code>locale</code> attribute is present, the component walks up the DOM looking for the nearest ancestor with a <code>data-locale</code> attribute; if none is found, it defaults to <code>en-US</code>.</p>
@@ -380,7 +323,7 @@
380
323
  &lt;auro-datepicker&gt;
381
324
  &lt;span slot="fromLabel"&gt;継承された ja-JP 日付形式&lt;/span&gt;
382
325
  &lt;span slot="helpText"&gt;ヘルプテキスト&lt;/span&gt;
383
- &lt;span slot="optionalFromLabel"&gt;(任意)&lt;/span&gt;
326
+ &lt;span slot="optionalLabel"&gt;(任意)&lt;/span&gt;
384
327
  &lt;/auro-datepicker&gt;
385
328
  + &lt;/div&gt;</code></pre>
386
329
  <!-- AURO-GENERATED-CONTENT:END -->
@@ -393,15 +336,14 @@
393
336
  + format="mm/dd/yyyy"&gt;
394
337
  &lt;span slot="fromLabel"&gt;Deutsches Datum mit mm/dd/yyyy-Format&lt;/span&gt;
395
338
  &lt;span slot="helpText"&gt;Hilfetext&lt;/span&gt;
396
- &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
339
+ &lt;span slot="optionalLabel"&gt;(freiwillig)&lt;/span&gt;
397
340
  &lt;/auro-datepicker&gt;</code></pre>
398
341
  <!-- AURO-GENERATED-CONTENT:END -->
399
- <p>The following live example shows several locale configurations in action:</p>
400
342
  <div class="exampleWrapper">
401
343
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/locale.html) -->
402
344
  <!-- The below content is automatically added from ./../apiExamples/locale.html -->
403
345
  <div data-locale="de-DE">
404
- <p class="body-sm"><strong>de-DE</strong></p>
346
+ <auro-header level="4" >de-DE Example</auro-header>
405
347
  <auro-datepicker
406
348
  locale="de-DE"
407
349
  range
@@ -413,16 +355,11 @@
413
355
  navLabelPrevMonth="Vorheriger Monat"
414
356
  navLabelNextMonth="Nächster Monat"
415
357
  calendarGridLabel="Kalendertage des Monats">
416
- <span slot="fromLabel">Abreisedatum</span>
417
- <span slot="toLabel">Rückkehrdatum</span>
358
+ <span slot="fromLabel">Deutsches Datum</span>
418
359
  <span slot="helpText">Hilfetext</span>
419
- <span slot="optionalFromLabel">(freiwillig)</span>
420
- <span slot="optionalToLabel">(freiwillig)</span>
421
- <span slot="bib.fullscreen.headline">Datum auswählen</span>
422
- <span slot="bib.fullscreen.fromLabel">Abreisedatum</span>
423
- <span slot="bib.fullscreen.toLabel">Rückkehrdatum</span>
360
+ <span slot="optionalLabel">(freiwillig)</span>
424
361
  </auro-datepicker>
425
- <p class="body-sm"><strong>zh-CN</strong></p>
362
+ <auro-header level="4" >zh-CN Example</auro-header>
426
363
  <auro-datepicker
427
364
  locale="zh-CN"
428
365
  range
@@ -434,16 +371,11 @@
434
371
  navLabelPrevMonth="上个月"
435
372
  navLabelNextMonth="下个月"
436
373
  calendarGridLabel="本月的日历天数">
437
- <span slot="fromLabel">出发日期</span>
438
- <span slot="toLabel">返回日期</span>
374
+ <span slot="fromLabel">中文日期</span>
439
375
  <span slot="helpText">帮助文本</span>
440
- <span slot="optionalFromLabel">(可选)</span>
441
- <span slot="optionalToLabel">(可选)</span>
442
- <span slot="bib.fullscreen.headline">选择日期</span>
443
- <span slot="bib.fullscreen.fromLabel">出发日期</span>
444
- <span slot="bib.fullscreen.toLabel">返回日期</span>
376
+ <span slot="optionalLabel">(可选)</span>
445
377
  </auro-datepicker>
446
- <p class="body-sm"><strong>Inherited de-DE (via <code>data-locale</code>)</strong></p>
378
+ <auro-header level="4">Inherited de-DE date-locale Example</auro-header>
447
379
  <auro-datepicker
448
380
  range
449
381
  rangeLabelStart="Startdatum"
@@ -454,16 +386,11 @@
454
386
  navLabelPrevMonth="Vorheriger Monat"
455
387
  navLabelNextMonth="Nächster Monat"
456
388
  calendarGridLabel="Kalendertage des Monats">
457
- <span slot="fromLabel">Abreisedatum (geerbt aus `data-locale="de-DE"`)</span>
458
- <span slot="toLabel">Rückkehrdatum</span>
389
+ <span slot="fromLabel">Nächstes `data-locale`-Attributformat (`de-DE` in diesem Fall)</span>
459
390
  <span slot="helpText">Hilfetext</span>
460
- <span slot="optionalFromLabel">(freiwillig)</span>
461
- <span slot="optionalToLabel">(freiwillig)</span>
462
- <span slot="bib.fullscreen.headline">Datum auswählen</span>
463
- <span slot="bib.fullscreen.fromLabel">Abreisedatum</span>
464
- <span slot="bib.fullscreen.toLabel">Rückkehrdatum</span>
391
+ <span slot="optionalLabel">(freiwillig)</span>
465
392
  </auro-datepicker>
466
- <p class="body-sm"><strong>ja-JP with explicit <code>format="mm/dd/yyyy"</code></strong></p>
393
+ <auro-header level="4" >ja-JP with `mm/dd/yyyy` format Example</auro-header>
467
394
  <auro-datepicker
468
395
  locale="ja-JP"
469
396
  format="mm/dd/yyyy"
@@ -476,14 +403,9 @@
476
403
  navLabelPrevMonth="前の月"
477
404
  navLabelNextMonth="次の月"
478
405
  calendarGridLabel="カレンダーの日付">
479
- <span slot="fromLabel">出発日</span>
480
- <span slot="toLabel">帰国日</span>
406
+ <span slot="fromLabel">明示的な mm/dd/yyyy 形式の ja-JP ロケール</span>
481
407
  <span slot="helpText">ヘルプテキスト</span>
482
- <span slot="optionalFromLabel">(任意)</span>
483
- <span slot="optionalToLabel">(任意)</span>
484
- <span slot="bib.fullscreen.headline">日付を選択</span>
485
- <span slot="bib.fullscreen.fromLabel">出発日</span>
486
- <span slot="bib.fullscreen.toLabel">帰国日</span>
408
+ <span slot="optionalLabel">(任意)</span>
487
409
  </auro-datepicker>
488
410
  </div>
489
411
  <!-- AURO-GENERATED-CONTENT:END -->
@@ -493,7 +415,7 @@
493
415
  <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/locale.html) -->
494
416
  <!-- The below code snippet is automatically added from ./../apiExamples/locale.html -->
495
417
  <pre class="language-html"><code class="language-html">&lt;div data-locale="de-DE"&gt;
496
- &lt;p class="body-sm"&gt;&lt;strong&gt;de-DE&lt;/strong&gt;&lt;/p&gt;
418
+ &lt;auro-header level="4" &gt;de-DE Example&lt;/auro-header&gt;
497
419
  &lt;auro-datepicker
498
420
  locale="de-DE"
499
421
  range
@@ -505,16 +427,11 @@
505
427
  navLabelPrevMonth="Vorheriger Monat"
506
428
  navLabelNextMonth="Nächster Monat"
507
429
  calendarGridLabel="Kalendertage des Monats"&gt;
508
- &lt;span slot="fromLabel"&gt;Abreisedatum&lt;/span&gt;
509
- &lt;span slot="toLabel"&gt;Rückkehrdatum&lt;/span&gt;
430
+ &lt;span slot="fromLabel"&gt;Deutsches Datum&lt;/span&gt;
510
431
  &lt;span slot="helpText"&gt;Hilfetext&lt;/span&gt;
511
- &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
512
- &lt;span slot="optionalToLabel"&gt;(freiwillig)&lt;/span&gt;
513
- &lt;span slot="bib.fullscreen.headline"&gt;Datum auswählen&lt;/span&gt;
514
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Abreisedatum&lt;/span&gt;
515
- &lt;span slot="bib.fullscreen.toLabel"&gt;Rückkehrdatum&lt;/span&gt;
432
+ &lt;span slot="optionalLabel"&gt;(freiwillig)&lt;/span&gt;
516
433
  &lt;/auro-datepicker&gt;
517
- &lt;p class="body-sm"&gt;&lt;strong&gt;zh-CN&lt;/strong&gt;&lt;/p&gt;
434
+ &lt;auro-header level="4" &gt;zh-CN Example&lt;/auro-header&gt;
518
435
  &lt;auro-datepicker
519
436
  locale="zh-CN"
520
437
  range
@@ -526,16 +443,11 @@
526
443
  navLabelPrevMonth="上个月"
527
444
  navLabelNextMonth="下个月"
528
445
  calendarGridLabel="本月的日历天数"&gt;
529
- &lt;span slot="fromLabel"&gt;出发日期&lt;/span&gt;
530
- &lt;span slot="toLabel"&gt;返回日期&lt;/span&gt;
446
+ &lt;span slot="fromLabel"&gt;中文日期&lt;/span&gt;
531
447
  &lt;span slot="helpText"&gt;帮助文本&lt;/span&gt;
532
- &lt;span slot="optionalFromLabel"&gt;(可选)&lt;/span&gt;
533
- &lt;span slot="optionalToLabel"&gt;(可选)&lt;/span&gt;
534
- &lt;span slot="bib.fullscreen.headline"&gt;选择日期&lt;/span&gt;
535
- &lt;span slot="bib.fullscreen.fromLabel"&gt;出发日期&lt;/span&gt;
536
- &lt;span slot="bib.fullscreen.toLabel"&gt;返回日期&lt;/span&gt;
448
+ &lt;span slot="optionalLabel"&gt;(可选)&lt;/span&gt;
537
449
  &lt;/auro-datepicker&gt;
538
- &lt;p class="body-sm"&gt;&lt;strong&gt;Inherited de-DE (via &lt;code&gt;data-locale&lt;/code&gt;)&lt;/strong&gt;&lt;/p&gt;
450
+ &lt;auro-header level="4"&gt;Inherited de-DE date-locale Example&lt;/auro-header&gt;
539
451
  &lt;auro-datepicker
540
452
  range
541
453
  rangeLabelStart="Startdatum"
@@ -546,16 +458,11 @@
546
458
  navLabelPrevMonth="Vorheriger Monat"
547
459
  navLabelNextMonth="Nächster Monat"
548
460
  calendarGridLabel="Kalendertage des Monats"&gt;
549
- &lt;span slot="fromLabel"&gt;Abreisedatum (geerbt aus `data-locale="de-DE"`)&lt;/span&gt;
550
- &lt;span slot="toLabel"&gt;Rückkehrdatum&lt;/span&gt;
461
+ &lt;span slot="fromLabel"&gt;Nächstes `data-locale`-Attributformat (`de-DE` in diesem Fall)&lt;/span&gt;
551
462
  &lt;span slot="helpText"&gt;Hilfetext&lt;/span&gt;
552
- &lt;span slot="optionalFromLabel"&gt;(freiwillig)&lt;/span&gt;
553
- &lt;span slot="optionalToLabel"&gt;(freiwillig)&lt;/span&gt;
554
- &lt;span slot="bib.fullscreen.headline"&gt;Datum auswählen&lt;/span&gt;
555
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Abreisedatum&lt;/span&gt;
556
- &lt;span slot="bib.fullscreen.toLabel"&gt;Rückkehrdatum&lt;/span&gt;
463
+ &lt;span slot="optionalLabel"&gt;(freiwillig)&lt;/span&gt;
557
464
  &lt;/auro-datepicker&gt;
558
- &lt;p class="body-sm"&gt;&lt;strong&gt;ja-JP with explicit &lt;code&gt;format="mm/dd/yyyy"&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;
465
+ &lt;auro-header level="4" &gt;ja-JP with `mm/dd/yyyy` format Example&lt;/auro-header&gt;
559
466
  &lt;auro-datepicker
560
467
  locale="ja-JP"
561
468
  format="mm/dd/yyyy"
@@ -568,82 +475,13 @@
568
475
  navLabelPrevMonth="前の月"
569
476
  navLabelNextMonth="次の月"
570
477
  calendarGridLabel="カレンダーの日付"&gt;
571
- &lt;span slot="fromLabel"&gt;出発日&lt;/span&gt;
572
- &lt;span slot="toLabel"&gt;帰国日&lt;/span&gt;
478
+ &lt;span slot="fromLabel"&gt;明示的な mm/dd/yyyy 形式の ja-JP ロケール&lt;/span&gt;
573
479
  &lt;span slot="helpText"&gt;ヘルプテキスト&lt;/span&gt;
574
- &lt;span slot="optionalFromLabel"&gt;(任意)&lt;/span&gt;
575
- &lt;span slot="optionalToLabel"&gt;(任意)&lt;/span&gt;
576
- &lt;span slot="bib.fullscreen.headline"&gt;日付を選択&lt;/span&gt;
577
- &lt;span slot="bib.fullscreen.fromLabel"&gt;出発日&lt;/span&gt;
578
- &lt;span slot="bib.fullscreen.toLabel"&gt;帰国日&lt;/span&gt;
480
+ &lt;span slot="optionalLabel"&gt;(任意)&lt;/span&gt;
579
481
  &lt;/auro-datepicker&gt;
580
482
  &lt;/div&gt;</code></pre>
581
483
  <!-- AURO-GENERATED-CONTENT:END -->
582
484
  </auro-accordion>
583
- <auro-header level="4" id="localizationSnowflake">Layout Interaction</auro-header>
584
- <p>Locale-driven formatting applies across both the <code>classic</code> and <code>snowflake</code> layouts. In the snowflake layout, the localized value renders via <code>Intl.DateTimeFormat</code> using the active <code>locale</code>, so the visible date adapts automatically.</p>
585
- <p>The localized value is a compact summary — by design it uses a fixed <code>{ month: 'short', day: '2-digit' }</code> shape and does <strong>not</strong> reflect the <code>format</code> attribute. <code>format</code> governs the input mask only. To render it differently (for example, to include the year or honor a custom format), project content into the <code>displayValue</code> slot.</p>
586
- <div class="exampleWrapper--ondark">
587
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/snowflake-locale.html) -->
588
- <!-- The below content is automatically added from ./../apiExamples/snowflake-locale.html -->
589
- <p class="body-sm" style="color: var(--ds-basic-color-texticon-inverse);"><strong><code>locale="fr-FR"</code></strong> — derives <code>dd/mm/yyyy</code> from the locale. Mask: <code>DD/MM/YYYY</code>.</p>
590
- <auro-datepicker layout="snowflake" shape="snowflake" appearance="inverse" locale="fr-FR">
591
- <span slot="label">Date de départ</span>
592
- <span slot="bib.fullscreen.headline">Choisir une date</span>
593
- <span slot="fromLabel">Date de départ</span>
594
- <span slot="bib.fullscreen.fromLabel">Date de départ</span>
595
- <span slot="helpText">Texte d'aide</span>
596
- </auro-datepicker>
597
- <p class="body-sm" style="color: var(--ds-basic-color-texticon-inverse);"><strong><code>locale="ja-JP"</code>, range</strong> — derives <code>yyyy/mm/dd</code>. Mask: <code>YYYY/MM/DD</code>.</p>
598
- <auro-datepicker layout="snowflake" shape="snowflake" appearance="inverse" locale="ja-JP" range>
599
- <span slot="label">出発日 / 帰国日</span>
600
- <span slot="bib.fullscreen.headline">日付を選択</span>
601
- <span slot="fromLabel">出発日</span>
602
- <span slot="toLabel">帰国日</span>
603
- <span slot="bib.fullscreen.fromLabel">出発日</span>
604
- <span slot="bib.fullscreen.toLabel">帰国日</span>
605
- </auro-datepicker>
606
- <p class="body-sm" style="color: var(--ds-basic-color-texticon-inverse);"><strong><code>locale="fr-FR"</code> + explicit <code>format="yyyy/mm/dd"</code></strong> — explicit format wins for the mask, but the localized value is rendered the same as the first picker (it ignores <code>format</code>).</p>
607
- <auro-datepicker layout="snowflake" shape="snowflake" appearance="inverse" locale="fr-FR" format="yyyy/mm/dd">
608
- <span slot="label">Date avec format explicite</span>
609
- <span slot="bib.fullscreen.headline">Choisir une date</span>
610
- <span slot="fromLabel">Date avec format explicite</span>
611
- <span slot="bib.fullscreen.fromLabel">Date avec format explicite</span>
612
- </auro-datepicker>
613
- <!-- AURO-GENERATED-CONTENT:END -->
614
- </div>
615
- <auro-accordion alignRight>
616
- <span slot="trigger">See code</span>
617
- <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/snowflake-locale.html) -->
618
- <!-- The below code snippet is automatically added from ./../apiExamples/snowflake-locale.html -->
619
- <pre class="language-html"><code class="language-html">&lt;p class="body-sm" style="color: var(--ds-basic-color-texticon-inverse);"&gt;&lt;strong&gt;&lt;code&gt;locale="fr-FR"&lt;/code&gt;&lt;/strong&gt; — derives &lt;code&gt;dd/mm/yyyy&lt;/code&gt; from the locale. Mask: &lt;code&gt;DD/MM/YYYY&lt;/code&gt;.&lt;/p&gt;
620
- &lt;auro-datepicker layout="snowflake" shape="snowflake" appearance="inverse" locale="fr-FR"&gt;
621
- &lt;span slot="label"&gt;Date de départ&lt;/span&gt;
622
- &lt;span slot="bib.fullscreen.headline"&gt;Choisir une date&lt;/span&gt;
623
- &lt;span slot="fromLabel"&gt;Date de départ&lt;/span&gt;
624
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Date de départ&lt;/span&gt;
625
- &lt;span slot="helpText"&gt;Texte d'aide&lt;/span&gt;
626
- &lt;/auro-datepicker&gt;
627
-
628
- &lt;p class="body-sm" style="color: var(--ds-basic-color-texticon-inverse);"&gt;&lt;strong&gt;&lt;code&gt;locale="ja-JP"&lt;/code&gt;, range&lt;/strong&gt; — derives &lt;code&gt;yyyy/mm/dd&lt;/code&gt;. Mask: &lt;code&gt;YYYY/MM/DD&lt;/code&gt;.&lt;/p&gt;
629
- &lt;auro-datepicker layout="snowflake" shape="snowflake" appearance="inverse" locale="ja-JP" range&gt;
630
- &lt;span slot="label"&gt;出発日 / 帰国日&lt;/span&gt;
631
- &lt;span slot="bib.fullscreen.headline"&gt;日付を選択&lt;/span&gt;
632
- &lt;span slot="fromLabel"&gt;出発日&lt;/span&gt;
633
- &lt;span slot="toLabel"&gt;帰国日&lt;/span&gt;
634
- &lt;span slot="bib.fullscreen.fromLabel"&gt;出発日&lt;/span&gt;
635
- &lt;span slot="bib.fullscreen.toLabel"&gt;帰国日&lt;/span&gt;
636
- &lt;/auro-datepicker&gt;
637
-
638
- &lt;p class="body-sm" style="color: var(--ds-basic-color-texticon-inverse);"&gt;&lt;strong&gt;&lt;code&gt;locale="fr-FR"&lt;/code&gt; + explicit &lt;code&gt;format="yyyy/mm/dd"&lt;/code&gt;&lt;/strong&gt; — explicit format wins for the mask, but the localized value is rendered the same as the first picker (it ignores &lt;code&gt;format&lt;/code&gt;).&lt;/p&gt;
639
- &lt;auro-datepicker layout="snowflake" shape="snowflake" appearance="inverse" locale="fr-FR" format="yyyy/mm/dd"&gt;
640
- &lt;span slot="label"&gt;Date avec format explicite&lt;/span&gt;
641
- &lt;span slot="bib.fullscreen.headline"&gt;Choisir une date&lt;/span&gt;
642
- &lt;span slot="fromLabel"&gt;Date avec format explicite&lt;/span&gt;
643
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Date avec format explicite&lt;/span&gt;
644
- &lt;/auro-datepicker&gt;</code></pre>
645
- <!-- AURO-GENERATED-CONTENT:END -->
646
- </auro-accordion>
647
485
  <!-- AURO-GENERATED-CONTENT:END -->
648
486
  <auro-header level="3" id="layout">Shape, Size & Layout</auro-header>
649
487
  <p>The <code>shape</code>, <code>size</code> and <code>layout</code> attributes work in collaboration to control the overall architecture of the component.</p>
@@ -10528,6 +10528,7 @@ let AuroInputUtilities$1 = class AuroInputUtilities {
10528
10528
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
10529
10529
 
10530
10530
  if (!(valueObject instanceof Date) || Number.isNaN(valueObject.getTime()) || !maskOptions || typeof maskOptions.format !== 'function') {
10531
+ console.debug('Invalid date object or mask options for formatting', { valueObject, maskOptions }); // eslint-disable-line no-console
10531
10532
  return undefined;
10532
10533
  }
10533
10534
 
@@ -13439,7 +13440,7 @@ class AuroBibtemplate extends i$1 {
13439
13440
  }
13440
13441
  }
13441
13442
 
13442
- var formkitVersion$2 = '202606171946';
13443
+ var formkitVersion$2 = '202606190840';
13443
13444
 
13444
13445
  let l$1 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$4 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$3=i$3`:host{color:var(--ds-auro-loader-color)}:host>span{background-color:var(--ds-auro-loader-background-color);border-color:var(--ds-auro-loader-border-color)}:host([onlight]),:host([appearance=brand]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]),:host([appearance=inverse]){--ds-auro-loader-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([orbit])>span{--ds-auro-loader-background-color: transparent}:host([orbit])>span:nth-child(1){--ds-auro-loader-border-color: currentcolor;opacity:.25}:host([orbit])>span:nth-child(2){--ds-auro-loader-border-color: currentcolor;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
13445
13446
  `,u$6=i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .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, 450);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, 450);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, .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, .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, .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, .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, .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, .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(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:focus:not(:focus-visible){outline:3px solid transparent}:host,:host>span{position:relative}:host{width:2rem;height:2rem;display:inline-block;font-size:0}:host>span{position:absolute;display:inline-block;float:none;top:0;left:0;width:2rem;height:2rem;border-radius:100%;border-style:solid;border-width:0;box-sizing:border-box}:host([xs]),:host([xs])>span{width:1.2rem;height:1.2rem}:host([sm]),:host([sm])>span{width:3rem;height:3rem}:host([md]),:host([md])>span{width:5rem;height:5rem}:host([lg]),:host([lg])>span{width:8rem;height:8rem}:host{--margin: .375rem;--margin-xs: .2rem;--margin-sm: .5rem;--margin-md: .75rem;--margin-lg: 1rem}:host([pulse]),:host([pulse])>span{position:relative}:host([pulse]){width:calc(3rem + var(--margin) * 6);height:calc(1rem + var(--margin) * 2)}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(1.95rem + var(--margin-xs) * 6);height:calc(.65rem + var(--margin-xs) * 2)}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:calc(2rem + var(--margin-sm) * 2)}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:calc(3rem + var(--margin-md) * 2)}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:calc(5rem + var(--margin-lg) * 2)}:host([pulse][lg])>span{margin:var(--margin-lg);width:5rem;height:5rem}:host([pulse])>span:nth-child(1){animation-delay:-.4s}:host([pulse])>span:nth-child(2){animation-delay:-.2s}:host([pulse])>span:nth-child(3){animation-delay:0ms}@keyframes pulse{0%,to{opacity:.1;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}:host([orbit]),:host([orbit])>span{opacity:1}:host([orbit])>span{border-width:5px}:host([orbit])>span:nth-child(2){animation:orbit 2s linear infinite}:host([orbit][sm])>span{border-width:8px}:host([orbit][md])>span{border-width:13px}:host([orbit][lg])>span{border-width:21px}@keyframes orbit{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host([ringworm])>svg{animation:rotate 2s linear infinite;height:100%;width:100%;stroke:currentcolor;stroke-width:8}:host([ringworm]) .path{stroke-dashoffset:0;animation:ringworm 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes ringworm{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}:host([laser]){position:static;width:100%;display:block;height:0;overflow:hidden;font-size:unset}:host([laser])>span{position:fixed;width:100%;height:.25rem;border-radius:0;z-index:100}:host([laser])>span:nth-child(1){border-color:currentcolor;opacity:.25}:host([laser])>span:nth-child(2){border-color:currentcolor;animation:laser 2s linear infinite;opacity:1;width:50%}:host([laser][sm])>span:nth-child(2){width:20%}:host([laser][md])>span:nth-child(2){width:30%}:host([laser][lg])>span:nth-child(2){width:50%;animation-duration:1.5s}:host([laser][xl])>span:nth-child(2){width:80%;animation-duration:1.5s}@keyframes laser{0%{left:-100%}to{left:110%}}:host>.no-animation{display:none}@media (prefers-reduced-motion: reduce){:host{display:flex;align-items:center;justify-content:center}:host>span{opacity:1}:host>.loader{display:none}:host>svg{display:none}:host>.no-animation{display:block}}
@@ -18974,7 +18975,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
18974
18975
  }
18975
18976
  };
18976
18977
 
18977
- var formkitVersion$1 = '202606171946';
18978
+ var formkitVersion$1 = '202606190840';
18978
18979
 
18979
18980
  let AuroElement$2 = class AuroElement extends i$1 {
18980
18981
  static get properties() {
@@ -30695,6 +30696,7 @@ class AuroInputUtilities {
30695
30696
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
30696
30697
 
30697
30698
  if (!(valueObject instanceof Date) || Number.isNaN(valueObject.getTime()) || !maskOptions || typeof maskOptions.format !== 'function') {
30699
+ console.debug('Invalid date object or mask options for formatting', { valueObject, maskOptions }); // eslint-disable-line no-console
30698
30700
  return undefined;
30699
30701
  }
30700
30702
 
@@ -31505,10 +31507,6 @@ class BaseInput extends AuroElement$1 {
31505
31507
  this.wrapperElement.addEventListener('click', this.handleClick);
31506
31508
  }
31507
31509
 
31508
- // add attribute for query selectors when auro-input is registered under a custom name
31509
- if (this.tagName.toLowerCase() !== 'auro-input' && !this.hasAttribute('auro-input')) {
31510
- this.setAttribute('auro-input', '');
31511
- }
31512
31510
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
31513
31511
 
31514
31512
  // use validity message override if declared when initializing the component
@@ -31679,14 +31677,14 @@ class BaseInput extends AuroElement$1 {
31679
31677
 
31680
31678
  if (formattedValue !== this.inputElement.value) {
31681
31679
  this.skipNextProgrammaticInputEvent = true;
31682
- if (this.maskInstance && this.type === 'credit-card') {
31680
+ if (this.maskInstance && this.type !== 'date') {
31683
31681
  // Route through the mask so its _value and el.value stay in lock-step
31684
31682
  // (set value calls updateControl which writes el.value = displayValue).
31685
31683
  // Writing el.value directly leaves the mask thinking displayValue is
31686
- // stale; _saveSelection on the next focus/click then warns. Scoped to
31687
- // credit-card so date's own formattedValue (raw ISO when calendar-invalid)
31688
- // isn't re-masked through the mm/dd/yyyy mask, which would truncate it
31689
- // and flip validity from patternMismatch to tooShort.
31684
+ // stale; _saveSelection on the next focus/click then warns. Date is
31685
+ // excluded because its formattedValue can be raw ISO when the calendar
31686
+ // is invalid, and re-masking through mm/dd/yyyy would truncate it and
31687
+ // flip validity from patternMismatch to tooShort.
31690
31688
  this.maskInstance.value = formattedValue || '';
31691
31689
  } else if (formattedValue) {
31692
31690
  this.inputElement.value = formattedValue;
@@ -31797,31 +31795,33 @@ class BaseInput extends AuroElement$1 {
31797
31795
  * @returns {void}
31798
31796
  */
31799
31797
  configureAutoFormatting() {
31800
- // Re-entrancy guard. The patched-setter's synthetic input event (suppressed
31801
- // by _configuringMask above) could otherwise trigger handleInput
31802
- // processCreditCard configureAutoFormatting before the outer call's
31803
- // set value has finished its alignCursor pass.
31798
+ // _configuringMask gates two things: external re-entry into this method
31799
+ // while setup is mid-flight (from property changes that call back here),
31800
+ // and the accept/complete listeners below — both need to ignore the mask
31801
+ // events fired by our own value-restore step.
31804
31802
  if (this._configuringMask) return;
31805
31803
  this._configuringMask = true;
31806
31804
  try {
31805
+ // Destroy any prior mask so IMask can attach fresh under the new format.
31807
31806
  if (this.maskInstance) {
31808
31807
  this.maskInstance.destroy();
31809
31808
  }
31810
31809
 
31811
- // Pass new format to util
31812
31810
  this.util.updateFormat(this.format);
31813
31811
 
31814
31812
  const maskOptions = this.util.getMaskOptions(this.type, this.format);
31815
31813
 
31816
31814
  if (this.inputElement && maskOptions.mask) {
31817
-
31818
- // Stash and clear any existing value before IMask init.
31819
- // IMask's constructor processes the current input value which requires
31820
- // selection state clearing first avoids that scenario entirely.
31821
- // When the format changes (e.g. locale switch) and we have a valid ISO
31822
- // model value, compute the display string for the NEW format instead of
31823
- // re-using the old display string, which may be invalid in the new mask.
31815
+ // Capture the current display so it can be re-applied after IMask
31816
+ // attaches. The restore at the bottom goes through maskInstance.value
31817
+ // (not inputElement.value directly) so the mask's internal state and
31818
+ // the input's displayed text stay in lock-step.
31824
31819
  let existingValue = this.inputElement.value;
31820
+
31821
+ // Format-change case (e.g. locale switch): existingValue is the OLD
31822
+ // mask's display string and may not parse under the new mask. When
31823
+ // we have a valid date model, rebuild the display from valueObject
31824
+ // (the canonical source) using the new mask's format function.
31825
31825
  if (
31826
31826
  this.util.isFullDateFormat(this.type, this.format) &&
31827
31827
  this.value &&
@@ -31833,15 +31833,18 @@ class BaseInput extends AuroElement$1 {
31833
31833
  existingValue = maskOptions.format(this.valueObject);
31834
31834
  }
31835
31835
 
31836
+ // Clear before IMask attaches so the constructor seeds an empty
31837
+ // internal value. Otherwise IMask reads the stale unmasked string
31838
+ // and emits a spurious 'accept' before the restore below runs.
31836
31839
  this.skipNextProgrammaticInputEvent = true;
31837
31840
  this.inputElement.value = '';
31838
31841
 
31839
31842
  this.maskInstance = IMask(this.inputElement, maskOptions);
31840
31843
 
31844
+ // Mask fires 'accept' on every value change, including the restore
31845
+ // step below. Skip events fired during configureAutoFormatting so
31846
+ // we don't overwrite a value the parent just pushed.
31841
31847
  this.maskInstance.on('accept', () => {
31842
- // Suppress propagation during configureAutoFormatting's own value-restoration
31843
- // (line below) — the mask emits 'accept' on every value-set, including ours,
31844
- // and we don't want to overwrite a value the parent just pushed.
31845
31848
  if (this._configuringMask) return;
31846
31849
  this.value = this.util.toModelValue(this.maskInstance.value, this.format);
31847
31850
  if (this.type === "date") {
@@ -31849,6 +31852,8 @@ class BaseInput extends AuroElement$1 {
31849
31852
  }
31850
31853
  });
31851
31854
 
31855
+ // Mask fires 'complete' on the restore step below for any value that
31856
+ // happens to be a complete match. Same setup-suppression as 'accept'.
31852
31857
  this.maskInstance.on('complete', () => {
31853
31858
  if (this._configuringMask) return;
31854
31859
  this.value = this.util.toModelValue(this.maskInstance.value, this.format);
@@ -31857,7 +31862,9 @@ class BaseInput extends AuroElement$1 {
31857
31862
  }
31858
31863
  });
31859
31864
 
31860
- // Restore the stashed value through IMask so it's properly masked
31865
+ // Write existingValue through the mask (not the input directly) so
31866
+ // the mask reformats it under the new rules and keeps its internal
31867
+ // _value aligned with the input's displayed text.
31861
31868
  if (existingValue) {
31862
31869
  this.maskInstance.value = existingValue;
31863
31870
  }
@@ -32563,7 +32570,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
32563
32570
  }
32564
32571
  };
32565
32572
 
32566
- var formkitVersion = '202606171946';
32573
+ var formkitVersion = '202606190840';
32567
32574
 
32568
32575
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
32569
32576
  // See LICENSE in the project root for license information.
@@ -33983,8 +33990,6 @@ const datepickerKeyboardStrategy = {
33983
33990
  * @slot label - Defines the label content for the entire datepicker when `layout="snowflake"`.
33984
33991
  * @slot toLabel - Defines the label content for the second input when the `range` attribute is used.
33985
33992
  * @slot fromLabel - Defines the label content for the first input.
33986
- * @slot optionalFromLabel - Overrides the "(optional)" text rendered next to the first input's label when the datepicker is not `required`.
33987
- * @slot optionalToLabel - Overrides the "(optional)" text rendered next to the second input's label when `range` is set and the datepicker is not `required`.
33988
33993
  * @slot date_YYYY_MM_DD - Defines the content to display in the auro-calendar-cell for the specified date. The content text is colored using the success state token when the `highlight` attribute is applied to the slot.
33989
33994
  * @slot popover_YYYY_MM_DD - Defines the content to display in the auro-calendar-cell popover for the specified date.
33990
33995
  * @csspart dropdown - Use for customizing the style of the dropdown.
@@ -35580,9 +35585,7 @@ class AuroDatePicker extends AuroElement {
35580
35585
  // update the calendar
35581
35586
  if (this.valueEndObject) {
35582
35587
  this.calendar.dateTo = this.convertToWcValidTime(this.valueEndObject);
35583
- if (!(this.wasCellClick && this.range)) {
35584
- this.calendarRenderUtil.updateCentralDate(this, this.valueEndObject);
35585
- }
35588
+ this.calendarRenderUtil.updateCentralDate(this, this.valueEndObject);
35586
35589
  } else {
35587
35590
  if (this.inputList[1].value !== this.valueEnd) {
35588
35591
  this.inputList[1].value = this.valueEnd || '';
@@ -35977,7 +35980,6 @@ class AuroDatePicker extends AuroElement {
35977
35980
  }
35978
35981
  <span slot="ariaLabel.clear">${this.runtimeUtils.getSlotText(this, 'ariaLabel.input.clear') || i18n(this.lang, 'clearInput')}</span>
35979
35982
  <span slot="label"><slot name="fromLabel"></slot></span>
35980
- <span slot="optionalLabel"><slot name="optionalFromLabel"> (optional)</slot></span>
35981
35983
  </${this.inputTag}>
35982
35984
  </div>
35983
35985
 
@@ -36022,7 +36024,6 @@ class AuroDatePicker extends AuroElement {
36022
36024
  }
36023
36025
  <span slot="ariaLabel.clear">${this.runtimeUtils.getSlotText(this, 'ariaLabel.input.clear') || this.runtimeUtils.getSlotText(this, 'ariaLabel.input.clear') || i18n(this.lang, 'clearInput')}</span>
36024
36026
  <span slot="label"><slot name="toLabel"></slot></span>
36025
- <span slot="optionalLabel"><slot name="optionalToLabel"> (optional)</slot></span>
36026
36027
  </${this.inputTag}>
36027
36028
  </div>
36028
36029
  ` : undefined}
@@ -36226,14 +36227,7 @@ class AuroDatePicker extends AuroElement {
36226
36227
  function localizationExample() {
36227
36228
  const localizedDatepicker = document.querySelector("#localizationExample");
36228
36229
 
36229
- if (!localizedDatepicker) {
36230
- return;
36231
- }
36232
-
36233
- localizedDatepicker.monthNames = [
36234
- 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio',
36235
- 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre',
36236
- ];
36230
+ localizedDatepicker.monthNames = ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'];
36237
36231
  }
36238
36232
 
36239
36233
  AuroDatePicker.register();