@inntechcorp/it-design 2.0.63 → 2.0.64
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/index.cjs.js +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.esm.js +1 -1
- package/dist/modal/modal/styled.d.ts +3 -1
- package/dist/types/ModalProps.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1035,6 +1035,10 @@ type ModalProps = {
|
|
|
1035
1035
|
* The padding of the modal content. The default value is "30px 20px".
|
|
1036
1036
|
*/
|
|
1037
1037
|
contentPadding?: string;
|
|
1038
|
+
/**
|
|
1039
|
+
* The padding of the outer modal overlay. The default value is "50px".
|
|
1040
|
+
*/
|
|
1041
|
+
outerPadding?: string;
|
|
1038
1042
|
/**
|
|
1039
1043
|
* The padding before the modal content. The default value is "30px 20px 0".
|
|
1040
1044
|
*/
|