@elliemae/ds-backdrop 3.13.1-rc.1 → 3.13.1-rc.3

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.
@@ -0,0 +1,23 @@
1
+ import PropTypes from 'prop-types';
2
+ export declare const DSBackdrop: {
3
+ ({ type, zIndex, onClick }: {
4
+ type?: string | undefined;
5
+ zIndex: any;
6
+ onClick?: (() => null) | undefined;
7
+ }): JSX.Element;
8
+ propTypes: {
9
+ /**
10
+ * ['cover', 'fill']
11
+ */
12
+ type: PropTypes.Requireable<string>;
13
+ /**
14
+ * z-index of dimmer background
15
+ */
16
+ zIndex: PropTypes.Requireable<number>;
17
+ /**
18
+ * Backdrop click event
19
+ */
20
+ onClick: PropTypes.Requireable<(...args: any[]) => any>;
21
+ };
22
+ };
23
+ export default DSBackdrop;
@@ -0,0 +1,2 @@
1
+ export { default } from './Backdrop';
2
+ export { default as DSBackdrop } from './Backdrop';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-backdrop",
3
- "version": "3.13.1-rc.1",
3
+ "version": "3.13.1-rc.3",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Backdrop",
6
6
  "files": [
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "prop-types": "~15.8.1",
43
- "@elliemae/ds-system": "3.13.1-rc.1"
43
+ "@elliemae/ds-system": "3.13.1-rc.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "styled-components": "~5.3.6"