@elliemae/ds-card 3.17.0-next.9 → 3.17.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/dist/types/DSCard.d.ts +1 -2
- package/dist/types/DSCardBody.d.ts +1 -2
- package/dist/types/DSCardHeader.d.ts +1 -2
- package/dist/types/detail/DetailCard.d.ts +1 -2
- package/dist/types/v2/ActionAddon.d.ts +1 -2
- package/dist/types/v2/Card.d.ts +1 -2
- package/dist/types/v2/Group.d.ts +1 -2
- package/package.json +11 -11
package/dist/types/DSCard.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const DSCard: {
|
|
3
2
|
({ innerRef, children, containerProps, ...otherProps }: {
|
|
4
3
|
[x: string]: any;
|
|
5
4
|
innerRef?: undefined;
|
|
6
5
|
children?: null | undefined;
|
|
7
6
|
containerProps?: {} | undefined;
|
|
8
|
-
}): JSX.Element;
|
|
7
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
9
8
|
propTypes: {
|
|
10
9
|
/** inject props to component wrapper */
|
|
11
10
|
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const DSCardBody: {
|
|
3
2
|
({ children }: {
|
|
4
3
|
children: any;
|
|
5
|
-
}): JSX.Element;
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
propTypes: {
|
|
7
6
|
/** children */
|
|
8
7
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const DSCardHeader: {
|
|
3
2
|
({ title, action }: {
|
|
4
3
|
title: any;
|
|
5
4
|
action: any;
|
|
6
|
-
}): JSX.Element;
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
propTypes: {
|
|
8
7
|
/** card header title */
|
|
9
8
|
title: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const DetailCard: {
|
|
3
2
|
({ title, description, descriptionColor, rightValue, rightDescription, rightAddon, selectable, isSelected, onSelect, expandable, isExpanded, onExpand, expandContent, readOnly, disabled, }: {
|
|
4
3
|
title: any;
|
|
@@ -16,7 +15,7 @@ declare const DetailCard: {
|
|
|
16
15
|
expandContent: any;
|
|
17
16
|
readOnly?: boolean | undefined;
|
|
18
17
|
disabled?: boolean | undefined;
|
|
19
|
-
}): JSX.Element;
|
|
18
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
20
19
|
propTypes: {
|
|
21
20
|
/**
|
|
22
21
|
* Title of the card.
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ActionAddon: {
|
|
3
2
|
({ innerRef, label, onClick, icon }: {
|
|
4
3
|
innerRef: any;
|
|
5
4
|
label: any;
|
|
6
5
|
onClick: any;
|
|
7
6
|
icon: any;
|
|
8
|
-
}): JSX.Element;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
propTypes: {
|
|
10
9
|
/**
|
|
11
10
|
* Addon label
|
package/dist/types/v2/Card.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const CustomCard: {
|
|
3
2
|
({ title, description, leftAddon, rightAddon, hasBorder, }: {
|
|
4
3
|
title: any;
|
|
@@ -6,7 +5,7 @@ declare const CustomCard: {
|
|
|
6
5
|
leftAddon: any;
|
|
7
6
|
rightAddon: any;
|
|
8
7
|
hasBorder?: boolean | undefined;
|
|
9
|
-
}): JSX.Element;
|
|
8
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
10
9
|
propTypes: {
|
|
11
10
|
/**
|
|
12
11
|
* Title of the card. requiered
|
package/dist/types/v2/Group.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-card",
|
|
3
|
-
"version": "3.17.0
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Card",
|
|
6
6
|
"files": [
|
|
@@ -71,16 +71,16 @@
|
|
|
71
71
|
"indent": 4
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@elliemae/ds-button": "3.17.0
|
|
75
|
-
"@elliemae/ds-classnames": "3.17.0
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-
|
|
80
|
-
"@elliemae/ds-
|
|
81
|
-
"@elliemae/ds-
|
|
82
|
-
"@elliemae/ds-
|
|
83
|
-
"@elliemae/ds-
|
|
74
|
+
"@elliemae/ds-button": "3.17.0",
|
|
75
|
+
"@elliemae/ds-classnames": "3.17.0",
|
|
76
|
+
"@elliemae/ds-grid": "3.17.0",
|
|
77
|
+
"@elliemae/ds-header": "3.17.0",
|
|
78
|
+
"@elliemae/ds-props-helpers": "3.17.0",
|
|
79
|
+
"@elliemae/ds-icons": "3.17.0",
|
|
80
|
+
"@elliemae/ds-separator": "3.17.0",
|
|
81
|
+
"@elliemae/ds-system": "3.17.0",
|
|
82
|
+
"@elliemae/ds-truncated-tooltip-text": "3.17.0",
|
|
83
|
+
"@elliemae/ds-form": "3.17.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@testing-library/jest-dom": "~5.16.5",
|