@elliemae/ds-card 2.2.0-beta.0 → 2.2.0-next.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 +10 -10
- package/types/DSCard.d.ts +6 -1
- package/types/DSCardBody.d.ts +3 -1
- package/types/DSCardHeader.d.ts +4 -1
- package/types/detail/DetailCard.d.ts +17 -1
- package/types/v2/ActionAddon.d.ts +5 -1
- package/types/v2/Card.d.ts +7 -1
- package/types/v2/Group.d.ts +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-card",
|
|
3
|
-
"version": "2.2.0-
|
|
3
|
+
"version": "2.2.0-next.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Card",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
"build": "node ../../scripts/build/build.js"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@elliemae/ds-button": "2.2.0-
|
|
72
|
-
"@elliemae/ds-classnames": "2.2.0-
|
|
73
|
-
"@elliemae/ds-form": "2.2.0-
|
|
74
|
-
"@elliemae/ds-grid": "2.2.0-
|
|
75
|
-
"@elliemae/ds-header": "2.2.0-
|
|
76
|
-
"@elliemae/ds-icons": "2.2.0-
|
|
77
|
-
"@elliemae/ds-separator": "2.2.0-
|
|
78
|
-
"@elliemae/ds-system": "2.2.0-
|
|
79
|
-
"@elliemae/ds-truncated-tooltip-text": "2.2.0-
|
|
71
|
+
"@elliemae/ds-button": "2.2.0-next.4",
|
|
72
|
+
"@elliemae/ds-classnames": "2.2.0-next.4",
|
|
73
|
+
"@elliemae/ds-form": "2.2.0-next.4",
|
|
74
|
+
"@elliemae/ds-grid": "2.2.0-next.4",
|
|
75
|
+
"@elliemae/ds-header": "2.2.0-next.4",
|
|
76
|
+
"@elliemae/ds-icons": "2.2.0-next.4",
|
|
77
|
+
"@elliemae/ds-separator": "2.2.0-next.4",
|
|
78
|
+
"@elliemae/ds-system": "2.2.0-next.4",
|
|
79
|
+
"@elliemae/ds-truncated-tooltip-text": "2.2.0-next.4",
|
|
80
80
|
"react-desc": "~4.1.3"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
package/types/DSCard.d.ts
CHANGED
|
@@ -36,7 +36,12 @@ declare const DSCard: {
|
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
declare const DSCardWithSchema: {
|
|
39
|
-
(props?:
|
|
39
|
+
(props?: {
|
|
40
|
+
[x: string]: any;
|
|
41
|
+
innerRef?: undefined;
|
|
42
|
+
children?: null | undefined;
|
|
43
|
+
containerProps?: {} | undefined;
|
|
44
|
+
} | undefined): JSX.Element;
|
|
40
45
|
propTypes: unknown;
|
|
41
46
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
42
47
|
};
|
package/types/DSCardBody.d.ts
CHANGED
|
@@ -15,7 +15,9 @@ declare const DSCardBody: {
|
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
declare const DSCardBodyWithSchema: {
|
|
18
|
-
(props?:
|
|
18
|
+
(props?: {
|
|
19
|
+
children: any;
|
|
20
|
+
} | undefined): JSX.Element;
|
|
19
21
|
propTypes: unknown;
|
|
20
22
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
21
23
|
};
|
package/types/DSCardHeader.d.ts
CHANGED
|
@@ -23,7 +23,10 @@ declare const DSCardHeader: {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
declare const DSCardHeaderWithSchema: {
|
|
26
|
-
(props?:
|
|
26
|
+
(props?: {
|
|
27
|
+
title: any;
|
|
28
|
+
action: any;
|
|
29
|
+
} | undefined): JSX.Element;
|
|
27
30
|
propTypes: unknown;
|
|
28
31
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
29
32
|
};
|
|
@@ -152,7 +152,23 @@ declare const DetailCard: {
|
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
154
|
declare const DSCardDetailWithSchema: {
|
|
155
|
-
(props?:
|
|
155
|
+
(props?: {
|
|
156
|
+
title: any;
|
|
157
|
+
description: any;
|
|
158
|
+
descriptionColor?: string | undefined;
|
|
159
|
+
rightValue: any;
|
|
160
|
+
rightDescription: any;
|
|
161
|
+
rightAddon: any;
|
|
162
|
+
selectable?: boolean | undefined;
|
|
163
|
+
isSelected?: boolean | undefined;
|
|
164
|
+
onSelect?: ((...args: any[]) => void) | undefined;
|
|
165
|
+
expandable?: boolean | undefined;
|
|
166
|
+
isExpanded?: boolean | undefined;
|
|
167
|
+
onExpand?: ((...args: any[]) => void) | undefined;
|
|
168
|
+
expandContent: any;
|
|
169
|
+
readOnly?: boolean | undefined;
|
|
170
|
+
disabled?: boolean | undefined;
|
|
171
|
+
} | undefined): JSX.Element;
|
|
156
172
|
propTypes: unknown;
|
|
157
173
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
158
174
|
};
|
|
@@ -37,7 +37,11 @@ declare const ActionAddon: {
|
|
|
37
37
|
};
|
|
38
38
|
};
|
|
39
39
|
declare const DSCardActionAddonWithSchema: {
|
|
40
|
-
(props?:
|
|
40
|
+
(props?: {
|
|
41
|
+
label: any;
|
|
42
|
+
onClick: any;
|
|
43
|
+
icon: any;
|
|
44
|
+
} | undefined): JSX.Element;
|
|
41
45
|
propTypes: unknown;
|
|
42
46
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
43
47
|
};
|
package/types/v2/Card.d.ts
CHANGED
|
@@ -52,7 +52,13 @@ declare const CustomCard: {
|
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
declare const DSCardCustomWithSchema: {
|
|
55
|
-
(props?:
|
|
55
|
+
(props?: {
|
|
56
|
+
title: any;
|
|
57
|
+
description: any;
|
|
58
|
+
leftAddon: any;
|
|
59
|
+
rightAddon: any;
|
|
60
|
+
hasBorder?: boolean | undefined;
|
|
61
|
+
} | undefined): JSX.Element;
|
|
56
62
|
propTypes: unknown;
|
|
57
63
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
58
64
|
};
|
package/types/v2/Group.d.ts
CHANGED
|
@@ -27,7 +27,11 @@ declare const CardGroup: {
|
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
declare const DSCardGroupWithSchema: {
|
|
30
|
-
(props?:
|
|
30
|
+
(props?: {
|
|
31
|
+
children: any;
|
|
32
|
+
title: any;
|
|
33
|
+
action: any;
|
|
34
|
+
} | undefined): JSX.Element;
|
|
31
35
|
propTypes: unknown;
|
|
32
36
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
33
37
|
};
|