@wavv/ui 2.0.0-alpha.7 → 2.0.0-alpha.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/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/components/Table/SortCaret.d.ts +6 -0
- package/build/cjs/types/components/componentTypes.d.ts +2 -2
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/components/Table/SortCaret.d.ts +6 -0
- package/build/esm/types/components/componentTypes.d.ts +2 -2
- package/build/index.d.ts +2 -2
- package/build/types/components/Table/SortCaret.d.ts +6 -0
- package/build/types/components/componentTypes.d.ts +2 -2
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export type ShowHideCallbacks = {
|
|
|
9
9
|
};
|
|
10
10
|
export type ListItem = {
|
|
11
11
|
/** The id of the option that will be returned on selection */
|
|
12
|
-
id?:
|
|
12
|
+
id?: string;
|
|
13
13
|
/** The value displayed within the input after selection */
|
|
14
14
|
value: string;
|
|
15
15
|
/** The header text displayed above the body text */
|
|
@@ -50,7 +50,7 @@ export type SelectInputProps = {
|
|
|
50
50
|
/** Sets the fontSize */
|
|
51
51
|
fontSize?: number | string;
|
|
52
52
|
/** The function to be called when an option is selected */
|
|
53
|
-
onChange?: (key:
|
|
53
|
+
onChange?: (key: string) => void;
|
|
54
54
|
} & ShowHideCallbacks & Width & Margin;
|
|
55
55
|
export type CalendarBaseProps = {
|
|
56
56
|
/** Prevents selection of dates in the past (relative to the set date or current date). */
|
package/build/index.d.ts
CHANGED
|
@@ -1188,7 +1188,7 @@ type ShowHideCallbacks = {
|
|
|
1188
1188
|
};
|
|
1189
1189
|
type ListItem = {
|
|
1190
1190
|
/** The id of the option that will be returned on selection */
|
|
1191
|
-
id?:
|
|
1191
|
+
id?: string;
|
|
1192
1192
|
/** The value displayed within the input after selection */
|
|
1193
1193
|
value: string;
|
|
1194
1194
|
/** The header text displayed above the body text */
|
|
@@ -1229,7 +1229,7 @@ type SelectInputProps = {
|
|
|
1229
1229
|
/** Sets the fontSize */
|
|
1230
1230
|
fontSize?: number | string;
|
|
1231
1231
|
/** The function to be called when an option is selected */
|
|
1232
|
-
onChange?: (key:
|
|
1232
|
+
onChange?: (key: string) => void;
|
|
1233
1233
|
} & ShowHideCallbacks & Width & Margin;
|
|
1234
1234
|
type CalendarBaseProps = {
|
|
1235
1235
|
/** Prevents selection of dates in the past (relative to the set date or current date). */
|
|
@@ -9,7 +9,7 @@ export type ShowHideCallbacks = {
|
|
|
9
9
|
};
|
|
10
10
|
export type ListItem = {
|
|
11
11
|
/** The id of the option that will be returned on selection */
|
|
12
|
-
id?:
|
|
12
|
+
id?: string;
|
|
13
13
|
/** The value displayed within the input after selection */
|
|
14
14
|
value: string;
|
|
15
15
|
/** The header text displayed above the body text */
|
|
@@ -50,7 +50,7 @@ export type SelectInputProps = {
|
|
|
50
50
|
/** Sets the fontSize */
|
|
51
51
|
fontSize?: number | string;
|
|
52
52
|
/** The function to be called when an option is selected */
|
|
53
|
-
onChange?: (key:
|
|
53
|
+
onChange?: (key: string) => void;
|
|
54
54
|
} & ShowHideCallbacks & Width & Margin;
|
|
55
55
|
export type CalendarBaseProps = {
|
|
56
56
|
/** Prevents selection of dates in the past (relative to the set date or current date). */
|