@aurodesignsystem-dev/auro-formkit 0.0.0-pr832.1 → 0.0.0-pr832.2

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 (52) hide show
  1. package/components/bibtemplate/dist/index.js +4 -3
  2. package/components/bibtemplate/dist/registered.js +4 -3
  3. package/components/combobox/README.md +2 -0
  4. package/components/combobox/demo/api.md +6 -0
  5. package/components/combobox/demo/api.min.js +35 -28
  6. package/components/combobox/demo/index.md +12 -0
  7. package/components/combobox/demo/index.min.js +35 -28
  8. package/components/combobox/demo/readme.md +2 -0
  9. package/components/combobox/dist/auro-combobox.d.ts +2 -0
  10. package/components/combobox/dist/index.js +28 -17
  11. package/components/combobox/dist/registered.js +28 -17
  12. package/components/counter/demo/api.md +9 -0
  13. package/components/counter/demo/api.min.js +6 -3
  14. package/components/counter/demo/index.md +6 -0
  15. package/components/counter/demo/index.min.js +6 -3
  16. package/components/counter/dist/auro-counter-group.d.ts +1 -0
  17. package/components/counter/dist/index.js +6 -3
  18. package/components/counter/dist/registered.js +6 -3
  19. package/components/datepicker/README.md +1 -0
  20. package/components/datepicker/demo/api.md +11 -0
  21. package/components/datepicker/demo/api.min.js +21 -9
  22. package/components/datepicker/demo/index.md +12 -0
  23. package/components/datepicker/demo/index.min.js +21 -9
  24. package/components/datepicker/demo/readme.md +1 -0
  25. package/components/datepicker/dist/auro-datepicker.d.ts +1 -0
  26. package/components/datepicker/dist/index.js +21 -9
  27. package/components/datepicker/dist/registered.js +21 -9
  28. package/components/input/README.md +1 -0
  29. package/components/input/demo/api.md +14 -6
  30. package/components/input/demo/api.min.js +14 -6
  31. package/components/input/demo/index.md +7 -0
  32. package/components/input/demo/index.min.js +14 -6
  33. package/components/input/demo/readme.md +1 -0
  34. package/components/input/dist/auro-input.d.ts +2 -2
  35. package/components/input/dist/base-input.d.ts +3 -1
  36. package/components/input/dist/index.js +14 -6
  37. package/components/input/dist/registered.js +14 -6
  38. package/components/menu/demo/api.min.js +3 -7
  39. package/components/menu/demo/index.min.js +3 -7
  40. package/components/menu/dist/index.js +3 -7
  41. package/components/menu/dist/registered.js +3 -7
  42. package/components/select/README.md +1 -0
  43. package/components/select/demo/api.md +3 -0
  44. package/components/select/demo/api.min.js +22 -21
  45. package/components/select/demo/index.md +8 -0
  46. package/components/select/demo/index.min.js +22 -21
  47. package/components/select/demo/readme.md +1 -0
  48. package/components/select/dist/auro-select.d.ts +2 -1
  49. package/components/select/dist/index.js +15 -10
  50. package/components/select/dist/registered.js +15 -10
  51. package/package.json +1 -1
  52. package/components/menu/dist/styles/shapeSize-css.d.ts +0 -2
