@elliemae/ds-modal-slide 3.20.2 → 3.20.4

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": "3.20.2",
3
+ "version": "3.20.4",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Modal Slide",
6
6
  "files": [
@@ -51,13 +51,13 @@
51
51
  "indent": 4
52
52
  },
53
53
  "dependencies": {
54
- "@elliemae/ds-button": "3.20.2",
55
- "@elliemae/ds-classnames": "3.20.2",
56
- "@elliemae/ds-icons": "3.20.2",
57
- "@elliemae/ds-grid": "3.20.2",
58
- "@elliemae/ds-props-helpers": "3.20.2",
59
- "@elliemae/ds-separator": "3.20.2",
60
- "@elliemae/ds-system": "3.20.2"
54
+ "@elliemae/ds-button": "3.20.4",
55
+ "@elliemae/ds-classnames": "3.20.4",
56
+ "@elliemae/ds-grid": "3.20.4",
57
+ "@elliemae/ds-separator": "3.20.4",
58
+ "@elliemae/ds-icons": "3.20.4",
59
+ "@elliemae/ds-props-helpers": "3.20.4",
60
+ "@elliemae/ds-system": "3.20.4"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@testing-library/react": "~12.1.3",
@@ -1,44 +0,0 @@
1
- import React from 'react';
2
- import ModalHeader from './components/Header.js';
3
- import ModalFooter from './components/Footer.js';
4
- declare const DSModalSlide: {
5
- (props: any): React.ReactPortal | null;
6
- propTypes: {
7
- /**
8
- * If the modal slide is centered or not
9
- */
10
- centered: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
11
- /**
12
- * If the modal slide is visible or not
13
- */
14
- isOpen: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
15
- /**
16
- * Main content of the modal
17
- */
18
- children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
19
- /**
20
- * If the modal slide takes the full width or not
21
- */
22
- fullWidth: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
23
- /**
24
- * If the modal slide has a header, only available for full width option
25
- */
26
- header: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
27
- /**
28
- * Ratio of fade out
29
- */
30
- fadeOut: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
31
- /**
32
- * Ratio of fade in
33
- */
34
- fadeIn: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
35
- /**
36
- * Override the panel height to scroll height of the container
37
- */
38
- overrideHeight: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
39
- };
40
- displayName: string;
41
- };
42
- declare const DSModalSlideWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<any>;
43
- export { ModalHeader, ModalFooter, DSModalSlide, DSModalSlideWithSchema };
44
- export default DSModalSlide;