aq-fe-framework 0.1.254 → 0.1.256
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.
@@ -41,8 +41,8 @@ interface IActionIconCheck extends ActionIconProps {
|
|
41
41
|
}
|
42
42
|
declare function MyActionIconCheck({ modalSize, comment, ...rest }: IActionIconCheck): react_jsx_runtime.JSX.Element;
|
43
43
|
|
44
|
-
interface IMyActionIconModal extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "style">, ActionIconProps {
|
45
|
-
title?:
|
44
|
+
interface IMyActionIconModal extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "style" | "title">, ActionIconProps {
|
45
|
+
title?: ReactNode;
|
46
46
|
children?: ReactNode;
|
47
47
|
crudType?: TYPES_CRUD;
|
48
48
|
modalSize?: TYPES_MANTINE_SIZE;
|
@@ -100,9 +100,9 @@ interface IMyButton extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>,
|
|
100
100
|
}
|
101
101
|
declare function MyButton({ children, crudType, ...rest }: IMyButton): react_jsx_runtime.JSX.Element | undefined;
|
102
102
|
|
103
|
-
interface IMyButtonModal extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "style">, ButtonProps {
|
103
|
+
interface IMyButtonModal extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "style" | "title">, ButtonProps {
|
104
104
|
label?: string;
|
105
|
-
title?:
|
105
|
+
title?: ReactNode;
|
106
106
|
children?: ReactNode;
|
107
107
|
crudType?: TYPES_CRUD;
|
108
108
|
modalSize?: TYPES_MANTINE_SIZE;
|