@aquera/nile-elements 1.7.2 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +387 -265
- package/dist/nile-breadcrumb-item/nile-breadcrumb-item.cjs.js +1 -1
- package/dist/nile-breadcrumb-item/nile-breadcrumb-item.cjs.js.map +1 -1
- package/dist/nile-breadcrumb-item/nile-breadcrumb-item.esm.js +8 -6
- package/dist/nile-combobox/group-utils.cjs.js +2 -0
- package/dist/nile-combobox/group-utils.cjs.js.map +1 -0
- package/dist/nile-combobox/group-utils.esm.js +1 -0
- package/dist/nile-combobox/index.cjs.js +1 -1
- package/dist/nile-combobox/index.esm.js +1 -1
- package/dist/nile-combobox/nile-combobox.cjs.js +1 -1
- package/dist/nile-combobox/nile-combobox.cjs.js.map +1 -1
- package/dist/nile-combobox/nile-combobox.css.cjs.js +1 -1
- package/dist/nile-combobox/nile-combobox.css.cjs.js.map +1 -1
- package/dist/nile-combobox/nile-combobox.css.esm.js +77 -4
- package/dist/nile-combobox/nile-combobox.esm.js +13 -8
- package/dist/nile-combobox/renderer.cjs.js +1 -1
- package/dist/nile-combobox/renderer.cjs.js.map +1 -1
- package/dist/nile-combobox/renderer.esm.js +84 -42
- package/dist/src/nile-breadcrumb-item/nile-breadcrumb-item.js +4 -2
- package/dist/src/nile-breadcrumb-item/nile-breadcrumb-item.js.map +1 -1
- package/dist/src/nile-combobox/group-utils.d.ts +26 -0
- package/dist/src/nile-combobox/group-utils.js +140 -0
- package/dist/src/nile-combobox/group-utils.js.map +1 -0
- package/dist/src/nile-combobox/nile-combobox.css.js +77 -4
- package/dist/src/nile-combobox/nile-combobox.css.js.map +1 -1
- package/dist/src/nile-combobox/nile-combobox.d.ts +33 -0
- package/dist/src/nile-combobox/nile-combobox.js +171 -34
- package/dist/src/nile-combobox/nile-combobox.js.map +1 -1
- package/dist/src/nile-combobox/renderer.d.ts +4 -0
- package/dist/src/nile-combobox/renderer.js +71 -2
- package/dist/src/nile-combobox/renderer.js.map +1 -1
- package/dist/src/nile-combobox/types.d.ts +30 -0
- package/dist/src/nile-combobox/types.js.map +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-breadcrumb-item/nile-breadcrumb-item.ts +4 -2
- package/src/nile-combobox/group-utils.ts +157 -0
- package/src/nile-combobox/nile-combobox.css.ts +77 -4
- package/src/nile-combobox/nile-combobox.ts +223 -70
- package/src/nile-combobox/renderer.ts +119 -2
- package/src/nile-combobox/types.ts +36 -0
- package/vscode-html-custom-data.json +6 -1
|
@@ -1332,7 +1332,7 @@
|
|
|
1332
1332
|
},
|
|
1333
1333
|
{
|
|
1334
1334
|
"name": "nile-combobox",
|
|
1335
|
-
"description": "Events:\n\n * `nile-change` {} - Emitted when the control's value changes.\n\n * `nile-clear` {} - Emitted when the control's value is cleared.\n\n * `nile-input` {} - Emitted when the control receives input.\n\n * `nile-focus` {} - Emitted when the control gains focus.\n\n * `nile-blur` {} - Emitted when the control loses focus.\n\n * `nile-show` {} - Emitted when the dropdown opens.\n\n * `nile-after-show` {} - Emitted after the dropdown opens and all animations complete.\n\n * `nile-hide` {} - Emitted when the dropdown closes.\n\n * `nile-after-hide` {} - Emitted after the dropdown closes and all animations complete.\n\n * `nile-search` {} - Emitted (debounced) when the user types. Useful for API-driven filtering.\n\n * `nile-tag-remove` {} - Emitted when a tag is removed in multi-select mode.\n\n * `nile-tag-add` {} - Emitted when a custom value is added via allowCustomValue.\n\n * `nile-scroll-end` {} - Emitted when scrolled to the bottom (for infinite loading).\n\n * `nile-invalid` {} - Emitted when form validation constraints aren't satisfied.\n\n * `nile-select-all` {} - Emitted when the Select all / Deselect all control toggles. Detail: { value, name, action: 'select-all' | 'deselect-all' }.\n\nSlots:\n\n * `label` {} - The input's label.\n\n * `prefix` {} - Prepend a presentational icon or element before the input.\n\n * `clear-icon` {} - An icon to use in lieu of the default clear icon.\n\n * `expand-icon` {} - The icon to show when the control is expanded/collapsed.\n\n * `help-text` {} - Text that describes how to use the input.\n\n * `footer` {} - Custom footer content (overrides default footer in multi-select mode).\n\n * `no-results` {} - Custom no-results content.\n\nAttributes:\n\n * `data` {`any[]`} - \n\n * `size` {`\"small\" | \"medium\" | \"large\"`} - \n\n * `placeholder` {`string`} - \n\n * `multiple` {`boolean`} - \n\n * `label` {`string`} - \n\n * `open` {`boolean`} - \n\n * `clearable` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `optionsLoading` {`boolean`} - \n\n * `disableLocalSearch` {`boolean`} - When true, skip local filtering and rely solely on the `nile-search` event for API-driven results.\n\n * `allowCustomValue` {`boolean`} - When true, displays a \"+ Add [value]\" option for values not in the data.\n\n * `acceptUserInput` {`boolean`} - When true, typing free text and pressing Enter/Tab adds it as a tag (like nile-chip's acceptUserInput).\n\n * `addToSuggestions` {`boolean`} - When true, custom values added via allowCustomValue or acceptUserInput are also appended to the suggestions list.\n\n * `strict` {`boolean`} - When true, value must match an option. On blur, reverts to the last valid value if text doesn't match.\n\n * `max-tags-visible` {`number`} - Max tags visible before showing \"+N more\" (0 = no limit).\n\n * `tagLayout` {`ComboboxTagLayout`} - Controls how tags wrap in multi-select mode.\n\n * `showFooter` {`boolean`} - Show footer with \"Show Selected\" and \"Clear All\" in multi-select mode.\nAutomatically suppressed when `selectAllEnabled` is true, since the top\nactions row already provides the same controls.\n\n * `select-all-enabled` {`boolean`} - When true (and `multiple` is true), renders a \"Select all\" / \"Deselect all\"\ncheckbox at the top of the listbox. Operates on the currently visible,\nnon-disabled options (respects the active search filter).\n\n * `portal` {`boolean`} - \n\n * `hoist` {`boolean`} - \n\n * `placement` {`ComboboxPlacement`} - \n\n * `help-text` {`string`} - \n\n * `error-message` {`string`} - \n\n * `warning` {`boolean`} - \n\n * `error` {`boolean`} - \n\n * `success` {`boolean`} - \n\n * `filled` {`boolean`} - \n\n * `pill` {`boolean`} - \n\n * `noResultsMessage` {`string`} - \n\n * `no-results-subtitle` {`string`} - \n\n * `no-data-message` {`string`} - \n\n * `autoCompleteOptions` {`any[]`} - Pre-defined autocomplete suggestions. Accepts a JSON array string attribute\nor a JS array property (like nile-chip). When `addToSuggestions` is true,\ncustom values added by the user are appended to this list and persisted.\n\n * `debounceMs` {`number`} - Debounce interval (ms) for the nile-search event.\n\n * `allowHtmlLabel` {`boolean`} - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `noWidthSync` {`boolean`} - \n\n * `grid-columns` {`number`} - Number of columns in the dropdown grid (vertical scroll). When > 1, options render in a multi-column grid layout.\n\n * `grid-rows` {`number`} - Number of visible rows in horizontal grid mode. When > 0, enables horizontal virtual scroll with columns scrolling left/right.\n\n * `grid-column-width` {`number`} - Width of each column in horizontal grid mode (px).\n\n * `name` {`string`} - \n\n * `value` {`string | string[]`} - \n\n * `disabled` {`boolean`} - \n\n * `form` {`string`} - \n\n * `required` {`boolean`} - \n\nProperties:\n\n * `styles` - \n\n * `formControlController` - \n\n * `hasSlotController` - \n\n * `portalManager` - \n\n * `searchManager` - \n\n * `scrollElementRef` - \n\n * `virtualizerCtrl` - \n\n * `hScrollElementRef` - \n\n * `hVirtualizerCtrl` - \n\n * `scrollTimeout` {`number | undefined`} - \n\n * `scrolling` {`boolean`} - \n\n * `visibilityManager` - \n\n * `keyboardActiveIndex` {`number`} - \n\n * `popup` - \n\n * `combobox` {`HTMLElement`} - \n\n * `inputElement` {`HTMLInputElement`} - \n\n * `valueInput` {`HTMLInputElement`} - \n\n * `hasFocus` {`boolean`} - \n\n * `displayLabel` {`string`} - \n\n * `selectedOptions` {`ComboboxOption[]`} - \n\n * `filteredData` {`any[]`} - The items displayed after filtering. Renderer reads from this.\n\n * `originalData` {`any[]`} - The complete unfiltered dataset (preserved for re-filtering).\n\n * `showNoResults` {`boolean`} - \n\n * `showListbox` {`boolean`} - \n\n * `searchValue` {`string`} - \n\n * `showSelectedOnly` {`boolean`} - \n\n * `selectAllChecked` {`boolean`} - \n\n * `selectAllIndeterminate` {`boolean`} - \n\n * `data` {`any[]`} - \n\n * `size` {`\"small\" | \"medium\" | \"large\"`} - \n\n * `placeholder` {`string`} - \n\n * `multiple` {`boolean`} - \n\n * `label` {`string`} - \n\n * `open` {`boolean`} - \n\n * `clearable` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `optionsLoading` {`boolean`} - \n\n * `disableLocalSearch` {`boolean`} - When true, skip local filtering and rely solely on the `nile-search` event for API-driven results.\n\n * `allowCustomValue` {`boolean`} - When true, displays a \"+ Add [value]\" option for values not in the data.\n\n * `acceptUserInput` {`boolean`} - When true, typing free text and pressing Enter/Tab adds it as a tag (like nile-chip's acceptUserInput).\n\n * `addToSuggestions` {`boolean`} - When true, custom values added via allowCustomValue or acceptUserInput are also appended to the suggestions list.\n\n * `strict` {`boolean`} - When true, value must match an option. On blur, reverts to the last valid value if text doesn't match.\n\n * `maxTagsVisible` {`number`} - Max tags visible before showing \"+N more\" (0 = no limit).\n\n * `tagLayout` {`ComboboxTagLayout`} - Controls how tags wrap in multi-select mode.\n\n * `showFooter` {`boolean`} - Show footer with \"Show Selected\" and \"Clear All\" in multi-select mode.\nAutomatically suppressed when `selectAllEnabled` is true, since the top\nactions row already provides the same controls.\n\n * `selectAllEnabled` {`boolean`} - When true (and `multiple` is true), renders a \"Select all\" / \"Deselect all\"\ncheckbox at the top of the listbox. Operates on the currently visible,\nnon-disabled options (respects the active search filter).\n\n * `portal` {`boolean`} - \n\n * `hoist` {`boolean`} - \n\n * `placement` {`ComboboxPlacement`} - \n\n * `helpText` {`string`} - \n\n * `errorMessage` {`string`} - \n\n * `warning` {`boolean`} - \n\n * `error` {`boolean`} - \n\n * `success` {`boolean`} - \n\n * `filled` {`boolean`} - \n\n * `pill` {`boolean`} - \n\n * `noResultsMessage` {`string`} - \n\n * `noResultsSubtitle` {`string`} - \n\n * `noDataMessage` {`string`} - \n\n * `autoCompleteOptions` {`any[]`} - Pre-defined autocomplete suggestions. Accepts a JSON array string attribute\nor a JS array property (like nile-chip). When `addToSuggestions` is true,\ncustom values added by the user are appended to this list and persisted.\n\n * `debounceMs` {`number`} - Debounce interval (ms) for the nile-search event.\n\n * `renderItemConfig` {`ComboboxRenderItemConfig | undefined`} - \n\n * `allowHtmlLabel` {`boolean`} - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `noWidthSync` {`boolean`} - \n\n * `gridColumns` {`number`} - Number of columns in the dropdown grid (vertical scroll). When > 1, options render in a multi-column grid layout.\n\n * `gridRows` {`number`} - Number of visible rows in horizontal grid mode. When > 0, enables horizontal virtual scroll with columns scrolling left/right.\n\n * `gridColumnWidth` {`number`} - Width of each column in horizontal grid mode (px).\n\n * `isHorizontalGrid` {`boolean`} - \n\n * `hasActiveFilter` {`boolean`} - \n\n * `isBidirectionalGrid` {`boolean`} - \n\n * `virtualRowCount` {`number`} - \n\n * `virtualColumnCount` {`number`} - \n\n * `handleDocumentFocusIn` - \n\n * `handleDocumentKeyDown` - \n\n * `handleDocumentMouseDown` - \n\n * `handleWindowError` - \n\n * `handleWindowResize` - \n\n * `handleWindowScroll` - \n\n * `name` {`string`} - \n\n * `value` {`string | string[]`} - \n\n * `disabled` {`boolean`} - \n\n * `defaultValue` {`string | string[]`} - \n\n * `defaultChecked` {`boolean | undefined`} - \n\n * `form` {`string`} - \n\n * `pattern` {`string | undefined`} - \n\n * `min` {`string | number | Date | undefined`} - \n\n * `max` {`string | number | Date | undefined`} - \n\n * `step` {`number | \"any\" | undefined`} - \n\n * `required` {`boolean`} - \n\n * `minlength` {`number | undefined`} - \n\n * `maxlength` {`number | undefined`} - \n\n * `validity` {`ValidityState`} - \n\n * `validationMessage` {`string`} - \n\n * `checkValidity` - \n\n * `getForm` - \n\n * `reportValidity` - \n\n * `setCustomValidity` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
|
|
1335
|
+
"description": "Events:\n\n * `nile-change` {} - Emitted when the control's value changes.\n\n * `nile-clear` {} - Emitted when the control's value is cleared.\n\n * `nile-input` {} - Emitted when the control receives input.\n\n * `nile-focus` {} - Emitted when the control gains focus.\n\n * `nile-blur` {} - Emitted when the control loses focus.\n\n * `nile-show` {} - Emitted when the dropdown opens.\n\n * `nile-after-show` {} - Emitted after the dropdown opens and all animations complete.\n\n * `nile-hide` {} - Emitted when the dropdown closes.\n\n * `nile-after-hide` {} - Emitted after the dropdown closes and all animations complete.\n\n * `nile-search` {} - Emitted (debounced) when the user types. Useful for API-driven filtering.\n\n * `nile-tag-remove` {} - Emitted when a tag is removed in multi-select mode.\n\n * `nile-tag-add` {} - Emitted when a custom value is added via allowCustomValue.\n\n * `nile-scroll-end` {} - Emitted when scrolled to the bottom (for infinite loading).\n\n * `nile-invalid` {} - Emitted when form validation constraints aren't satisfied.\n\n * `nile-select-all` {} - Emitted when the Select all / Deselect all control toggles. Detail: { value, name, action: 'select-all' | 'deselect-all' }.\n\nSlots:\n\n * `label` {} - The input's label.\n\n * `prefix` {} - Prepend a presentational icon or element before the input.\n\n * `clear-icon` {} - An icon to use in lieu of the default clear icon.\n\n * `expand-icon` {} - The icon to show when the control is expanded/collapsed.\n\n * `help-text` {} - Text that describes how to use the input.\n\n * `footer` {} - Custom footer content (overrides default footer in multi-select mode).\n\n * `no-results` {} - Custom no-results content.\n\nAttributes:\n\n * `data` {`any[]`} - \n\n * `size` {`\"small\" | \"medium\" | \"large\"`} - \n\n * `placeholder` {`string`} - \n\n * `multiple` {`boolean`} - \n\n * `label` {`string`} - \n\n * `open` {`boolean`} - \n\n * `clearable` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `optionsLoading` {`boolean`} - \n\n * `disableLocalSearch` {`boolean`} - When true, skip local filtering and rely solely on the `nile-search` event for API-driven results.\n\n * `allowCustomValue` {`boolean`} - When true, displays a \"+ Add [value]\" option for values not in the data.\n\n * `acceptUserInput` {`boolean`} - When true, typing free text and pressing Enter/Tab adds it as a tag (like nile-chip's acceptUserInput).\n\n * `addToSuggestions` {`boolean`} - When true, custom values added via allowCustomValue or acceptUserInput are also appended to the suggestions list.\n\n * `strict` {`boolean`} - When true, value must match an option. On blur, reverts to the last valid value if text doesn't match.\n\n * `max-tags-visible` {`number`} - Max tags visible before showing \"+N more\" (0 = no limit).\n\n * `tagLayout` {`ComboboxTagLayout`} - Controls how tags wrap in multi-select mode.\n\n * `showFooter` {`boolean`} - Show footer with \"Show Selected\" and \"Clear All\" in multi-select mode.\nAutomatically suppressed when `selectAllEnabled` is true, since the top\nactions row already provides the same controls.\n\n * `select-all-enabled` {`boolean`} - When true (and `multiple` is true), renders a \"Select all\" / \"Deselect all\"\ncheckbox at the top of the listbox. Operates on the currently visible,\nnon-disabled options (respects the active search filter).\n\n * `sticky-group-header` {`boolean`} - When true (default), data-driven group headers stick to the top of the\nlistbox while scrolling through that group's options (Atlassian-style).\nWorks in both plain and virtualized rendering modes. Set to false for\ninline-only headers that scroll away with their options.\n\n * `portal` {`boolean`} - \n\n * `hoist` {`boolean`} - \n\n * `placement` {`ComboboxPlacement`} - \n\n * `help-text` {`string`} - \n\n * `error-message` {`string`} - \n\n * `warning` {`boolean`} - \n\n * `error` {`boolean`} - \n\n * `success` {`boolean`} - \n\n * `filled` {`boolean`} - \n\n * `pill` {`boolean`} - \n\n * `noResultsMessage` {`string`} - \n\n * `no-results-subtitle` {`string`} - \n\n * `no-data-message` {`string`} - \n\n * `autoCompleteOptions` {`any[]`} - Pre-defined autocomplete suggestions. Accepts a JSON array string attribute\nor a JS array property (like nile-chip). When `addToSuggestions` is true,\ncustom values added by the user are appended to this list and persisted.\n\n * `debounceMs` {`number`} - Debounce interval (ms) for the nile-search event.\n\n * `allowHtmlLabel` {`boolean`} - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `noWidthSync` {`boolean`} - \n\n * `grid-columns` {`number`} - Number of columns in the dropdown grid (vertical scroll). When > 1, options render in a multi-column grid layout.\n\n * `grid-rows` {`number`} - Number of visible rows in horizontal grid mode. When > 0, enables horizontal virtual scroll with columns scrolling left/right.\n\n * `grid-column-width` {`number`} - Width of each column in horizontal grid mode (px).\n\n * `name` {`string`} - \n\n * `value` {`string | string[]`} - \n\n * `disabled` {`boolean`} - \n\n * `form` {`string`} - \n\n * `required` {`boolean`} - \n\nProperties:\n\n * `styles` - \n\n * `formControlController` - \n\n * `hasSlotController` - \n\n * `portalManager` - \n\n * `searchManager` - \n\n * `scrollElementRef` - \n\n * `virtualizerCtrl` - \n\n * `hScrollElementRef` - \n\n * `hVirtualizerCtrl` - \n\n * `scrollTimeout` {`number | undefined`} - \n\n * `scrolling` {`boolean`} - \n\n * `visibilityManager` - \n\n * `keyboardActiveIndex` {`number`} - \n\n * `popup` - \n\n * `combobox` {`HTMLElement`} - \n\n * `inputElement` {`HTMLInputElement`} - \n\n * `valueInput` {`HTMLInputElement`} - \n\n * `hasFocus` {`boolean`} - \n\n * `displayLabel` {`string`} - \n\n * `selectedOptions` {`ComboboxOption[]`} - \n\n * `filteredData` {`any[]`} - The items displayed after filtering. Renderer reads from this.\n\n * `filteredRows` {`ComboboxRow[]`} - Mixed (header + option) row list, only populated when `data` contains\ngroup entries (`type: 'group'`). When non-empty, the listbox renders from\nthis instead of `filteredData`. `filteredData` stays in sync as the\noption-only projection so existing select-all / strict-match / etc. logic\nkeeps working unchanged.\n\n * `originalData` {`any[]`} - The complete unfiltered dataset (preserved for re-filtering).\n\n * `showNoResults` {`boolean`} - \n\n * `showListbox` {`boolean`} - \n\n * `searchValue` {`string`} - \n\n * `showSelectedOnly` {`boolean`} - \n\n * `selectAllChecked` {`boolean`} - \n\n * `selectAllIndeterminate` {`boolean`} - \n\n * `stickyHeaderIndex` {`number`} - Index into `filteredRows` of the group header that should be pinned at\nthe top of the (virtualized) listbox right now. -1 means none.\nRecomputed on scroll.\n\n * `data` {`any[]`} - \n\n * `size` {`\"small\" | \"medium\" | \"large\"`} - \n\n * `placeholder` {`string`} - \n\n * `multiple` {`boolean`} - \n\n * `label` {`string`} - \n\n * `open` {`boolean`} - \n\n * `clearable` {`boolean`} - \n\n * `loading` {`boolean`} - \n\n * `optionsLoading` {`boolean`} - \n\n * `disableLocalSearch` {`boolean`} - When true, skip local filtering and rely solely on the `nile-search` event for API-driven results.\n\n * `allowCustomValue` {`boolean`} - When true, displays a \"+ Add [value]\" option for values not in the data.\n\n * `acceptUserInput` {`boolean`} - When true, typing free text and pressing Enter/Tab adds it as a tag (like nile-chip's acceptUserInput).\n\n * `addToSuggestions` {`boolean`} - When true, custom values added via allowCustomValue or acceptUserInput are also appended to the suggestions list.\n\n * `strict` {`boolean`} - When true, value must match an option. On blur, reverts to the last valid value if text doesn't match.\n\n * `maxTagsVisible` {`number`} - Max tags visible before showing \"+N more\" (0 = no limit).\n\n * `tagLayout` {`ComboboxTagLayout`} - Controls how tags wrap in multi-select mode.\n\n * `showFooter` {`boolean`} - Show footer with \"Show Selected\" and \"Clear All\" in multi-select mode.\nAutomatically suppressed when `selectAllEnabled` is true, since the top\nactions row already provides the same controls.\n\n * `selectAllEnabled` {`boolean`} - When true (and `multiple` is true), renders a \"Select all\" / \"Deselect all\"\ncheckbox at the top of the listbox. Operates on the currently visible,\nnon-disabled options (respects the active search filter).\n\n * `stickyGroupHeader` {`boolean`} - When true (default), data-driven group headers stick to the top of the\nlistbox while scrolling through that group's options (Atlassian-style).\nWorks in both plain and virtualized rendering modes. Set to false for\ninline-only headers that scroll away with their options.\n\n * `portal` {`boolean`} - \n\n * `hoist` {`boolean`} - \n\n * `placement` {`ComboboxPlacement`} - \n\n * `helpText` {`string`} - \n\n * `errorMessage` {`string`} - \n\n * `warning` {`boolean`} - \n\n * `error` {`boolean`} - \n\n * `success` {`boolean`} - \n\n * `filled` {`boolean`} - \n\n * `pill` {`boolean`} - \n\n * `noResultsMessage` {`string`} - \n\n * `noResultsSubtitle` {`string`} - \n\n * `noDataMessage` {`string`} - \n\n * `autoCompleteOptions` {`any[]`} - Pre-defined autocomplete suggestions. Accepts a JSON array string attribute\nor a JS array property (like nile-chip). When `addToSuggestions` is true,\ncustom values added by the user are appended to this list and persisted.\n\n * `debounceMs` {`number`} - Debounce interval (ms) for the nile-search event.\n\n * `renderItemConfig` {`ComboboxRenderItemConfig | undefined`} - \n\n * `allowHtmlLabel` {`boolean`} - \n\n * `enableVisibilityEffect` {`boolean`} - \n\n * `enableTabClose` {`boolean`} - \n\n * `noWidthSync` {`boolean`} - \n\n * `gridColumns` {`number`} - Number of columns in the dropdown grid (vertical scroll). When > 1, options render in a multi-column grid layout.\n\n * `gridRows` {`number`} - Number of visible rows in horizontal grid mode. When > 0, enables horizontal virtual scroll with columns scrolling left/right.\n\n * `gridColumnWidth` {`number`} - Width of each column in horizontal grid mode (px).\n\n * `isHorizontalGrid` {`boolean`} - \n\n * `hasGroupedData` {`boolean`} - True when the source data contains at least one group entry.\n\n * `hasActiveFilter` {`boolean`} - \n\n * `isBidirectionalGrid` {`boolean`} - \n\n * `virtualRowCount` {`number`} - \n\n * `virtualColumnCount` {`number`} - \n\n * `lastVirtualizerGrouped` {`boolean`} - \n\n * `handleDocumentFocusIn` - \n\n * `handleDocumentKeyDown` - \n\n * `handleDocumentMouseDown` - \n\n * `handleWindowError` - \n\n * `handleWindowResize` - \n\n * `handleWindowScroll` - \n\n * `name` {`string`} - \n\n * `value` {`string | string[]`} - \n\n * `disabled` {`boolean`} - \n\n * `defaultValue` {`string | string[]`} - \n\n * `defaultChecked` {`boolean | undefined`} - \n\n * `form` {`string`} - \n\n * `pattern` {`string | undefined`} - \n\n * `min` {`string | number | Date | undefined`} - \n\n * `max` {`string | number | Date | undefined`} - \n\n * `step` {`number | \"any\" | undefined`} - \n\n * `required` {`boolean`} - \n\n * `minlength` {`number | undefined`} - \n\n * `maxlength` {`number | undefined`} - \n\n * `validity` {`ValidityState`} - \n\n * `validationMessage` {`string`} - \n\n * `checkValidity` - \n\n * `getForm` - \n\n * `reportValidity` - \n\n * `setCustomValidity` - \n\n * `BUBBLES` {`boolean`} - \n\n * `COMPOSED` {`boolean`} - \n\n * `CANCELABLE` {`boolean`} - ",
|
|
1336
1336
|
"attributes": [
|
|
1337
1337
|
{
|
|
1338
1338
|
"name": "data",
|
|
@@ -1440,6 +1440,11 @@
|
|
|
1440
1440
|
"description": "`select-all-enabled` {`boolean`} - When true (and `multiple` is true), renders a \"Select all\" / \"Deselect all\"\ncheckbox at the top of the listbox. Operates on the currently visible,\nnon-disabled options (respects the active search filter).\n\nProperty: selectAllEnabled\n\nDefault: false",
|
|
1441
1441
|
"valueSet": "v"
|
|
1442
1442
|
},
|
|
1443
|
+
{
|
|
1444
|
+
"name": "sticky-group-header",
|
|
1445
|
+
"description": "`sticky-group-header` {`boolean`} - When true (default), data-driven group headers stick to the top of the\nlistbox while scrolling through that group's options (Atlassian-style).\nWorks in both plain and virtualized rendering modes. Set to false for\ninline-only headers that scroll away with their options.\n\nProperty: stickyGroupHeader\n\nDefault: true",
|
|
1446
|
+
"valueSet": "v"
|
|
1447
|
+
},
|
|
1443
1448
|
{
|
|
1444
1449
|
"name": "portal",
|
|
1445
1450
|
"description": "`portal` {`boolean`} - \n\nProperty: portal\n\nDefault: false",
|