@elliemae/ds-dialog 2.3.0-next.1 → 2.3.0-next.10
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/cjs/DSDialog.js +15 -8
- package/cjs/propTypes.js +2 -3
- package/esm/DSDialog.js +15 -8
- package/esm/propTypes.js +2 -3
- package/package.json +3 -3
- package/types/DSDialog.d.ts +361 -361
- package/types/propTypes.d.ts +363 -362
- package/types/styles.d.ts +1 -5
- package/types/tests/DSDialog.test.d.ts +1 -0
package/types/styles.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
import { DSDialogT } from './propTypes';
|
|
2
|
-
import type { DSDialogInternalsT } from './sharedTypes';
|
|
3
|
-
interface FixedBodyT {
|
|
4
|
-
bodyInfo: DSDialogInternalsT.BodyInfoT;
|
|
5
|
-
}
|
|
6
2
|
interface StyledDialogBackgroundT {
|
|
7
3
|
zIndex: number;
|
|
8
4
|
}
|
|
@@ -10,7 +6,7 @@ interface StyledDialogContainerT {
|
|
|
10
6
|
size: DSDialogT.Sizes;
|
|
11
7
|
centered: boolean;
|
|
12
8
|
}
|
|
13
|
-
export declare const FixedBody:
|
|
9
|
+
export declare const FixedBody: any;
|
|
14
10
|
export declare const StyledDialogBackground: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledDialogBackgroundT, never>;
|
|
15
11
|
export declare const StyledDialogContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledDialogContainerT, never>;
|
|
16
12
|
export declare const DSDialogTitle: import("styled-components").StyledComponent<"h3", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|