@aurodesignsystem-dev/auro-formkit 0.0.0-pr1475.5 → 0.0.0-pr1477.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 (73) hide show
  1. package/components/bibtemplate/dist/auro-bibtemplate.d.ts +0 -7
  2. package/components/bibtemplate/dist/index.js +1 -9
  3. package/components/bibtemplate/dist/registered.js +1 -9
  4. package/components/checkbox/demo/customize.min.js +1 -1
  5. package/components/checkbox/demo/getting-started.min.js +1 -1
  6. package/components/checkbox/demo/index.min.js +1 -1
  7. package/components/checkbox/dist/index.js +1 -1
  8. package/components/checkbox/dist/registered.js +1 -1
  9. package/components/combobox/demo/customize.min.js +18 -234
  10. package/components/combobox/demo/getting-started.min.js +18 -234
  11. package/components/combobox/demo/index.min.js +18 -234
  12. package/components/combobox/demo/keyboard-behavior.md +68 -8
  13. package/components/combobox/dist/index.js +18 -234
  14. package/components/combobox/dist/registered.js +18 -234
  15. package/components/counter/demo/customize.min.js +15 -231
  16. package/components/counter/demo/index.min.js +15 -231
  17. package/components/counter/demo/keyboard-behavior.md +0 -1
  18. package/components/counter/dist/index.js +2 -10
  19. package/components/counter/dist/registered.js +2 -10
  20. package/components/datepicker/demo/accessibility.md +3 -51
  21. package/components/datepicker/demo/api.md +0 -9
  22. package/components/datepicker/demo/customize.html +0 -2
  23. package/components/datepicker/demo/customize.md +8 -72
  24. package/components/datepicker/demo/design.md +1 -3
  25. package/components/datepicker/demo/index.js +1 -5
  26. package/components/datepicker/demo/index.md +2 -82
  27. package/components/datepicker/demo/index.min.js +94 -1338
  28. package/components/datepicker/demo/keyboard-behavior.md +2 -201
  29. package/components/datepicker/demo/voiceover.md +12 -19
  30. package/components/datepicker/dist/index.js +112 -1280
  31. package/components/datepicker/dist/registered.js +112 -1280
  32. package/components/datepicker/dist/src/auro-calendar-cell.d.ts +1 -64
  33. package/components/datepicker/dist/src/auro-calendar-month.d.ts +0 -28
  34. package/components/datepicker/dist/src/auro-calendar.d.ts +0 -84
  35. package/components/datepicker/dist/src/auro-datepicker.d.ts +0 -80
  36. package/components/datepicker/dist/src/datepickerKeyboardStrategy.d.ts +3 -5
  37. package/components/dropdown/demo/accessibility.md +0 -11
  38. package/components/dropdown/demo/api.md +0 -1
  39. package/components/dropdown/demo/customize.md +0 -3
  40. package/components/dropdown/demo/customize.min.js +13 -221
  41. package/components/dropdown/demo/getting-started.min.js +13 -221
  42. package/components/dropdown/demo/index.min.js +13 -221
  43. package/components/dropdown/demo/keyboard-behavior.md +0 -1
  44. package/components/dropdown/dist/auro-dropdown.d.ts +1 -31
  45. package/components/dropdown/dist/index.js +13 -221
  46. package/components/dropdown/dist/registered.js +13 -221
  47. package/components/form/demo/customize.min.js +163 -1977
  48. package/components/form/demo/getting-started.min.js +163 -1977
  49. package/components/form/demo/index.min.js +163 -1977
  50. package/components/form/demo/registerDemoDeps.min.js +163 -1977
  51. package/components/input/demo/customize.min.js +1 -1
  52. package/components/input/demo/getting-started.min.js +1 -1
  53. package/components/input/demo/index.min.js +1 -1
  54. package/components/input/dist/index.js +1 -1
  55. package/components/input/dist/registered.js +1 -1
  56. package/components/radio/demo/getting-started.js +1 -1
  57. package/components/radio/demo/getting-started.md +1 -1
  58. package/components/radio/demo/index.min.js +1 -1
  59. package/components/radio/dist/index.js +1 -1
  60. package/components/radio/dist/registered.js +1 -1
  61. package/components/select/demo/customize.min.js +33 -247
  62. package/components/select/demo/getting-started.min.js +33 -247
  63. package/components/select/demo/index.min.js +33 -247
  64. package/components/select/demo/keyboard-behavior.md +54 -9
  65. package/components/select/dist/index.js +33 -247
  66. package/components/select/dist/registered.js +33 -247
  67. package/custom-elements.json +5 -677
  68. package/package.json +2 -2
  69. package/components/datepicker/demo/customize.js +0 -19
  70. package/components/datepicker/demo/customize.min.js +0 -25805
  71. package/components/radio/demo/customize.min.js +0 -2186
  72. package/components/radio/demo/demo-support.min.js +0 -55807
  73. package/components/radio/demo/getting-started.min.js +0 -2205
