@inntechcorp/it-design 2.0.63 → 2.0.65
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
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
-
declare const ModalInnerWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").
|
|
3
|
+
declare const ModalInnerWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
4
|
+
$padding?: string | undefined;
|
|
5
|
+
}>> & string;
|
|
4
6
|
declare const ModalBody: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
5
7
|
$width: string;
|
|
6
8
|
}>> & string;
|
|
@@ -112,6 +112,10 @@ export type ModalProps = {
|
|
|
112
112
|
* The padding of the modal content. The default value is "30px 20px".
|
|
113
113
|
*/
|
|
114
114
|
contentPadding?: string;
|
|
115
|
+
/**
|
|
116
|
+
* The padding of the outer modal overlay. The default value is "50px".
|
|
117
|
+
*/
|
|
118
|
+
outerPadding?: string;
|
|
115
119
|
/**
|
|
116
120
|
* The padding before the modal content. The default value is "30px 20px 0".
|
|
117
121
|
*/
|