@tracktor/design-system 4.6.0 → 4.6.2
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/CHANGELOG.md +3 -3
- package/dist/main.cjs +8 -8
- package/dist/main.js +1164 -1102
- package/dist/src/components/Inputs/AutocompleteFilter/AutocompleteFilter.d.ts +6 -2
- package/package.json +1 -1
|
@@ -13,16 +13,20 @@ export interface AutocompleteFilterProps<Multiple extends boolean | undefined, D
|
|
|
13
13
|
* Variant of the Autocomplete
|
|
14
14
|
*/
|
|
15
15
|
variant?: "standard" | "chip";
|
|
16
|
+
/**
|
|
17
|
+
* Width of the Autocomplete
|
|
18
|
+
*/
|
|
19
|
+
width?: string | number;
|
|
16
20
|
/**
|
|
17
21
|
* Value
|
|
18
22
|
* @default undefined
|
|
19
23
|
*/
|
|
20
|
-
value?: AutocompleteFilterOption<Value>[] | AutocompleteFilterOption<Value> | null;
|
|
24
|
+
value?: AutocompleteFilterOption<Value>[] | AutocompleteFilterOption<Value> | string | null;
|
|
21
25
|
/**
|
|
22
26
|
* Options to display
|
|
23
27
|
* @default undefined
|
|
24
28
|
*/
|
|
25
|
-
options?: AutocompleteFilterOption<Value>[];
|
|
29
|
+
options?: string[] | AutocompleteFilterOption<Value>[];
|
|
26
30
|
/**
|
|
27
31
|
* Placeholder
|
|
28
32
|
*/
|