react-crud-mui 0.2.14 → 0.2.15
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.
|
@@ -409,7 +409,7 @@ declare function useDetailPageModal<TModel extends FieldValues>({ models, unique
|
|
|
409
409
|
readonly headerProps?: import('@mui/material').BoxProps;
|
|
410
410
|
readonly moreOptions?: import('../../..').MoreButtonProps["options"];
|
|
411
411
|
readonly useHeaderIconWrapper?: boolean;
|
|
412
|
-
readonly tabs?: import('
|
|
412
|
+
readonly tabs?: import('../../..').TabPane[];
|
|
413
413
|
readonly error?: import('../../utils').ServerError;
|
|
414
414
|
readonly footerContent?: import('react').ReactNode;
|
|
415
415
|
readonly moreContent?: import('react').ReactNode;
|
|
@@ -3,7 +3,7 @@ import { UsePhoneInputConfig } from 'react-international-phone';
|
|
|
3
3
|
import { BaseTextFieldProps } from '@mui/material/TextField';
|
|
4
4
|
export interface PhoneInputProps extends BaseTextFieldProps {
|
|
5
5
|
value?: string;
|
|
6
|
-
onChange?:
|
|
6
|
+
onChange?: UsePhoneInputConfig['onChange'];
|
|
7
7
|
phoneInputconfig?: UsePhoneInputConfig;
|
|
8
8
|
getRef?: React.MutableRefObject<typeof PhoneInput>;
|
|
9
9
|
}
|