@leanix/components 0.4.527 → 0.4.528
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/esm2022/lib/forms-ui/components/option-group-dropdown/option-group-dropdown.component.mjs +4 -19
- package/fesm2022/leanix-components.mjs +3 -18
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/option-group-dropdown/option-group-dropdown.component.d.ts +3 -18
- package/package.json +1 -1
@@ -14,24 +14,9 @@ export type SingleSelectOptionGroup<T = any> = {
|
|
14
14
|
options: (OptionGroupOption | T)[];
|
15
15
|
};
|
16
16
|
/**
|
17
|
-
*
|
18
|
-
*
|
19
|
-
*
|
20
|
-
* <lx-single-select
|
21
|
-
* #singleSelect
|
22
|
-
* [selection]="value"
|
23
|
-
* (selectionChange)="onSelectionChange($event)">
|
24
|
-
* <span class="selectedOption">
|
25
|
-
* {{ value.label }}
|
26
|
-
* </span>
|
27
|
-
* <lx-option-group-dropdown
|
28
|
-
* class="dropdownComponent"
|
29
|
-
* [keyboardSelectAction]="singleSelect.optionsKeyboardSelectAction$"
|
30
|
-
* [optionGroups]="optionGroups"
|
31
|
-
* (onItemSelected)="singleSelect.selectOption($event)">
|
32
|
-
* </lx-option-group-dropdown>
|
33
|
-
* </lx-single-select>
|
34
|
-
* ```
|
17
|
+
* `OptionGroupDropdownComponent` is a dropdown component that displays a list of options grouped by categories.
|
18
|
+
* By itself it is only used to display a list of options, to be used in an input dropdown it can be used in
|
19
|
+
* combination with the `SingleSelectComponent` or `MultiSelectComponent`.
|
35
20
|
*/
|
36
21
|
export declare class OptionGroupDropdownComponent extends KeyboardSelectDirective {
|
37
22
|
/** @internal */
|