@mcurros2/microm 1.1.327-0 → 1.1.329-0
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/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +410 -233
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -924,6 +924,8 @@ export interface DateInputFieldProps extends Omit<DateInputProps, 'autoFocus'> {
|
|
|
924
924
|
children: ReactNode;
|
|
925
925
|
}>;
|
|
926
926
|
autoFocus?: 'autoFocusOnAdd' | 'autoFocusOnEdit' | boolean;
|
|
927
|
+
maxWidth?: keyof typeof MicroMWidthSizes;
|
|
928
|
+
minWidth?: keyof typeof MicroMWidthSizes;
|
|
927
929
|
}
|
|
928
930
|
export const DateInputFieldDefaultProps: Partial<DateInputFieldProps>;
|
|
929
931
|
export const DateInputField: ForwardRefExoticComponent<DateInputFieldProps & RefAttributes<HTMLInputElement>>;
|
|
@@ -3070,6 +3072,7 @@ export interface useAvatarUploaderProps {
|
|
|
3070
3072
|
initialImageURL?: string;
|
|
3071
3073
|
labels?: AvatarUploaderLabels;
|
|
3072
3074
|
parentFormAPI?: UseEntityFormReturnType;
|
|
3075
|
+
maxFileSize?: number;
|
|
3073
3076
|
}
|
|
3074
3077
|
export type AvatarUploaderLabels = {
|
|
3075
3078
|
modalTitle?: string;
|