@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). */
|