@elliemae/ds-label-value 3.17.0-next.12 → 3.17.0-next.14
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.
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { WrapperWithSchema } from './components/Wrapper.js';
|
|
3
2
|
import { GroupWithSchema } from './components/Group.js';
|
|
4
3
|
import { LabelWithSchema } from './components/Label.js';
|
|
@@ -10,7 +9,7 @@ declare const DSLabelValue: {
|
|
|
10
9
|
className: any;
|
|
11
10
|
icon: any;
|
|
12
11
|
inverted: any;
|
|
13
|
-
}): JSX.Element;
|
|
12
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
14
13
|
propTypes: {
|
|
15
14
|
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
16
15
|
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -31,7 +30,7 @@ declare const DSLabelValue: {
|
|
|
31
30
|
children: any;
|
|
32
31
|
inline: any;
|
|
33
32
|
orientation: any;
|
|
34
|
-
}): JSX.Element;
|
|
33
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
35
34
|
propTypes: {
|
|
36
35
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
37
36
|
inline: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -50,7 +49,7 @@ declare const DSLabelValue: {
|
|
|
50
49
|
className: any;
|
|
51
50
|
icon: any;
|
|
52
51
|
inverted: any;
|
|
53
|
-
}): JSX.Element;
|
|
52
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
54
53
|
propTypes: {
|
|
55
54
|
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
56
55
|
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -71,7 +70,7 @@ declare const DSLabelValue: {
|
|
|
71
70
|
children: any;
|
|
72
71
|
position: any;
|
|
73
72
|
color: any;
|
|
74
|
-
}): JSX.Element;
|
|
73
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
75
74
|
propTypes: {
|
|
76
75
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
77
76
|
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -90,7 +89,7 @@ declare const DSLabelValue: {
|
|
|
90
89
|
size: any;
|
|
91
90
|
color: any;
|
|
92
91
|
semibold?: boolean | undefined;
|
|
93
|
-
}): JSX.Element;
|
|
92
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
94
93
|
propTypes: {
|
|
95
94
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
96
95
|
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Group: {
|
|
3
2
|
({ children, inline, orientation }: {
|
|
4
3
|
children: any;
|
|
5
4
|
inline: any;
|
|
6
5
|
orientation: any;
|
|
7
|
-
}): JSX.Element;
|
|
6
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
8
7
|
propTypes: {
|
|
9
8
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
10
9
|
inline: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Label: {
|
|
3
2
|
({ children, position: labelPosition, color }: {
|
|
4
3
|
children: any;
|
|
5
4
|
position: any;
|
|
6
5
|
color: any;
|
|
7
|
-
}): JSX.Element;
|
|
6
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
8
7
|
propTypes: {
|
|
9
8
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
10
9
|
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Value: {
|
|
3
2
|
({ children, position: valuePosition, size, color: valueColor, semibold }: {
|
|
4
3
|
children: any;
|
|
@@ -6,7 +5,7 @@ declare const Value: {
|
|
|
6
5
|
size: any;
|
|
7
6
|
color: any;
|
|
8
7
|
semibold?: boolean | undefined;
|
|
9
|
-
}): JSX.Element;
|
|
8
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
10
9
|
propTypes: {
|
|
11
10
|
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
12
11
|
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Wrapper: {
|
|
3
2
|
({ containerProps, children, className, icon, inverted }: {
|
|
4
3
|
containerProps: any;
|
|
@@ -6,7 +5,7 @@ declare const Wrapper: {
|
|
|
6
5
|
className: any;
|
|
7
6
|
icon: any;
|
|
8
7
|
inverted: any;
|
|
9
|
-
}): JSX.Element;
|
|
8
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
10
9
|
propTypes: {
|
|
11
10
|
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
12
11
|
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-label-value",
|
|
3
|
-
"version": "3.17.0-next.
|
|
3
|
+
"version": "3.17.0-next.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Label value",
|
|
6
6
|
"files": [
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"indent": 4
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@elliemae/ds-classnames": "3.17.0-next.
|
|
67
|
-
"@elliemae/ds-
|
|
68
|
-
"@elliemae/ds-
|
|
69
|
-
"@elliemae/ds-
|
|
66
|
+
"@elliemae/ds-classnames": "3.17.0-next.14",
|
|
67
|
+
"@elliemae/ds-props-helpers": "3.17.0-next.14",
|
|
68
|
+
"@elliemae/ds-shared": "3.17.0-next.14",
|
|
69
|
+
"@elliemae/ds-utilities": "3.17.0-next.14"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"lodash": "^4.17.21",
|