@mindly/ui-components 4.9.0 → 4.9.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.
|
@@ -10,5 +10,7 @@ type CardModalProps = {
|
|
|
10
10
|
onClose: () => void;
|
|
11
11
|
}) => React.ReactNode;
|
|
12
12
|
};
|
|
13
|
-
declare const CardModal: React.ForwardRefExoticComponent<CardModalProps &
|
|
13
|
+
declare const CardModal: React.ForwardRefExoticComponent<CardModalProps & {
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
} & React.RefAttributes<HTMLIonModalElement>>;
|
|
14
16
|
export default CardModal;
|
|
@@ -10,5 +10,7 @@ type CardModalProps = {
|
|
|
10
10
|
onClose: () => void;
|
|
11
11
|
}) => React.ReactNode;
|
|
12
12
|
};
|
|
13
|
-
declare const CardModal: React.ForwardRefExoticComponent<CardModalProps &
|
|
13
|
+
declare const CardModal: React.ForwardRefExoticComponent<CardModalProps & {
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
} & React.RefAttributes<HTMLIonModalElement>>;
|
|
14
16
|
export default CardModal;
|
package/dist/index.d.ts
CHANGED
|
@@ -1785,7 +1785,9 @@ type CardModalProps = {
|
|
|
1785
1785
|
onClose: () => void;
|
|
1786
1786
|
}) => React__default.ReactNode;
|
|
1787
1787
|
};
|
|
1788
|
-
declare const CardModal: React__default.ForwardRefExoticComponent<CardModalProps &
|
|
1788
|
+
declare const CardModal: React__default.ForwardRefExoticComponent<CardModalProps & {
|
|
1789
|
+
children?: React__default.ReactNode;
|
|
1790
|
+
} & React__default.RefAttributes<HTMLIonModalElement>>;
|
|
1789
1791
|
|
|
1790
1792
|
type SlotsGridProps = {
|
|
1791
1793
|
times: string[];
|