@umami/react-zen 0.134.0 → 0.135.0
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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -551,8 +551,8 @@ declare function SearchField({ label, placeholder, value, defaultValue, delay, o
|
|
|
551
551
|
|
|
552
552
|
interface SelectProps extends SelectProps$1<HTMLSelectElement> {
|
|
553
553
|
items?: any[];
|
|
554
|
-
value?: string;
|
|
555
|
-
defaultValue?: string;
|
|
554
|
+
value?: string | number;
|
|
555
|
+
defaultValue?: string | number;
|
|
556
556
|
label?: string;
|
|
557
557
|
isLoading?: boolean;
|
|
558
558
|
allowSearch?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -551,8 +551,8 @@ declare function SearchField({ label, placeholder, value, defaultValue, delay, o
|
|
|
551
551
|
|
|
552
552
|
interface SelectProps extends SelectProps$1<HTMLSelectElement> {
|
|
553
553
|
items?: any[];
|
|
554
|
-
value?: string;
|
|
555
|
-
defaultValue?: string;
|
|
554
|
+
value?: string | number;
|
|
555
|
+
defaultValue?: string | number;
|
|
556
556
|
label?: string;
|
|
557
557
|
isLoading?: boolean;
|
|
558
558
|
allowSearch?: boolean;
|