@@ -10197,6 +10197,9 @@ let AuroElement$2$1 = class AuroElement extends LitElement {
10197
10197
  * @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
10198
10198
  * @attr id
10199
10199
  *
10200
+ * @slot ariaLabel.clear - Sets aria-label on clear button for screenreader to read
10201
+ * @slot ariaLabel.password.show - Sets aria-label on password button to toggle on showing password
10202
+ * @slot ariaLabel.password.hide - Sets aria-label on password button to toggle off showing password
10200
10203
  * @slot helpText - Sets the help text displayed below the input.
10201
10204
  * @slot label - Sets the label text for the input.
10202
10205
  * @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
@@ -10624,8 +10627,7 @@ class BaseInput extends AuroElement$2$1 {
10624
10627
  * Populates the `value` attribute on the input. Can also be read to retrieve the current value of the input.
10625
10628
  */
10626
10629
  value: {
10627
- type: String,
10628
- reflect: true
10630
+ type: String
10629
10631
  },
10630
10632
 
10631
10633
  /**
@@ -13133,7 +13135,7 @@ class AuroInput extends BaseInput {
13133
13135
  /**
13134
13136
  * Returns classmap configuration for html5 input labels in all layouts.
13135
13137
  * @private
13136
- * @returns {void}
13138
+ * @returns {Record<string, boolean>}
13137
13139
  */
13138
13140
  get commonLabelClasses() {
13139
13141
  return {
@@ -13147,7 +13149,7 @@ class AuroInput extends BaseInput {
13147
13149
  /**
13148
13150
  * Returns classmap configuration for html5 inputs in all layouts.
13149
13151
  * @private
13150
- * @returns {object} - Returns classmap.
13152
+ * @returns {Record<string, boolean>} - Returns classmap.
13151
13153
  */
13152
13154
  get commonInputClasses() {
13153
13155
  return {
@@ -13337,12 +13339,13 @@ class AuroInput extends BaseInput {
13337
13339
  <${this.buttonTag}
13338
13340
  @click="${this.handleClickClear}"
13339
13341
  ?onDark="${this.onDark}"
13340
- aria-label="${i18n(this.lang, 'clearInput')}"
13341
13342
  class="notificationBtn clearBtn"
13342
13343
  shape="circle"
13343
13344
  size="sm"
13344
13345
  variant="ghost">
13346
+ <span><slot name="ariaLabel.clear">Clear Input</slot></span>
13345
13347
  <${this.iconTag}
13348
+ aria-hidden="true"
13346
13349
  ?customColor="${this.onDark}"
13347
13350
  category="interface"
13348
13351
  name="x-lg"
@@ -13365,18 +13368,23 @@ class AuroInput extends BaseInput {
13365
13368
  @click="${this.handleClickShowPassword}"
13366
13369
  ?onDark="${this.onDark}"
13367
13370
  class="notificationBtn passwordBtn"
13368
- aria-label="${this.showPassword ? i18n(this.lang, "hidePassword") : i18n(this.lang, "showPassword")}"
13369
13371
  shape="circle"
13370
13372
  size="sm"
13371
13373
  variant="ghost">
13374
+ <span>
13375
+ ${this.showPassword ? html`<slot name="ariaLabel.password.hide">Hide Password</slot>`
13376
+ : html`<slot name="ariaLabel.password.show">Show Password</slot>`}
13377
+ </span>
13372
13378
  <${this.iconTag}
13373
13379
  ?customColor="${this.onDark}"
13380
+ aria-hidden="true"
13374
13381
  ?hidden=${!this.showPassword}
13375
13382
  category="interface"
13376
13383
  name="hide-password-stroke">
13377
13384
  </${this.iconTag}>
13378
13385
  <${this.iconTag}
13379
13386
  ?customColor="${this.onDark}"
13387
+ aria-hidden="true"
13380
13388
  ?hidden=${this.showPassword}
13381
13389
  category="interface"
13382
13390
  name="view-password-stroke">
@@ -13590,7 +13598,7 @@ var inputVersion = '4.2.0';
13590
13598
 
13591
13599
  var colorCss$3 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
13592
13600
 
13593
- var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
13601
+ var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
13594
13602
 
13595
13603
  var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
13596
13604
 
@@ -15498,8 +15506,9 @@ class AuroBibtemplate extends LitElement {
15498
15506
  <${this.headerTag} class="header" display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
15499
15507
  <slot name="header"></slot>
15500
15508
  </${this.headerTag}>
15501
- <${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
15502
- <${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
15509
+ <${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
15510
+ <span><slot name="ariaLabel.close">Close</slot></span>
15511
+ <${this.iconTag} aria-hidden="true" category="interface" name="x-lg"></${this.iconTag}>
15503
15512
  </${this.buttonTag}>
15504
15513
  </div>
15505
15514
  <span class="subheader">
@@ -15835,6 +15844,8 @@ class AuroHelpText extends LitElement {
15835
15844
  /**
15836
15845
  * @slot - Default slot for the menu content.
15837
15846
  * @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
15847
+ * @slot ariaLabel.input.clear - Sets aria-label on clear button
15848
+ * @slot ariaLabel.bib.close - Sets aria-label on close button in fullscreen bib
15838
15849
  * @slot bib.fullscreen.headline - Defines the headline to display above menu-options
15839
15850
  * @slot label - Defines the content of the label.
15840
15851
  * @slot helpText - Defines the content of the helpText.
@@ -16654,9 +16665,7 @@ class AuroCombobox extends AuroElement {
16654
16665
  if (this.dropdown.isBibFullscreen) {
16655
16666
 
16656
16667
  // when focus is on the input, move focus back to close button with Tab key
16657
- if (document.activeElement.shadowRoot.activeElement === this.inputInBib &&
16658
- this.inputInBib.shadowRoot.activeElement.tagName !== 'INPUT' &&
16659
- !evt.shiftKey) {
16668
+ if (document.activeElement.shadowRoot.activeElement === this.inputInBib) {
16660
16669
  evt.preventDefault();
16661
16670
  this.dropdown.focus();
16662
16671
  }
@@ -16835,13 +16844,13 @@ class AuroCombobox extends AuroElement {
16835
16844
 
16836
16845
  this.handleMenuOptions();
16837
16846
  break;
16847
+
16848
+ // Programmatically inject as the slot cannot be carried over to bibtemplate.
16849
+ // It's because the bib is/will be separated from dropdown to body.
16838
16850
  case 'label':
16839
- // Programmatically inject as the slot cannot be carried over to bibtemplate.
16840
- // It's because the bib is/will be separated from dropdown to body.
16841
- this.transportAssignedNodes(event.target, this.inputInBib, "label");
16842
- break;
16851
+ case 'ariaLabel.input.clear':
16843
16852
  case 'optionalLabel':
16844
- this.transportAssignedNodes(event.target, this.inputInBib, "optionalLabel");
16853
+ this.transportAssignedNodes(event.target, this.inputInBib, event.target.name);
16845
16854
  break;
16846
16855
  case 'bib.fullscreen.headline':
16847
16856
  this.transportAssignedNodes(event.target, this.bibtemplate, 'header');
@@ -16912,6 +16921,7 @@ class AuroCombobox extends AuroElement {
16912
16921
  shape="${this.shape}"
16913
16922
  size="${this.size}"
16914
16923
  slot="trigger">
16924
+ <slot name="ariaLabel.input.clear" slot="ariaLabel.clear" @slotchange="${this.handleSlotChange}"></slot>
16915
16925
  <slot name="label" slot="label" @slotchange="${this.handleSlotChange}"></slot>
16916
16926
  <slot name="optionalLabel" slot="optionalLabel" @slotchange="${this.handleSlotChange}"> (optional)</slot>
16917
16927
  <slot name="displayValue" slot="displayValue"></slot>
@@ -16919,6 +16929,7 @@ class AuroCombobox extends AuroElement {
16919
16929
 
16920
16930
  <${this.bibtemplateTag} ?large="${this.largeFullscreenHeadline}">
16921
16931
  <slot name="bib.fullscreen.headline" slot="header"></slot>
16932
+ <slot name="ariaLabel.bib.close" slot="ariaLabel.close">Close</slot>
16922
16933
  <slot></slot>
16923
16934
  <${this.inputTag}
16924
16935
  id="inputInBib"
@@ -77,6 +77,7 @@
77
77
 
78
78
  | Name | Description |
79
79
  |---------------------------|--------------------------------------------------|
80
+ | `ariaLabel.bib.close` | Sets aria-label on close button in fullscreen bib |
80
81
  | `bib.fullscreen.footer` | Defines the footer to display at the bottom of fullscreen bib. Only used when `isDropdown` is true. |
81
82
  | `bib.fullscreen.headline` | Defines the headline to display above menu-options. Only used when `isDropdown` is true. Required. |
82
83
  | [default](#default) | Slot for counter elements. |
@@ -296,6 +297,7 @@ counter.addEventListener('input', (event) => {
296
297
  <!-- The below content is automatically added from ./../apiExamples/dropdown-value-text.html -->
297
298
  <div style="max-width: 350px;">
298
299
  <auro-counter-group isDropdown>
300
+ <span slot="ariaLabel.bib.close">Close Popup</span>
299
301
  <span slot="bib.fullscreen.headline">Passengers</span>
300
302
  <div slot="valueText">Custom value text</div>
301
303
  <div slot="label"></div>
@@ -323,6 +325,7 @@ counter.addEventListener('input', (event) => {
323
325
  ```html
324
326
  <div style="max-width: 350px;">
325
327
  <auro-counter-group isDropdown>
328
+ <span slot="ariaLabel.bib.close">Close Popup</span>
326
329
  <span slot="bib.fullscreen.headline">Passengers</span>
327
330
  <div slot="valueText">Custom value text</div>
328
331
  <div slot="label"></div>
@@ -391,6 +394,7 @@ A counter dropdown with counters in an errored state will display the errors for
391
394
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/dropdown-error-basic.html) -->
392
395
  <!-- The below content is automatically added from ./../apiExamples/dropdown-error-basic.html -->
393
396
  <auro-counter-group isDropdown>
397
+ <span slot="ariaLabel.bib.close">Close Popup</span>
394
398
  <div slot="bib.fullscreen.headline">Passengers</div>
395
399
  <div slot="label">Passengers</div>
396
400
  <auro-counter error="Cannot have less than 1 adult passenger">
@@ -411,6 +415,7 @@ A counter dropdown with counters in an errored state will display the errors for
411
415
 
412
416
  ```html
413
417
  <auro-counter-group isDropdown>
418
+ <span slot="ariaLabel.bib.close">Close Popup</span>
414
419
  <div slot="bib.fullscreen.headline">Passengers</div>
415
420
  <div slot="label">Passengers</div>
416
421
  <auro-counter error="Cannot have less than 1 adult passenger">
@@ -434,6 +439,7 @@ The error message for a dropdown counter with errored counters can also be overr
434
439
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/dropdown-error-custom.html) -->
435
440
  <!-- The below content is automatically added from ./../apiExamples/dropdown-error-custom.html -->
436
441
  <auro-counter-group error="Please select the appropriate number of passengers" isDropdown>
442
+ <span slot="ariaLabel.bib.close">Close Popup</span>
437
443
  <div slot="bib.fullscreen.headline">Passengers</div>
438
444
  <div slot="label">Passengers</div>
439
445
  <auro-counter error="Cannot have less than 1 adult passenger">
@@ -454,6 +460,7 @@ The error message for a dropdown counter with errored counters can also be overr
454
460
 
455
461
  ```html
456
462
  <auro-counter-group error="Please select the appropriate number of passengers" isDropdown>
463
+ <span slot="ariaLabel.bib.close">Close Popup</span>
457
464
  <div slot="bib.fullscreen.headline">Passengers</div>
458
465
  <div slot="label">Passengers</div>
459
466
  <auro-counter error="Cannot have less than 1 adult passenger">
@@ -664,6 +671,7 @@ You can also set `bib.fullscreen.footer` slot to add any additional options on f
664
671
  <!-- The below content is automatically added from ./../apiExamples/dropdown-mobile-properties.html -->
665
672
  <div style="max-width: 350px;">
666
673
  <auro-counter-group id="dropdownCouterExample" isDropdown fullscreenBreakpoint="lg">
674
+ <span slot="ariaLabel.bib.close">Close Popup</span>
667
675
  <span slot="label">Passengers</span>
668
676
  <span slot="bib.fullscreen.headline">Passengers</span>
669
677
  <div slot="helpText">This is help text</div>
@@ -695,6 +703,7 @@ You can also set `bib.fullscreen.footer` slot to add any additional options on f
695
703
  ```html
696
704
  <div style="max-width: 350px;">
697
705
  <auro-counter-group id="dropdownCouterExample" isDropdown fullscreenBreakpoint="lg">
706
+ <span slot="ariaLabel.bib.close">Close Popup</span>
698
707
  <span slot="label">Passengers</span>
699
708
  <span slot="bib.fullscreen.headline">Passengers</span>
700
709
  <div slot="helpText">This is help text</div>
@@ -7471,7 +7471,7 @@ var dropdownVersion = '3.0.0';
7471
7471
 
7472
7472
  var colorCss$3 = i$5`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
7473
7473
 
7474
- var styleCss$4 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7474
+ var styleCss$4 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7475
7475
 
7476
7476
  var tokenCss = i$5`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
7477
7477
 
@@ -9379,8 +9379,9 @@ class AuroBibtemplate extends i$2 {
9379
9379
  <${this.headerTag} class="header" display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
9380
9380
  <slot name="header"></slot>
9381
9381
  </${this.headerTag}>
9382
- <${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9383
- <${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
9382
+ <${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9383
+ <span><slot name="ariaLabel.close">Close</slot></span>
9384
+ <${this.iconTag} aria-hidden="true" category="interface" name="x-lg"></${this.iconTag}>
9384
9385
  </${this.buttonTag}>
9385
9386
  </div>
9386
9387
  <span class="subheader">
@@ -9572,6 +9573,7 @@ class AuroElement extends i$2 {
9572
9573
  * @element auro-counter-group
9573
9574
  * @extends LitElement
9574
9575
  * @slot default - Slot for counter elements.
9576
+ * @slot ariaLabel.bib.close - Sets aria-label on close button in fullscreen bib
9575
9577
  * @slot bib.fullscreen.headline - Defines the headline to display above menu-options. Only used when `isDropdown` is true. Required.
9576
9578
  * @slot bib.fullscreen.footer - Defines the footer to display at the bottom of fullscreen bib. Only used when `isDropdown` is true.
9577
9579
  * @slot label - Dropdown label content. Only used when `isDropdown` is true.
@@ -10259,6 +10261,7 @@ class AuroCounterGroup extends AuroElement {
10259
10261
  renderBibTemplate() {
10260
10262
  return u`
10261
10263
  <${this.bibtemplateTag} ?large="${this.largeFullscreenHeadline}">
10264
+ <slot name="ariaLabel.bib.close" slot="ariaLabel.close">Close</slot>
10262
10265
  ${this.renderCounterGroup(true)}
10263
10266
  </${this.bibtemplateTag}>
10264
10267
  `;
@@ -260,6 +260,7 @@ When using a dropdown, an additional layout, `snowflake`, is available for use:
260
260
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/dropdown-basic.html) -->
261
261
  <!-- The below content is automatically added from ./../apiExamples/dropdown-basic.html -->
262
262
  <auro-counter-group isDropdown>
263
+ <span slot="ariaLabel.bib.close">Close Popup</span>
263
264
  <div slot="bib.fullscreen.headline">Passengers</div>
264
265
  <div slot="label">Passengers</div>
265
266
  <auro-counter>
@@ -295,6 +296,7 @@ When using a dropdown, an additional layout, `snowflake`, is available for use:
295
296
  <!-- The below content is automatically added from ./../apiExamples/dropdown-snowflake.html -->
296
297
  <!-- Example of counter-group properties -->
297
298
  <auro-counter-group max="10" min="2" isDropdown layout="snowflake">
299
+ <span slot="ariaLabel.bib.close">Close Popup</span>
298
300
  <div slot="bib.fullscreen.headline">Group fullscreen label</div>
299
301
  <auro-icon slot="typeIcon" category="interface" name="account-stroke" customColor></auro-icon>
300
302
  <div slot="label">Snowflake Dropdown Group</div>
@@ -313,6 +315,7 @@ When using a dropdown, an additional layout, `snowflake`, is available for use:
313
315
  <!-- The below content is automatically added from ./../apiExamples/onDark-dropdown-snowflake.html -->
314
316
  <!-- Example of counter-group properties -->
315
317
  <auro-counter-group max="10" min="2" isDropdown layout="snowflake" ondark>
318
+ <span slot="ariaLabel.bib.close">Close Popup</span>
316
319
  <div slot="bib.fullscreen.headline">Group fullscreen label</div>
317
320
  <auro-icon slot="typeIcon" category="interface" name="account-stroke" customColor></auro-icon>
318
321
  <div slot="label">Snowflake Dropdown Group</div>
@@ -332,6 +335,7 @@ When using a dropdown, an additional layout, `snowflake`, is available for use:
332
335
  <!-- The below code snippet is automatically added from ./../apiExamples/dropdown-basic.html -->
333
336
  ```html
334
337
  <auro-counter-group isDropdown>
338
+ <span slot="ariaLabel.bib.close">Close Popup</span>
335
339
  <div slot="bib.fullscreen.headline">Passengers</div>
336
340
  <div slot="label">Passengers</div>
337
341
  <auro-counter>
@@ -364,6 +368,7 @@ When using a dropdown, an additional layout, `snowflake`, is available for use:
364
368
  <!-- The below content is automatically added from ./../apiExamples/dropdown-snowflake.html -->
365
369
  <!-- Example of counter-group properties -->
366
370
  <auro-counter-group max="10" min="2" isDropdown layout="snowflake">
371
+ <span slot="ariaLabel.bib.close">Close Popup</span>
367
372
  <div slot="bib.fullscreen.headline">Group fullscreen label</div>
368
373
  <auro-icon slot="typeIcon" category="interface" name="account-stroke" customColor></auro-icon>
369
374
  <div slot="label">Snowflake Dropdown Group</div>
@@ -380,6 +385,7 @@ When using a dropdown, an additional layout, `snowflake`, is available for use:
380
385
  <!-- The below content is automatically added from ./../apiExamples/onDark-dropdown-snowflake.html -->
381
386
  <!-- Example of counter-group properties -->
382
387
  <auro-counter-group max="10" min="2" isDropdown layout="snowflake" ondark>
388
+ <span slot="ariaLabel.bib.close">Close Popup</span>
383
389
  <div slot="bib.fullscreen.headline">Group fullscreen label</div>
384
390
  <auro-icon slot="typeIcon" category="interface" name="account-stroke" customColor></auro-icon>
385
391
  <div slot="label">Snowflake Dropdown Group</div>
@@ -7471,7 +7471,7 @@ var dropdownVersion = '3.0.0';
7471
7471
 
7472
7472
  var colorCss$3 = i$5`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
7473
7473
 
7474
- var styleCss$4 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7474
+ var styleCss$4 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7475
7475
 
7476
7476
  var tokenCss = i$5`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
7477
7477
 
@@ -9379,8 +9379,9 @@ class AuroBibtemplate extends i$2 {
9379
9379
  <${this.headerTag} class="header" display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
9380
9380
  <slot name="header"></slot>
9381
9381
  </${this.headerTag}>
9382
- <${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9383
- <${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
9382
+ <${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9383
+ <span><slot name="ariaLabel.close">Close</slot></span>
9384
+ <${this.iconTag} aria-hidden="true" category="interface" name="x-lg"></${this.iconTag}>
9384
9385
  </${this.buttonTag}>
9385
9386
  </div>
9386
9387
  <span class="subheader">
@@ -9572,6 +9573,7 @@ class AuroElement extends i$2 {
9572
9573
  * @element auro-counter-group
9573
9574
  * @extends LitElement
9574
9575
  * @slot default - Slot for counter elements.
9576
+ * @slot ariaLabel.bib.close - Sets aria-label on close button in fullscreen bib
9575
9577
  * @slot bib.fullscreen.headline - Defines the headline to display above menu-options. Only used when `isDropdown` is true. Required.
9576
9578
  * @slot bib.fullscreen.footer - Defines the footer to display at the bottom of fullscreen bib. Only used when `isDropdown` is true.
9577
9579
  * @slot label - Dropdown label content. Only used when `isDropdown` is true.
@@ -10259,6 +10261,7 @@ class AuroCounterGroup extends AuroElement {
10259
10261
  renderBibTemplate() {
10260
10262
  return u`
10261
10263
  <${this.bibtemplateTag} ?large="${this.largeFullscreenHeadline}">
10264
+ <slot name="ariaLabel.bib.close" slot="ariaLabel.close">Close</slot>
10262
10265
  ${this.renderCounterGroup(true)}
10263
10266
  </${this.bibtemplateTag}>
10264
10267
  `;
@@ -7,6 +7,7 @@
7
7
  * @element auro-counter-group
8
8
  * @extends LitElement
9
9
  * @slot default - Slot for counter elements.
10
+ * @slot ariaLabel.bib.close - Sets aria-label on close button in fullscreen bib
10
11
  * @slot bib.fullscreen.headline - Defines the headline to display above menu-options. Only used when `isDropdown` is true. Required.
11
12
  * @slot bib.fullscreen.footer - Defines the footer to display at the bottom of fullscreen bib. Only used when `isDropdown` is true.
12
13
  * @slot label - Dropdown label content. Only used when `isDropdown` is true.
@@ -7424,7 +7424,7 @@ var dropdownVersion = '3.0.0';
7424
7424
 
7425
7425
  var colorCss$3 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
7426
7426
 
7427
- var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7427
+ var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7428
7428
 
7429
7429
  var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
7430
7430
 
@@ -9332,8 +9332,9 @@ class AuroBibtemplate extends LitElement {
9332
9332
  <${this.headerTag} class="header" display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
9333
9333
  <slot name="header"></slot>
9334
9334
  </${this.headerTag}>
9335
- <${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9336
- <${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
9335
+ <${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9336
+ <span><slot name="ariaLabel.close">Close</slot></span>
9337
+ <${this.iconTag} aria-hidden="true" category="interface" name="x-lg"></${this.iconTag}>
9337
9338
  </${this.buttonTag}>
9338
9339
  </div>
9339
9340
  <span class="subheader">
@@ -9525,6 +9526,7 @@ class AuroElement extends LitElement {
9525
9526
  * @element auro-counter-group
9526
9527
  * @extends LitElement
9527
9528
  * @slot default - Slot for counter elements.
9529
+ * @slot ariaLabel.bib.close - Sets aria-label on close button in fullscreen bib
9528
9530
  * @slot bib.fullscreen.headline - Defines the headline to display above menu-options. Only used when `isDropdown` is true. Required.
9529
9531
  * @slot bib.fullscreen.footer - Defines the footer to display at the bottom of fullscreen bib. Only used when `isDropdown` is true.
9530
9532
  * @slot label - Dropdown label content. Only used when `isDropdown` is true.
@@ -10212,6 +10214,7 @@ class AuroCounterGroup extends AuroElement {
10212
10214
  renderBibTemplate() {
10213
10215
  return html$1`
10214
10216
  <${this.bibtemplateTag} ?large="${this.largeFullscreenHeadline}">
10217
+ <slot name="ariaLabel.bib.close" slot="ariaLabel.close">Close</slot>
10215
10218
  ${this.renderCounterGroup(true)}
10216
10219
  </${this.bibtemplateTag}>
10217
10220
  `;
@@ -7424,7 +7424,7 @@ var dropdownVersion = '3.0.0';
7424
7424
 
7425
7425
  var colorCss$3 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
7426
7426
 
7427
- var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7427
+ var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
7428
7428
 
7429
7429
  var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
7430
7430
 
@@ -9332,8 +9332,9 @@ class AuroBibtemplate extends LitElement {
9332
9332
  <${this.headerTag} class="header" display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
9333
9333
  <slot name="header"></slot>
9334
9334
  </${this.headerTag}>
9335
- <${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9336
- <${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
9335
+ <${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
9336
+ <span><slot name="ariaLabel.close">Close</slot></span>
9337
+ <${this.iconTag} aria-hidden="true" category="interface" name="x-lg"></${this.iconTag}>
9337
9338
  </${this.buttonTag}>
9338
9339
  </div>
9339
9340
  <span class="subheader">
@@ -9525,6 +9526,7 @@ class AuroElement extends LitElement {
9525
9526
  * @element auro-counter-group
9526
9527
  * @extends LitElement
9527
9528
  * @slot default - Slot for counter elements.
9529
+ * @slot ariaLabel.bib.close - Sets aria-label on close button in fullscreen bib
9528
9530
  * @slot bib.fullscreen.headline - Defines the headline to display above menu-options. Only used when `isDropdown` is true. Required.
9529
9531
  * @slot bib.fullscreen.footer - Defines the footer to display at the bottom of fullscreen bib. Only used when `isDropdown` is true.
9530
9532
  * @slot label - Dropdown label content. Only used when `isDropdown` is true.
@@ -10212,6 +10214,7 @@ class AuroCounterGroup extends AuroElement {
10212
10214
  renderBibTemplate() {
10213
10215
  return html$1`
10214
10216
  <${this.bibtemplateTag} ?large="${this.largeFullscreenHeadline}">
10217
+ <slot name="ariaLabel.bib.close" slot="ariaLabel.close">Close</slot>
10215
10218
  ${this.renderCounterGroup(true)}
10216
10219
  </${this.bibtemplateTag}>
10217
10220
  `;
@@ -84,6 +84,7 @@ This configuration enables proper module resolution for the component's TypeScri
84
84
 
85
85
  ```html
86
86
  <auro-datepicker required="">
87
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
87
88
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
88
89
  <span slot="fromLabel">Choose a date</span>
89
90
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -75,6 +75,7 @@
75
75
 
76
76
  | Name | Description |
77
77
  |----------------------------|--------------------------------------------------|
78
+ | `ariaLabel.bib.close` | Sets aria-label on close button in fullscreen bib |
78
79
  | `bib.fullscreen.dateLabel` | Defines the content to display above selected dates in the mobile layout. |
79
80
  | `bib.fullscreen.headline` | Defines the headline to display above bib.fullscreen.dateLabels in the mobile layout. |
80
81
  | `date_MM_DD_YYYY` | 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. |
@@ -104,6 +105,7 @@
104
105
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basic.html) -->
105
106
  <!-- The below content is automatically added from ./../apiExamples/basic.html -->
106
107
  <auro-datepicker required="">
108
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
107
109
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
108
110
  <span slot="fromLabel">Choose a date</span>
109
111
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -117,6 +119,7 @@
117
119
 
118
120
  ```html
119
121
  <auro-datepicker required="">
122
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
120
123
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
121
124
  <span slot="fromLabel">Choose a date</span>
122
125
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -133,6 +136,7 @@ When used, the datepicker will display two inputs and the component will support
133
136
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basicRange.html) -->
134
137
  <!-- The below content is automatically added from ./../apiExamples/basicRange.html -->
135
138
  <auro-datepicker range minDate="07/08/2025">
139
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
136
140
  <span slot="bib.fullscreen.headline">Datepicker Range Headline</span>
137
141
  <span slot="fromLabel">Departure</span>
138
142
  <span slot="toLabel">Return</span>
@@ -147,6 +151,7 @@ When used, the datepicker will display two inputs and the component will support
147
151
 
148
152
  ```html
149
153
  <auro-datepicker range minDate="07/08/2025">
154
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
150
155
  <span slot="bib.fullscreen.headline">Datepicker Range Headline</span>
151
156
  <span slot="fromLabel">Departure</span>
152
157
  <span slot="toLabel">Return</span>
@@ -911,6 +916,7 @@ Sets the label used for the input. When the `range` attribute is used this is th
911
916
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basic.html) -->
912
917
  <!-- The below content is automatically added from ./../apiExamples/basic.html -->
913
918
  <auro-datepicker required="">
919
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
914
920
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
915
921
  <span slot="fromLabel">Choose a date</span>
916
922
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -924,6 +930,7 @@ Sets the label used for the input. When the `range` attribute is used this is th
924
930
 
925
931
  ```html
926
932
  <auro-datepicker required="">
933
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
927
934
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
928
935
  <span slot="fromLabel">Choose a date</span>
929
936
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -972,6 +979,7 @@ To view this demo, set your window to a mobile screen size.
972
979
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basic.html) -->
973
980
  <!-- The below content is automatically added from ./../apiExamples/basic.html -->
974
981
  <auro-datepicker required="">
982
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
975
983
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
976
984
  <span slot="fromLabel">Choose a date</span>
977
985
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -985,6 +993,7 @@ To view this demo, set your window to a mobile screen size.
985
993
 
986
994
  ```html
987
995
  <auro-datepicker required="">
996
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
988
997
  <span slot="bib.fullscreen.headline">Datepicker Headline</span>
989
998
  <span slot="fromLabel">Choose a date</span>
990
999
  <span slot="bib.fullscreen.dateLabel">Choose a date</span>
@@ -1001,6 +1010,7 @@ Only for use with the `range` attribute. Sets the label for the second input.
1001
1010
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basicRange.html) -->
1002
1011
  <!-- The below content is automatically added from ./../apiExamples/basicRange.html -->
1003
1012
  <auro-datepicker range minDate="07/08/2025">
1013
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
1004
1014
  <span slot="bib.fullscreen.headline">Datepicker Range Headline</span>
1005
1015
  <span slot="fromLabel">Departure</span>
1006
1016
  <span slot="toLabel">Return</span>
@@ -1015,6 +1025,7 @@ Only for use with the `range` attribute. Sets the label for the second input.
1015
1025
 
1016
1026
  ```html
1017
1027
  <auro-datepicker range minDate="07/08/2025">
1028
+ <span slot="ariaLabel.bib.close">Close Calendar</span>
1018
1029
  <span slot="bib.fullscreen.headline">Datepicker Range Headline</span>
1019
1030
  <span slot="fromLabel">Departure</span>
1020
1031
  <span slot="toLabel">Return</span>