demio-ui 1.0.7 → 1.0.8
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Select/Select.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Select/Select.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ type SelectProps = {
|
|
|
6
6
|
value?: string;
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
onValueChange?: (value: string) => void;
|
|
9
|
+
id: string;
|
|
9
10
|
};
|
|
10
11
|
export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLButtonElement>>;
|
|
11
12
|
type SelectItemProps = {
|
package/dist/types.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ type SelectProps = {
|
|
|
102
102
|
value?: string;
|
|
103
103
|
disabled?: boolean;
|
|
104
104
|
onValueChange?: (value: string) => void;
|
|
105
|
+
id: string;
|
|
105
106
|
};
|
|
106
107
|
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLButtonElement>>;
|
|
107
108
|
type SelectItemProps = {
|