@zvoove/unity-ui 2.37.0 → 2.37.1
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/unity-ui.cjs.js +1 -1
- package/dist/unity-ui.d.ts +4 -2
- package/dist/unity-ui.es.js +129 -128
- package/package.json +1 -1
package/dist/unity-ui.d.ts
CHANGED
|
@@ -1019,7 +1019,9 @@ export declare interface DatePickerProps extends Omit<TextFieldProps, 'onChange'
|
|
|
1019
1019
|
*/
|
|
1020
1020
|
label: string;
|
|
1021
1021
|
/**
|
|
1022
|
-
* The value of the date picker.
|
|
1022
|
+
* The value of the date picker. <br />
|
|
1023
|
+
* For `mode="month"`, this must be ISO format: `YYYY-MM` or
|
|
1024
|
+
* `YYYY-MM-DD` (e.g. `"2022-05"`) — the day, if present, is ignored.
|
|
1023
1025
|
*/
|
|
1024
1026
|
value?: string;
|
|
1025
1027
|
/**
|
|
@@ -2600,7 +2602,7 @@ export declare type MidSectionMenusProps<T extends ElementType = 'a'> = {
|
|
|
2600
2602
|
onItemClick?: (item: ListMenuItem<T>) => void;
|
|
2601
2603
|
};
|
|
2602
2604
|
|
|
2603
|
-
declare type MonthYear = {
|
|
2605
|
+
export declare type MonthYear = {
|
|
2604
2606
|
month: number;
|
|
2605
2607
|
year: number;
|
|
2606
2608
|
};
|