@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.
@@ -14,24 +14,9 @@ export type SingleSelectOptionGroup<T = any> = {
14
14
  options: (OptionGroupOption | T)[];
15
15
  };
16
16
  /**
17
- * Usage:
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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.527",
3
+ "version": "0.4.528",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {