@aquera/nile-elements 1.4.4-beta-1.2 → 1.4.5-beta-1.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 (45) hide show
  1. package/README.md +3 -0
  2. package/demo/index.html +3 -7
  3. package/demo/variables.css +1 -0
  4. package/dist/index.js +11 -11
  5. package/dist/nile-auto-complete/nile-auto-complete.cjs.js +1 -1
  6. package/dist/nile-auto-complete/nile-auto-complete.cjs.js.map +1 -1
  7. package/dist/nile-auto-complete/nile-auto-complete.esm.js +3 -3
  8. package/dist/nile-chip/nile-chip.cjs.js +1 -1
  9. package/dist/nile-chip/nile-chip.cjs.js.map +1 -1
  10. package/dist/nile-chip/nile-chip.esm.js +11 -11
  11. package/dist/nile-dropdown/nile-dropdown.cjs.js +1 -1
  12. package/dist/nile-dropdown/nile-dropdown.cjs.js.map +1 -1
  13. package/dist/nile-dropdown/nile-dropdown.esm.js +2 -2
  14. package/dist/nile-toast/nile-toast.cjs.js +1 -1
  15. package/dist/nile-toast/nile-toast.cjs.js.map +1 -1
  16. package/dist/nile-toast/nile-toast.esm.js +2 -2
  17. package/dist/src/nile-accesibility/index.d.ts +1 -0
  18. package/dist/src/nile-accesibility/index.js +2 -0
  19. package/dist/src/nile-accesibility/index.js.map +1 -0
  20. package/dist/src/nile-accesibility/nile-accesibility.css.d.ts +12 -0
  21. package/dist/src/nile-accesibility/nile-accesibility.css.js +41 -0
  22. package/dist/src/nile-accesibility/nile-accesibility.css.js.map +1 -0
  23. package/dist/src/nile-accesibility/nile-accesibility.d.ts +18 -0
  24. package/dist/src/nile-accesibility/nile-accesibility.js +61 -0
  25. package/dist/src/nile-accesibility/nile-accesibility.js.map +1 -0
  26. package/dist/src/nile-auto-complete/nile-auto-complete.d.ts +1 -0
  27. package/dist/src/nile-auto-complete/nile-auto-complete.js +13 -3
  28. package/dist/src/nile-auto-complete/nile-auto-complete.js.map +1 -1
  29. package/dist/src/nile-chip/nile-chip.d.ts +2 -0
  30. package/dist/src/nile-chip/nile-chip.js +10 -4
  31. package/dist/src/nile-chip/nile-chip.js.map +1 -1
  32. package/dist/src/nile-dropdown/nile-dropdown.js +4 -0
  33. package/dist/src/nile-dropdown/nile-dropdown.js.map +1 -1
  34. package/dist/src/nile-toast/nile-toast.d.ts +1 -1
  35. package/dist/src/nile-toast/nile-toast.js +4 -4
  36. package/dist/src/nile-toast/nile-toast.js.map +1 -1
  37. package/dist/src/version.js +1 -1
  38. package/dist/src/version.js.map +1 -1
  39. package/dist/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +1 -1
  41. package/src/nile-auto-complete/nile-auto-complete.ts +9 -3
  42. package/src/nile-chip/nile-chip.ts +5 -10
  43. package/src/nile-dropdown/nile-dropdown.ts +3 -0
  44. package/src/nile-toast/nile-toast.ts +4 -4
  45. package/vscode-html-custom-data.json +16 -2
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "1.4.4-beta-1.2",
6
+ "version": "1.4.5-beta-1.0",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -71,6 +71,7 @@ export class NileAutoComplete extends NileElement {
71
71
 
72
72
  @property({ type: Boolean, reflect: true }) enableTabClose = false;
73
73
 
74
+ @property({ type: Boolean, reflect: true, attribute: true }) noDropdownClose = false;
74
75
 
75
76
  @state() menuItems: any = [];
76
77
 
@@ -225,7 +226,7 @@ enableTabClose: this.enableTabClose,
225
226
  public render(): TemplateResult {
226
227
  const content=this.enableVirtualScroll?this.getVirtualizedContent():this.getContent();
227
228
  return html`
228
- <nile-dropdown class="nile-dropdown--input" ?open=${this.isDropdownOpen} noOpenOnCLick exportparts="input, base">
229
+ <nile-dropdown class="nile-dropdown--input" ?open=${this.isDropdownOpen} ?stay-open-on-select=${this.noDropdownClose} noOpenOnCLick exportparts="input, base">
229
230
  <nile-input class="nile-auto-complete--input"
230
231
  ?no-border=${this.noBorder}
231
232
  ?no-outline=${this.noOutline}
@@ -308,8 +309,13 @@ enableTabClose: this.enableTabClose,
308
309
  handleSelect(event: CustomEvent) {
309
310
  this.value = event.detail.value;
310
311
  this.emit('nile-complete', { value: event.detail.value });
311
- this.isDropdownOpen = false;
312
- this.dropdownElement?.hide();
312
+ if (this.noDropdownClose) {
313
+ this.isDropdownOpen = true;
314
+ this.dropdownElement?.show();
315
+ } else {
316
+ this.isDropdownOpen = false;
317
+ this.dropdownElement?.hide();
318
+ }
313
319
  }
314
320
 
315
321
  private setVirtualMenuWidth() {
@@ -127,9 +127,11 @@ export class NileChip extends NileElement {
127
127
 
128
128
  @property({ type: Boolean }) enableTagDelete = false;
129
129
 
130
- private isSelectingFromDropdown = false;
130
+ @property({ type: String, reflect: true, attribute: true }) openDropdownOnFocus: string = 'true';
131
131
 
132
+ @property({ type: Boolean, reflect: true, attribute: true }) noDropdownClose = false;
132
133
 
134
+ private isSelectingFromDropdown = false;
133
135
  private resetDropdownState() {
134
136
  this.isSelectingFromDropdown = false;
135
137
  }
@@ -206,12 +208,9 @@ export class NileChip extends NileElement {
206
208
  const path = event.composedPath();
207
209
 
208
210
  if (this.isSelectingFromDropdown) {
209
- // Do NOT process addOnBlur while selecting dropdown
210
211
  this.resetDropdownState();
211
212
  return;
212
213
  }
213
-
214
- // User clicked outside chip → normal addOnBlur path
215
214
  if (!path.includes(this)) {
216
215
  if (this.addOnBlur && this.acceptUserInput && this.inputValue) {
217
216
  this.addChipFromInputValue();
@@ -220,8 +219,6 @@ export class NileChip extends NileElement {
220
219
  }
221
220
  };
222
221
 
223
-
224
-
225
222
  connectedCallback() {
226
223
  super.connectedCallback();
227
224
  document.addEventListener('click', this.handleDocumentClick);
@@ -358,7 +355,7 @@ export class NileChip extends NileElement {
358
355
  .disabled=${this.disabled}
359
356
  .readonly=${this.readonly}
360
357
  .portal=${this.portal}
361
- openOnFocus
358
+ ?openOnFocus=${this.openDropdownOnFocus === 'true' ? true : false}
362
359
  exportparts="options__wrapper, input, base"
363
360
  .placeholder=${this.placeholder}
364
361
  @nile-input=${this.handleInputChange}
@@ -367,7 +364,7 @@ export class NileChip extends NileElement {
367
364
  @nile-blur=${this.handleBlur}
368
365
  @nile-complete=${this.handleSelect}
369
366
  @mousedown=${this.markDropdownSelectStart}
370
-
367
+ .noDropdownClose=${this.noDropdownClose}
371
368
  ></nile-auto-complete>
372
369
  `}
373
370
  </div>
@@ -389,7 +386,6 @@ export class NileChip extends NileElement {
389
386
  private handleSelect(event: CustomEvent<CustomEventDetail>) {
390
387
  this.isSelectingFromDropdown = false;
391
388
  this.resetDropdownState();
392
-
393
389
  // Add the selected value to the tags array only if it doesn't already exist
394
390
  const selectedValue = event.detail.value;
395
391
  const selectedOption = this.autoCompleteOptions.find(
@@ -556,7 +552,6 @@ export class NileChip extends NileElement {
556
552
 
557
553
  private handleBlur() {
558
554
  if (this.isSelectingFromDropdown) return;
559
-
560
555
  if (this.addOnBlur && this.acceptUserInput && this.inputValue) {
561
556
  this.addChipFromInputValue();
562
557
  }
@@ -279,6 +279,9 @@ export class NileDropdown extends NileElement {
279
279
  if (!this.stayOpenOnSelect && target.tagName.toLowerCase() === 'nile-menu') {
280
280
  this.hide();
281
281
  this.focusOnTrigger();
282
+ } else if(this.stayOpenOnSelect && target.tagName.toLowerCase() === 'nile-menu') {
283
+ this.show();
284
+ this.focusOnTrigger();
282
285
  }
283
286
  }
284
287
 
@@ -192,13 +192,13 @@ export class NileToast extends NileElement {
192
192
  getIconNameByVariant() {
193
193
  switch (this.variant) {
194
194
  case 'success':
195
- return 'var(--nile-icon-check-circle, var(--ng-icon-check-circle))';
195
+ return 'var(--nile-icon-radiodone, var(--ng-icon-check-circle))';
196
196
  case 'info':
197
197
  return 'var(--nile-icon-info, var(--ng-icon-info-circle))';
198
198
  case 'warning':
199
- return 'var(--nile-icon-alert-circle, var(--ng-icon-alert-circle))';
199
+ return 'var(--nile-icon-warning, var(--ng-icon-alert-circle))';
200
200
  case 'error':
201
- return 'var(--nile-icon-alert-circle, var(--ng-icon-alert-circle))';
201
+ return 'var(--nile-icon-warning, var(--ng-icon-alert-circle))';
202
202
  case 'gray':
203
203
  return 'var(--nile-icon-info, var(--ng-icon-info-circle))';
204
204
  case 'black':
@@ -315,7 +315,7 @@ export class NileToast extends NileElement {
315
315
  name="${this.getIconNameByVariant()}"
316
316
  size="20"
317
317
  color="${this.getIconColorByVariant()}"
318
- method="var(--nile-svg-method-stroke, var(--ng-svg-method-stroke))"
318
+ method="var(--nile-svg-method-fill, var(--ng-svg-method-stroke))"
319
319
  ></nile-icon>
320
320
  </div>
321
321
  `
@@ -62,7 +62,7 @@
62
62
  },
63
63
  {
64
64
  "name": "nile-auto-complete",
65
- "description": "Attributes:\n\n * `disabled` {`boolean`} - \n\n * `isDropdownOpen` {`boolean`} - \n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `enableVirtualScroll` {`boolean`} - \n\n * `openOnFocus` {`boolean`} - \n\n * `value` {`string`} - \n\n * `placeholder` {`string`} - \n\n * `noBorder` {`boolean`} - \n\n * `noOutline` {`boolean`} - \n\n * `noPadding` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `allMenuItems` - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\nProperties:\n\n * `styles` - \n\n * `visibilityManager` - \n\n * `dropdownElement` - \n\n * `inputElement` - \n\n * `disabled` {`boolean`} - \n\n * `isDropdownOpen` {`boolean`} - \n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `portalManager` - \n\n * `enableVirtualScroll` {`boolean`} - \n\n * `openOnFocus` {`boolean`} - \n\n * `value` {`string`} - \n\n * `placeholder` {`string`} - \n\n * `noBorder` {`boolean`} - \n\n * `noOutline` {`boolean`} - \n\n * `noPadding` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `filterFunction` - \n\n * `renderItemFunction` - \n\n * `allMenuItems` - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `menuItems` - \n\n * `handleWindowResize` - \n\n * `handleWindowScroll` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
65
+ "description": "Attributes:\n\n * `disabled` {`boolean`} - \n\n * `isDropdownOpen` {`boolean`} - \n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `enableVirtualScroll` {`boolean`} - \n\n * `openOnFocus` {`boolean`} - \n\n * `value` {`string`} - \n\n * `placeholder` {`string`} - \n\n * `noBorder` {`boolean`} - \n\n * `noOutline` {`boolean`} - \n\n * `noPadding` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `allMenuItems` - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `noDropdownClose` {`boolean`} - \n\nProperties:\n\n * `styles` - \n\n * `visibilityManager` - \n\n * `dropdownElement` - \n\n * `inputElement` - \n\n * `disabled` {`boolean`} - \n\n * `isDropdownOpen` {`boolean`} - \n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `portalManager` - \n\n * `enableVirtualScroll` {`boolean`} - \n\n * `openOnFocus` {`boolean`} - \n\n * `value` {`string`} - \n\n * `placeholder` {`string`} - \n\n * `noBorder` {`boolean`} - \n\n * `noOutline` {`boolean`} - \n\n * `noPadding` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `filterFunction` - \n\n * `renderItemFunction` - \n\n * `allMenuItems` - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `noDropdownClose` {`boolean`} - \n\n * `menuItems` - \n\n * `handleWindowResize` - \n\n * `handleWindowScroll` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
66
66
  "attributes": [
67
67
  {
68
68
  "name": "disabled",
@@ -130,6 +130,11 @@
130
130
  "name": "enableTabClose",
131
131
  "description": "`enableTabClose` {`boolean`} - \n\nProperty: enableTabClose\n\nDefault: false",
132
132
  "valueSet": "v"
133
+ },
134
+ {
135
+ "name": "noDropdownClose",
136
+ "description": "`noDropdownClose` {`boolean`} - \n\nProperty: noDropdownClose\n\nDefault: false",
137
+ "valueSet": "v"
133
138
  }
134
139
  ]
135
140
  },
@@ -809,7 +814,7 @@
809
814
  },
810
815
  {
811
816
  "name": "nile-chip",
812
- "description": "Attributes:\n\n * `warning` {`boolean`} - Sets the input to a warning state, changing its visual appearance.\n\n * `noAutoComplete` {`boolean`} - \n\n * `error` {`boolean`} - Sets the input to an error state, changing its visual appearance.\n\n * `success` {`boolean`} - Sets the input to a success state, changing its visual appearance.\n\n * `noDuplicates` {`boolean`} - Disables the duplicate entries.\n\n * `label` {`string`} - The input's label. If you need to display HTML, use the `label` slot instead.\n\n * `tagVariant` {`string`} - \n\n * `acceptUserInput` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `addOnBlur` {`boolean`} - When true, adds a chip when the input loses focus or when clicking outside the component. Only works when acceptUserInput is true.\n\n * `clearable` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `placeholder` {`string`} - Placeholder text to show as a hint when the input is empty.\n\n * `readonly` {`boolean`} - Makes the input readonly.\n\n * `disabled` {`boolean`} - Disables the input.\n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `enableVirtualScroll` {`boolean`} - Virtual scroll in dropdown options.\n\n * `autoCompleteOptions` {`any[]`} - \n\n * `filteredAutoCompleteOptions` {`any[]`} - \n\n * `value` {`any[]`} - \n\n * `noWrap` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `errorIndexes` {`number[]`} - \n\n * `help-text` {`string`} - \n\n * `error-message` {`string`} - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `showTooltip` {`boolean`} - \n\n * `enableTagDelete` {`boolean`} - \n\nProperties:\n\n * `hasSlotController` - \n\n * `tags` {`string[]`} - \n\n * `inputValue` {`string`} - \n\n * `isDropdownOpen` {`boolean`} - \n\n * `tooltips` {`(string | null)[]`} - \n\n * `chipFocusIndex` {`number | null`} - \n\n * `autoComplete` - \n\n * `warning` {`boolean`} - Sets the input to a warning state, changing its visual appearance.\n\n * `noAutoComplete` {`boolean`} - \n\n * `error` {`boolean`} - Sets the input to an error state, changing its visual appearance.\n\n * `success` {`boolean`} - Sets the input to a success state, changing its visual appearance.\n\n * `noDuplicates` {`boolean`} - Disables the duplicate entries.\n\n * `label` {`string`} - The input's label. If you need to display HTML, use the `label` slot instead.\n\n * `tagVariant` {`string`} - \n\n * `acceptUserInput` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `addOnBlur` {`boolean`} - When true, adds a chip when the input loses focus or when clicking outside the component. Only works when acceptUserInput is true.\n\n * `clearable` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `placeholder` {`string`} - Placeholder text to show as a hint when the input is empty.\n\n * `readonly` {`boolean`} - Makes the input readonly.\n\n * `disabled` {`boolean`} - Disables the input.\n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `enableVirtualScroll` {`boolean`} - Virtual scroll in dropdown options.\n\n * `autoCompleteOptions` {`any[]`} - \n\n * `filteredAutoCompleteOptions` {`any[]`} - \n\n * `value` {`any[]`} - \n\n * `noWrap` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `errorIndexes` {`number[]`} - \n\n * `helpText` {`string`} - \n\n * `errorMessage` {`string`} - \n\n * `filterFunction` - \n\n * `renderItemFunction` - \n\n * `visibilityManager` - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `showTooltip` {`boolean`} - \n\n * `enableTagDelete` {`boolean`} - \n\n * `isSelectingFromDropdown` {`boolean`} - \n\n * `handleDocumentClick` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
817
+ "description": "Attributes:\n\n * `warning` {`boolean`} - Sets the input to a warning state, changing its visual appearance.\n\n * `noAutoComplete` {`boolean`} - \n\n * `error` {`boolean`} - Sets the input to an error state, changing its visual appearance.\n\n * `success` {`boolean`} - Sets the input to a success state, changing its visual appearance.\n\n * `noDuplicates` {`boolean`} - Disables the duplicate entries.\n\n * `label` {`string`} - The input's label. If you need to display HTML, use the `label` slot instead.\n\n * `tagVariant` {`string`} - \n\n * `acceptUserInput` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `addOnBlur` {`boolean`} - When true, adds a chip when the input loses focus or when clicking outside the component. Only works when acceptUserInput is true.\n\n * `clearable` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `placeholder` {`string`} - Placeholder text to show as a hint when the input is empty.\n\n * `readonly` {`boolean`} - Makes the input readonly.\n\n * `disabled` {`boolean`} - Disables the input.\n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `enableVirtualScroll` {`boolean`} - Virtual scroll in dropdown options.\n\n * `autoCompleteOptions` {`any[]`} - \n\n * `filteredAutoCompleteOptions` {`any[]`} - \n\n * `value` {`any[]`} - \n\n * `noWrap` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `errorIndexes` {`number[]`} - \n\n * `help-text` {`string`} - \n\n * `error-message` {`string`} - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `showTooltip` {`boolean`} - \n\n * `enableTagDelete` {`boolean`} - \n\n * `openDropdownOnFocus` {`string`} - \n\n * `noDropdownClose` {`boolean`} - \n\nProperties:\n\n * `hasSlotController` - \n\n * `tags` {`string[]`} - \n\n * `inputValue` {`string`} - \n\n * `isDropdownOpen` {`boolean`} - \n\n * `tooltips` {`(string | null)[]`} - \n\n * `chipFocusIndex` {`number | null`} - \n\n * `autoComplete` - \n\n * `warning` {`boolean`} - Sets the input to a warning state, changing its visual appearance.\n\n * `noAutoComplete` {`boolean`} - \n\n * `error` {`boolean`} - Sets the input to an error state, changing its visual appearance.\n\n * `success` {`boolean`} - Sets the input to a success state, changing its visual appearance.\n\n * `noDuplicates` {`boolean`} - Disables the duplicate entries.\n\n * `label` {`string`} - The input's label. If you need to display HTML, use the `label` slot instead.\n\n * `tagVariant` {`string`} - \n\n * `acceptUserInput` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `addOnBlur` {`boolean`} - When true, adds a chip when the input loses focus or when clicking outside the component. Only works when acceptUserInput is true.\n\n * `clearable` {`boolean`} - Adds a clear button when the input is not empty.\n\n * `placeholder` {`string`} - Placeholder text to show as a hint when the input is empty.\n\n * `readonly` {`boolean`} - Makes the input readonly.\n\n * `disabled` {`boolean`} - Disables the input.\n\n * `portal` {`boolean`} - When true, the dropdown menu will be appended to the document body instead of the parent container.\nThis is useful when the parent has overflow: hidden, clip-path, or transform applied.\n\n * `enableVirtualScroll` {`boolean`} - Virtual scroll in dropdown options.\n\n * `autoCompleteOptions` {`any[]`} - \n\n * `filteredAutoCompleteOptions` {`any[]`} - \n\n * `value` {`any[]`} - \n\n * `noWrap` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `errorIndexes` {`number[]`} - \n\n * `helpText` {`string`} - \n\n * `errorMessage` {`string`} - \n\n * `filterFunction` - \n\n * `renderItemFunction` - \n\n * `visibilityManager` - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `showTooltip` {`boolean`} - \n\n * `enableTagDelete` {`boolean`} - \n\n * `openDropdownOnFocus` {`string`} - \n\n * `noDropdownClose` {`boolean`} - \n\n * `isSelectingFromDropdown` {`boolean`} - \n\n * `handleDocumentClick` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
813
818
  "attributes": [
814
819
  {
815
820
  "name": "warning",
@@ -936,6 +941,15 @@
936
941
  "name": "enableTagDelete",
937
942
  "description": "`enableTagDelete` {`boolean`} - \n\nProperty: enableTagDelete\n\nDefault: false",
938
943
  "valueSet": "v"
944
+ },
945
+ {
946
+ "name": "openDropdownOnFocus",
947
+ "description": "`openDropdownOnFocus` {`string`} - \n\nProperty: openDropdownOnFocus\n\nDefault: true"
948
+ },
949
+ {
950
+ "name": "noDropdownClose",
951
+ "description": "`noDropdownClose` {`boolean`} - \n\nProperty: noDropdownClose\n\nDefault: false",
952
+ "valueSet": "v"
939
953
  }
940
954
  ]
941
955
  },