@elliemae/ds-modal-slide 2.2.0-next.6 → 2.2.0-rc.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-modal-slide",
3
- "version": "2.2.0-next.6",
3
+ "version": "2.2.0-rc.0",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Modal Slide",
6
6
  "module": "./esm/index.js",
@@ -48,12 +48,12 @@
48
48
  "build": "node ../../scripts/build/build.js"
49
49
  },
50
50
  "dependencies": {
51
- "@elliemae/ds-button": "2.2.0-next.6",
52
- "@elliemae/ds-classnames": "2.2.0-next.6",
53
- "@elliemae/ds-grid": "2.2.0-next.6",
54
- "@elliemae/ds-icons": "2.2.0-next.6",
55
- "@elliemae/ds-separator": "2.2.0-next.6",
56
- "@elliemae/ds-system": "2.2.0-next.6",
51
+ "@elliemae/ds-button": "2.2.0-rc.0",
52
+ "@elliemae/ds-classnames": "2.2.0-rc.0",
53
+ "@elliemae/ds-grid": "2.2.0-rc.0",
54
+ "@elliemae/ds-icons": "2.2.0-rc.0",
55
+ "@elliemae/ds-separator": "2.2.0-rc.0",
56
+ "@elliemae/ds-system": "2.2.0-rc.0",
57
57
  "prop-types": "~15.7.2",
58
58
  "react-desc": "~4.1.3"
59
59
  },
@@ -86,18 +86,7 @@ declare const DSModalSlide: {
86
86
  };
87
87
  };
88
88
  declare const DSModalSlideWithSchema: {
89
- (props?: {
90
- isOpen?: boolean | undefined;
91
- children: any;
92
- getContainer: any;
93
- centered?: boolean | undefined;
94
- fullWidth?: boolean | undefined;
95
- header?: null | undefined;
96
- footer?: null | undefined;
97
- fadeOut?: number | undefined;
98
- fadeIn?: number | undefined;
99
- overrideHeight?: boolean | undefined;
100
- } | undefined): JSX.Element;
89
+ (props?: unknown): JSX.Element;
101
90
  propTypes: unknown;
102
91
  toTypescript: () => import("react-desc").TypescriptSchema;
103
92
  };
@@ -71,18 +71,7 @@ declare const ModalFooter: {
71
71
  };
72
72
  };
73
73
  declare const DSModalSlideFooterWithSchema: {
74
- (props?: {
75
- confirmLabel?: string | undefined;
76
- rejectLabel?: string | undefined;
77
- onConfirm: any;
78
- onReject: any;
79
- confirmProps?: {
80
- disabled: boolean;
81
- } | undefined;
82
- rejectProps?: {
83
- disabled: boolean;
84
- } | undefined;
85
- } | undefined): JSX.Element;
74
+ (props?: unknown): JSX.Element;
86
75
  propTypes: unknown;
87
76
  toTypescript: () => import("react-desc").TypescriptSchema;
88
77
  };
@@ -31,11 +31,7 @@ declare const ModalHeader: {
31
31
  };
32
32
  };
33
33
  declare const DSModalSlideHeaderWithSchema: {
34
- (props?: {
35
- title?: string | undefined;
36
- onClose?: (() => null) | undefined;
37
- toolbar?: null | undefined;
38
- } | undefined): JSX.Element;
34
+ (props?: unknown): JSX.Element;
39
35
  propTypes: unknown;
40
36
  toTypescript: () => import("react-desc").TypescriptSchema;
41
37
  };