@elliemae/ds-card 2.2.0-next.5 → 2.2.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-card",
3
- "version": "2.2.0-next.5",
3
+ "version": "2.2.0",
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-next.5",
72
- "@elliemae/ds-classnames": "2.2.0-next.5",
73
- "@elliemae/ds-form": "2.2.0-next.5",
74
- "@elliemae/ds-grid": "2.2.0-next.5",
75
- "@elliemae/ds-header": "2.2.0-next.5",
76
- "@elliemae/ds-icons": "2.2.0-next.5",
77
- "@elliemae/ds-separator": "2.2.0-next.5",
78
- "@elliemae/ds-system": "2.2.0-next.5",
79
- "@elliemae/ds-truncated-tooltip-text": "2.2.0-next.5",
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",
80
80
  "react-desc": "~4.1.3"
81
81
  },
82
82
  "devDependencies": {
package/types/DSCard.d.ts CHANGED
@@ -36,12 +36,7 @@ declare const DSCard: {
36
36
  };
37
37
  };
38
38
  declare const DSCardWithSchema: {
39
- (props?: {
40
- [x: string]: any;
41
- innerRef?: undefined;
42
- children?: null | undefined;
43
- containerProps?: {} | undefined;
44
- } | undefined): JSX.Element;
39
+ (props?: unknown): JSX.Element;
45
40
  propTypes: unknown;
46
41
  toTypescript: () => import("react-desc").TypescriptSchema;
47
42
  };
@@ -15,9 +15,7 @@ declare const DSCardBody: {
15
15
  };
16
16
  };
17
17
  declare const DSCardBodyWithSchema: {
18
- (props?: {
19
- children: any;
20
- } | undefined): JSX.Element;
18
+ (props?: unknown): JSX.Element;
21
19
  propTypes: unknown;
22
20
  toTypescript: () => import("react-desc").TypescriptSchema;
23
21
  };
@@ -23,10 +23,7 @@ declare const DSCardHeader: {
23
23
  };
24
24
  };
25
25
  declare const DSCardHeaderWithSchema: {
26
- (props?: {
27
- title: any;
28
- action: any;
29
- } | undefined): JSX.Element;
26
+ (props?: unknown): JSX.Element;
30
27
  propTypes: unknown;
31
28
  toTypescript: () => import("react-desc").TypescriptSchema;
32
29
  };
@@ -152,23 +152,7 @@ declare const DetailCard: {
152
152
  };
153
153
  };
154
154
  declare const DSCardDetailWithSchema: {
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;
155
+ (props?: unknown): JSX.Element;
172
156
  propTypes: unknown;
173
157
  toTypescript: () => import("react-desc").TypescriptSchema;
174
158
  };
@@ -37,11 +37,7 @@ declare const ActionAddon: {
37
37
  };
38
38
  };
39
39
  declare const DSCardActionAddonWithSchema: {
40
- (props?: {
41
- label: any;
42
- onClick: any;
43
- icon: any;
44
- } | undefined): JSX.Element;
40
+ (props?: unknown): JSX.Element;
45
41
  propTypes: unknown;
46
42
  toTypescript: () => import("react-desc").TypescriptSchema;
47
43
  };
@@ -52,13 +52,7 @@ declare const CustomCard: {
52
52
  };
53
53
  };
54
54
  declare const DSCardCustomWithSchema: {
55
- (props?: {
56
- title: any;
57
- description: any;
58
- leftAddon: any;
59
- rightAddon: any;
60
- hasBorder?: boolean | undefined;
61
- } | undefined): JSX.Element;
55
+ (props?: unknown): JSX.Element;
62
56
  propTypes: unknown;
63
57
  toTypescript: () => import("react-desc").TypescriptSchema;
64
58
  };
@@ -27,11 +27,7 @@ declare const CardGroup: {
27
27
  };
28
28
  };
29
29
  declare const DSCardGroupWithSchema: {
30
- (props?: {
31
- children: any;
32
- title: any;
33
- action: any;
34
- } | undefined): JSX.Element;
30
+ (props?: unknown): JSX.Element;
35
31
  propTypes: unknown;
36
32
  toTypescript: () => import("react-desc").TypescriptSchema;
37
33
  };