@@ -1232,7 +1232,7 @@ const comboboxKeyboardStrategy = {
1232
1232
 
1233
1233
  // navigate if bib is open otherwise open it
1234
1234
  if (component.dropdown.isPopoverVisible) {
1235
- if (evt.altKey || evt.metaKey) {
1235
+ if (evt.altKey || evt.ctrlKey || evt.metaKey) {
1236
1236
  component.activateLastEnabledAvailableOption();
1237
1237
  } else {
1238
1238
  navigateArrow(component, 'down');
@@ -1255,7 +1255,7 @@ const comboboxKeyboardStrategy = {
1255
1255
 
1256
1256
  // navigate if bib is open otherwise open it
1257
1257
  if (component.dropdown.isPopoverVisible) {
1258
- if (evt.altKey || evt.metaKey) {
1258
+ if (evt.altKey || evt.ctrlKey || evt.metaKey) {
1259
1259
  component.activateFirstEnabledAvailableOption();
1260
1260
  } else {
1261
1261
  navigateArrow(component, 'up');
@@ -4580,7 +4580,7 @@ function applyKeyboardStrategy(component, strategy, options = {}) {
4580
4580
  });
4581
4581
  }
4582
4582
 
4583
- var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host dialog{width:auto;max-width:none;height:auto;max-height:none;padding:0;border:none;margin:0;outline:none;transform:translateZ(0)}:host dialog::backdrop{background:transparent}:host(:not([isfullscreen])) dialog{position:relative;inset:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}:host(:not([isfullscreen])) .container[class*=shape-rounded]{border-radius:16px}:host([desktopmodal]:popover-open)::backdrop{background:transparent}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([isfullscreen]) .container::backdrop{background:var(--ds-color-background-primary, #fff)}:host(:popover-open){position:fixed;overflow:visible;padding:0;border:none;margin:0;background:transparent;inset:unset;outline:none}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}.util_displayHiddenVisually{position:absolute;overflow:hidden;width:1px;height:1px;padding:0;border:0;margin:-1px;clip-path:inset(50%);white-space:nowrap}`;
4583
+ var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host dialog{width:auto;max-width:none;height:auto;max-height:none;padding:0;border:none;margin:0;outline:none;transform:translateZ(0)}:host dialog::backdrop{background:transparent}:host(:not([isfullscreen])) dialog{position:relative;inset:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}:host(:not([isfullscreen])) .container[class*=shape-rounded]{border-radius:16px}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([isfullscreen]) .container::backdrop{background:var(--ds-color-background-primary, #fff)}:host(:popover-open){position:fixed;overflow:visible;padding:0;border:none;margin:0;background:transparent;inset:unset;outline:none}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}.util_displayHiddenVisually{position:absolute;overflow:hidden;width:1px;height:1px;padding:0;border:0;margin:-1px;clip-path:inset(50%);white-space:nowrap}`;
4584
4584
 
4585
4585
  var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
4586
4586
 
@@ -5211,7 +5211,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
5211
5211
  }
5212
5212
  };
5213
5213
 
5214
- var formkitVersion$2 = '202605190111';
5214
+ var formkitVersion$2 = '202605192014';
5215
5215
 
5216
5216
  let AuroElement$2 = class AuroElement extends LitElement {
5217
5217
  static get properties() {
@@ -5391,7 +5391,6 @@ class AuroDropdown extends AuroElement$2 {
5391
5391
  _intializeDefaults() {
5392
5392
  this.appearance = 'default';
5393
5393
  this.chevron = false;
5394
- this.desktopModal = false;
5395
5394
  this.disabled = false;
5396
5395
  this.disableKeyboardHandling = false;
5397
5396
  this.error = false;
@@ -5572,14 +5571,6 @@ class AuroDropdown extends AuroElement$2 {
5572
5571
  reflect: true
5573
5572
  },
5574
5573
 
5575
- /**
5576
- * If declared, the dropdown will behave as a modal dialog when in a desktop viewport size.
5577
- */
5578
- desktopModal: {
5579
- type: Boolean,
5580
- reflect: true
5581
- },
5582
-
5583
5574
  /**
5584
5575
  * If declared, the dropdown will only show by calling the API .show() public method.
5585
5576
  */
@@ -5867,15 +5858,6 @@ class AuroDropdown extends AuroElement$2 {
5867
5858
 
5868
5859
  disconnectedCallback() {
5869
5860
  super.disconnectedCallback();
5870
- this._clearPageInert();
5871
- if (this._bibTabHandler) {
5872
- this.removeEventListener('keydown', this._bibTabHandler);
5873
- this._bibTabHandler = undefined;
5874
- }
5875
- if (this.focusTrap) {
5876
- this.focusTrap.disconnect();
5877
- this.focusTrap = undefined;
5878
- }
5879
5861
  if (this.floater) {
5880
5862
  this.floater.hideBib('disconnect');
5881
5863
  this.floater.disconnect();
@@ -5903,45 +5885,19 @@ class AuroDropdown extends AuroElement$2 {
5903
5885
  if (this.isPopoverVisible) {
5904
5886
  // Fullscreen: use showModal() for native accessibility (inert outside, focus trap)
5905
5887
  // Desktop: use show() for Floating UI positioning + FocusTrap for focus management
5906
- this.bibElement.value.open(this.isBibFullscreen);
5907
- this.updateFocusTrap();
5908
-
5909
- // Desktop modal: make siblings inert so content outside is not interactive
5910
- if (this.desktopModal && !this.isBibFullscreen) {
5911
- this._setPageInert();
5912
- }
5888
+ const useModal = this.isBibFullscreen;
5889
+ this.bibElement.value.open(useModal);
5913
5890
  } else {
5914
5891
  this.bibElement.value.close();
5915
- this._clearPageInert();
5916
5892
  }
5917
5893
  }
5918
5894
 
5919
5895
  // When fullscreen strategy changes while open, re-open dialog with correct mode
5920
5896
  // (e.g. resizing from desktop → mobile while dropdown is open)
5921
5897
  if (changedProperties.has('isBibFullscreen') && this.isPopoverVisible && this.bibElement.value) {
5898
+ const useModal = this.isBibFullscreen;
5922
5899
  this.bibElement.value.close();
5923
- this.bibElement.value.open(this.isBibFullscreen);
5924
-
5925
- // Re-initialize focus management for the new strategy
5926
- this.updateFocusTrap();
5927
-
5928
- // Toggle inert: desktop modal needs it, fullscreen showModal() handles it natively
5929
- if (this.desktopModal && !this.isBibFullscreen) {
5930
- this._setPageInert();
5931
- } else {
5932
- this._clearPageInert();
5933
- }
5934
- }
5935
-
5936
- // Handle desktopModal toggled while the dropdown is already open.
5937
- // Re-initialize focus trapping and page inert state to match the new mode.
5938
- if (changedProperties.has('desktopModal') && this.isPopoverVisible && !this.isBibFullscreen) {
5939
- this.updateFocusTrap();
5940
- if (this.desktopModal) {
5941
- this._setPageInert();
5942
- } else {
5943
- this._clearPageInert();
5944
- }
5900
+ this.bibElement.value.open(useModal);
5945
5901
  }
5946
5902
  }
5947
5903
 
@@ -5951,14 +5907,8 @@ class AuroDropdown extends AuroElement$2 {
5951
5907
  * @param {CustomEvent} event - The custom event that contains the dropdown toggle information.
5952
5908
  */
5953
5909
  handleDropdownToggle(event) {
5910
+ this.updateFocusTrap();
5954
5911
  this.isPopoverVisible = event.detail.expanded;
5955
-
5956
- // Tear down FocusTrap when closing. Creation happens in updated()
5957
- // after the dialog is open so getFocusableElements can find content.
5958
- if (!this.isPopoverVisible) {
5959
- this.updateFocusTrap();
5960
- }
5961
-
5962
5912
  const eventType = event.detail.eventType || "unknown";
5963
5913
  if (!this.isPopoverVisible && this.hasFocus && eventType === "keydown") {
5964
5914
  this.trigger.focus();
@@ -6057,176 +6007,19 @@ class AuroDropdown extends AuroElement$2 {
6057
6007
  * @private
6058
6008
  */
6059
6009
  updateFocusTrap() {
6060
- // Always clean up existing handlers/traps before setting up new ones
6061
- // to prevent duplicate listeners on repeated calls.
6062
- if (this._bibTabHandler) {
6063
- this.removeEventListener('keydown', this._bibTabHandler);
6064
- this._bibTabHandler = undefined;
6065
- }
6066
-
6067
- if (this.focusTrap) {
6068
- this.focusTrap.disconnect();
6069
- this.focusTrap = undefined;
6070
- }
6071
-
6072
6010
  if (this.isPopoverVisible) {
6073
6011
  if (!this.isBibFullscreen) {
6074
- if (this.desktopModal) {
6075
- // Desktop modal: trap focus only within the bib content.
6076
- // Can't use FocusTrap on the bib element because keydown events
6077
- // from slotted content bubble through the dropdown host (light DOM),
6078
- // not through the bib (shadow projection target). Using FocusTrap
6079
- // on the dropdown would include the trigger in the tab cycle.
6080
- // Instead, listen for Tab on the dropdown and manually wrap focus
6081
- // within the bib's focusable elements.
6082
- this._bibTabHandler = (event) => {
6083
- if (event.key !== 'Tab') {
6084
- return;
6085
- }
6086
-
6087
- // Collect focusable elements from the bib content.
6088
- const focusables = getFocusableElements(this.bibContent);
6089
-
6090
- // Fallback: try from slotted content directly
6091
- if (!focusables.length) {
6092
- const slot = this.shadowRoot.querySelector('.slotContent slot');
6093
- const assignedNodes = slot ? slot.assignedNodes({ flatten: true }) : [];
6094
-
6095
- for (const node of assignedNodes) {
6096
- if (node.nodeType === Node.ELEMENT_NODE) {
6097
- focusables.push(...getFocusableElements(node));
6098
- }
6099
- }
6100
- }
6101
-
6102
- if (!focusables.length) {
6103
- return;
6104
- }
6105
-
6106
- event.preventDefault();
6107
-
6108
- const direction = event.shiftKey ? -1 : 1; // eslint-disable-line no-magic-numbers
6109
-
6110
- // Walk the active element chain through shadow roots
6111
- const actives = this._getActiveElements();
6112
-
6113
- let idx = focusables.findIndex((el) => actives.includes(el));
6114
-
6115
- if (idx === -1) { // eslint-disable-line no-magic-numbers
6116
- // Focus is not on a known element — move to first/last
6117
- idx = direction === 1 ? -1 : focusables.length; // eslint-disable-line no-magic-numbers
6118
- }
6119
-
6120
- // Try each element in order, skipping any that can't receive focus
6121
- // (e.g. hidden elements, elements in collapsed sections)
6122
- for (let index = 0; index < focusables.length; index++) { // eslint-disable-line no-plusplus
6123
- let nextIdx = idx + direction;
6124
-
6125
- // Wrap around
6126
- if (nextIdx < 0) {
6127
- nextIdx = focusables.length - 1;
6128
- } else if (nextIdx >= focusables.length) {
6129
- nextIdx = 0;
6130
- }
6131
-
6132
- focusables[nextIdx].focus();
6133
-
6134
- // Verify focus actually moved to the target
6135
- const newActives = this._getActiveElements();
6136
-
6137
- if (newActives.includes(focusables[nextIdx])) {
6138
- return;
6139
- }
6140
-
6141
- // Focus didn't stick — skip this element and try the next
6142
- idx = nextIdx;
6143
- }
6144
- };
6145
- this.addEventListener('keydown', this._bibTabHandler);
6146
-
6147
- // Move initial focus into the bib content, matching FocusTrap behavior
6148
- requestAnimationFrame(() => {
6149
- const focusables = getFocusableElements(this.bibContent);
6150
- if (focusables.length) {
6151
- focusables[0].focus();
6152
- }
6153
- });
6154
- } else {
6155
- // Normal desktop: use FocusTrap on the bib element
6156
- this.focusTrap = new FocusTrap(this.bibContent);
6157
- this.focusTrap.focusFirstElement();
6158
- }
6012
+ // Desktop: show() doesn't trap focus, so use FocusTrap
6013
+ this.focusTrap = new FocusTrap(this.bibContent);
6014
+ this.focusTrap.focusFirstElement();
6159
6015
  }
6160
6016
  // Fullscreen: showModal() provides native focus trapping
6161
- }
6162
- }
6163
-
6164
- /**
6165
- * Returns the chain of active (focused) elements through shadow roots.
6166
- * @private
6167
- * @returns {Array<HTMLElement>}
6168
- */
6169
- _getActiveElements() {
6170
- let { activeElement } = document;
6171
- const actives = [activeElement];
6172
-
6173
- while (activeElement?.shadowRoot?.activeElement) {
6174
- activeElement = activeElement.shadowRoot.activeElement;
6175
- actives.push(activeElement);
6176
- }
6177
-
6178
- return actives;
6179
- }
6180
-
6181
- /**
6182
- * Sets `inert` on sibling elements of the dropdown's top-level host
6183
- * so that content outside the dropdown is not interactive while the modal is open.
6184
- * Walks up through shadow DOM boundaries to find the outermost host element
6185
- * in the light DOM, then sets `inert` on siblings at each ancestor level
6186
- * to ensure all page content outside the host subtree is inert.
6187
- * @private
6188
- */
6189
- _setPageInert() {
6190
- if (this._inertSiblings) {
6191
6017
  return;
6192
6018
  }
6193
6019
 
6194
- this._inertSiblings = [];
6195
-
6196
- // Walk up through shadow DOM boundaries to find the topmost host
6197
- // element in the light DOM. For example, if this dropdown is inside
6198
- // auro-datepicker's shadow DOM, we walk up to the datepicker element
6199
- // so we set inert on its siblings — not on the datepicker itself.
6200
- let host = this;
6201
- while (host.getRootNode() instanceof ShadowRoot) {
6202
- host = host.getRootNode().host;
6203
- }
6204
-
6205
- // Walk up the ancestor chain, inerting siblings at each level
6206
- // to ensure the entire page outside the host subtree is inert.
6207
- let current = host;
6208
- while (current.parentElement) {
6209
- const parent = current.parentElement;
6210
- for (const sibling of parent.children) {
6211
- if (sibling !== current && !sibling.inert) {
6212
- sibling.inert = true;
6213
- this._inertSiblings.push(sibling);
6214
- }
6215
- }
6216
- current = parent;
6217
- }
6218
- }
6219
-
6220
- /**
6221
- * Restores `inert` state on siblings that were made inert by `_setPageInert`.
6222
- * @private
6223
- */
6224
- _clearPageInert() {
6225
- if (this._inertSiblings) {
6226
- for (const sibling of this._inertSiblings) {
6227
- sibling.inert = false;
6228
- }
6229
- this._inertSiblings = undefined;
6020
+ if (this.focusTrap) {
6021
+ this.focusTrap.disconnect();
6022
+ this.focusTrap = undefined;
6230
6023
  }
6231
6024
  }
6232
6025
 
@@ -6465,7 +6258,6 @@ class AuroDropdown extends AuroElement$2 {
6465
6258
  shape="${this.shape}"
6466
6259
  ?data-show="${this.isPopoverVisible}"
6467
6260
  ?isfullscreen="${this.isBibFullscreen}"
6468
- ?desktopmodal="${this.desktopModal}"
6469
6261
  .dialogLabel="${this.bibDialogLabel}"
6470
6262
  ${ref(this.bibElement)}
6471
6263
  >
@@ -13164,7 +12956,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
13164
12956
  }
13165
12957
  };
13166
12958
 
13167
- var formkitVersion$1 = '202605190111';
12959
+ var formkitVersion$1 = '202605192014';
13168
12960
 
13169
12961
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
13170
12962
  // See LICENSE in the project root for license information.
@@ -14118,14 +13910,6 @@ class AuroBibtemplate extends LitElement {
14118
13910
  large: {
14119
13911
  type: Boolean,
14120
13912
  reflect: true
14121
- },
14122
-
14123
- /**
14124
- * If declared, the footer slot will be rendered even when not in fullscreen mode.
14125
- */
14126
- showFooter: {
14127
- type: Boolean,
14128
- reflect: true
14129
13913
  }
14130
13914
  };
14131
13915
  }
@@ -14228,7 +14012,7 @@ class AuroBibtemplate extends LitElement {
14228
14012
  <slot></slot>
14229
14013
  </div>
14230
14014
 
14231
- ${this.isFullscreen || this.showFooter ? html`
14015
+ ${this.isFullscreen ? html`
14232
14016
  <div id="footerContainer">
14233
14017
  <slot name="footer"></slot>
14234
14018
  </div>` : null}
@@ -14237,7 +14021,7 @@ class AuroBibtemplate extends LitElement {
14237
14021
  }
14238
14022
  }
14239
14023
 
14240
- var formkitVersion = '202605190111';
14024
+ var formkitVersion = '202605192014';
14241
14025
 
14242
14026
  var styleCss$1 = css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
14243
14027