@elliemae/ds-backdrop 3.14.0-next.16 → 3.14.0-next.17
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,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type DSBackdropT } from './react-desc-prop-types';
|
|
3
|
+
export declare const DSBackdrop: React.ComponentType<DSBackdropT.Props>;
|
|
4
|
+
export declare const DSBackdropWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<DSBackdropT.Props>;
|
|
5
|
+
export default DSBackdrop;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-utilities';
|
|
2
|
+
import type { FontSizeProps, ColorProps } from '@elliemae/ds-system';
|
|
3
|
+
import type { WeakValidationMap } from 'react';
|
|
4
|
+
export declare namespace DSBackdropT {
|
|
5
|
+
interface IProps {
|
|
6
|
+
type?: 'fill' | 'cover';
|
|
7
|
+
onClick?: React.MouseEventHandler;
|
|
8
|
+
}
|
|
9
|
+
interface Props extends IProps, Omit<GlobalAttributesT<HTMLElement>, keyof IProps | 'color'>, XstyledProps, FontSizeProps, ColorProps {
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export declare const DSBackdropPropTypes: WeakValidationMap<unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-backdrop",
|
|
3
|
-
"version": "3.14.0-next.
|
|
3
|
+
"version": "3.14.0-next.17",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Backdrop",
|
|
6
6
|
"files": [
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"indent": 4
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elliemae/ds-system": "3.14.0-next.
|
|
43
|
-
"@elliemae/ds-utilities": "3.14.0-next.
|
|
42
|
+
"@elliemae/ds-system": "3.14.0-next.17",
|
|
43
|
+
"@elliemae/ds-utilities": "3.14.0-next.17"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"styled-components": "~5.3.6"
|