@sunrise-upc/mobile-prod-card 1.2.6-beta.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/LineCheckV3/GenericModal.d.ts +2 -1
- package/dist/cjs/components/lineTable/lineTable.types.d.ts +1 -0
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/LineCheckV3/GenericModal.d.ts +2 -1
- package/dist/esm/components/lineTable/lineTable.types.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +1 -0
- package/package.json +4 -4
@@ -12,6 +12,7 @@ interface GenericModalSchema {
|
|
12
12
|
fixedWidth?: string;
|
13
13
|
backgroundColor?: string;
|
14
14
|
bodyPadding?: string;
|
15
|
+
id?: string;
|
15
16
|
}
|
16
|
-
declare const GenericModal: ({ modalState, handler, showFooter, footerNode, children, width, height, noCloseButton, backDrop, fixedWidth, backgroundColor, bodyPadding }: GenericModalSchema) => JSX.Element;
|
17
|
+
declare const GenericModal: ({ modalState, handler, showFooter, footerNode, children, width, height, noCloseButton, backDrop, fixedWidth, backgroundColor, bodyPadding, id }: GenericModalSchema) => JSX.Element;
|
17
18
|
export default GenericModal;
|