stone-kit 0.0.55 → 0.0.56
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { default as React, FC } from 'react';
|
|
1
|
+
import { default as React, Dispatch, FC, SetStateAction } from 'react';
|
|
2
2
|
|
|
3
3
|
interface IModalProps {
|
|
4
4
|
isOpen: boolean;
|
|
5
|
-
emitIsOpen:
|
|
5
|
+
emitIsOpen: Dispatch<SetStateAction<boolean>>;
|
|
6
6
|
additionalClass?: string;
|
|
7
7
|
additionalClassOverlay?: string;
|
|
8
8
|
additionalClassModalBody?: string;
|
|
@@ -19585,7 +19585,7 @@ const tb = ({
|
|
|
19585
19585
|
children: Ee
|
|
19586
19586
|
}) => {
|
|
19587
19587
|
const ce = () => {
|
|
19588
|
-
Hn && ze();
|
|
19588
|
+
Hn && ze(!1);
|
|
19589
19589
|
};
|
|
19590
19590
|
jk(() => {
|
|
19591
19591
|
const te = () => {
|