@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.
@@ -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
  */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "4.6.0",
5
+ "version": "4.6.2",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",