@zvoove/unity-ui 2.39.0 → 2.39.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 +6 -3
- package/dist/unity-ui.es.js +169 -169
- package/package.json +6 -6
package/dist/unity-ui.d.ts
CHANGED
|
@@ -1033,8 +1033,11 @@ export declare interface DatePickerProps extends Omit<TextFieldProps, 'onChange'
|
|
|
1033
1033
|
label: string;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* The value of the date picker. <br />
|
|
1036
|
-
* For `mode="month"`,
|
|
1037
|
-
*
|
|
1036
|
+
* For `mode="month"`, use ISO format: `YYYY-MM` or `YYYY-MM-DD`
|
|
1037
|
+
* (e.g. `"2022-05"`) — the day, if present, is ignored. <br />
|
|
1038
|
+
* For `mode="week"`, use ISO week format `YYYY-Www` (preferred, e.g.
|
|
1039
|
+
* `"2026-W24"`) or any calendar day in the week as `YYYY-MM-DD`
|
|
1040
|
+
* (e.g. `"2026-06-10"`).
|
|
1038
1041
|
*/
|
|
1039
1042
|
value?: string;
|
|
1040
1043
|
/**
|
|
@@ -3280,7 +3283,7 @@ export declare interface SegmentGroupProps<T extends React.ElementType = 'button
|
|
|
3280
3283
|
|
|
3281
3284
|
export declare type SegmentValue<T = string> = T | T[];
|
|
3282
3285
|
|
|
3283
|
-
export declare const Select: ({ value, multiple, options, onChange, error, errorMessage, disabled, label, hideLabel, name, id, searchable, allowClearAll, allowSelectAll, selectAllLabel, clearAllLabel, noResultsFoundMessage, onScrollEnd, isLoadingMore, density, ...props }: SelectProps) => JSX.Element;
|
|
3286
|
+
export declare const Select: ({ value, multiple, options, onChange, error, errorMessage, disabled, label, hideLabel, name, id, searchable, allowClearAll, allowSelectAll, selectAllLabel, clearAllLabel, noResultsFoundMessage, onScrollEnd, isLoadingMore, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, density, ...props }: SelectProps) => JSX.Element;
|
|
3284
3287
|
|
|
3285
3288
|
export declare type SelectOption = Omit<PopUpMenuItem, 'id' | 'onClick' | 'disabled' | 'linkComponent' | 'as'> & {
|
|
3286
3289
|
/**
|