@zealicsolutions/web-ui 0.4.86 → 0.4.87
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/ZealUIModal/ZealUIModal.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/ZealUIModal/ZealUIModal.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
@@ -9,7 +9,7 @@ export declare type ZealUIModalProps = PropsWithChildren<Pick<MUIModalProps, 'op
|
|
9
9
|
modalStyles?: CSSProperties;
|
10
10
|
size?: string;
|
11
11
|
popupId: string;
|
12
|
-
onClose: (
|
12
|
+
onClose: () => void;
|
13
13
|
withCloseIcon?: boolean;
|
14
14
|
};
|
15
15
|
export declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, withCloseIcon, ...rest }: ZealUIModalProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
@@ -2176,7 +2176,7 @@ declare type ZealUIModalProps = PropsWithChildren<Pick<ModalProps, 'open'>> & {
|
|
2176
2176
|
modalStyles?: CSSProperties;
|
2177
2177
|
size?: string;
|
2178
2178
|
popupId: string;
|
2179
|
-
onClose: (
|
2179
|
+
onClose: () => void;
|
2180
2180
|
withCloseIcon?: boolean;
|
2181
2181
|
};
|
2182
2182
|
declare const ZealUIModal: ({ children, wrapperStyles, padding, onKeyDown, modalStyles, size, popupId, withCloseIcon, ...rest }: ZealUIModalProps) => JSX.Element;
|
package/package.json
CHANGED