dga-ui-react 1.8.14 → 1.8.16
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 +13 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +33 -30
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -293,6 +293,7 @@ interface DGA_ModalProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "tit
|
|
|
293
293
|
onClose?: Function;
|
|
294
294
|
footerStartButtons?: React.ReactElement<typeof Button>[];
|
|
295
295
|
footerEndButtons?: React.ReactElement<typeof Button>[];
|
|
296
|
+
disablePageScroll?: boolean;
|
|
296
297
|
}
|
|
297
298
|
declare const Modal: React.FC<DGA_ModalProps>;
|
|
298
299
|
|