@elliemae/ds-label-value 3.17.0-next.9 → 3.17.0-rc.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/DSLabelValue.d.ts +110 -0
- package/dist/types/components/Group.d.ts +24 -0
- package/dist/types/components/Label.d.ts +24 -0
- package/dist/types/components/Value.d.ts +32 -0
- package/dist/types/components/Wrapper.d.ts +32 -0
- package/dist/types/components/defaultProps.d.ts +20 -0
- package/dist/types/components/props.d.ts +33 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +5 -5
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { WrapperWithSchema } from './components/Wrapper.js';
|
|
2
|
+
import { GroupWithSchema } from './components/Group.js';
|
|
3
|
+
import { LabelWithSchema } from './components/Label.js';
|
|
4
|
+
import { ValueWithSchema } from './components/Value.js';
|
|
5
|
+
declare const DSLabelValue: {
|
|
6
|
+
({ containerProps, children, className, icon, inverted }: {
|
|
7
|
+
containerProps: any;
|
|
8
|
+
children: any;
|
|
9
|
+
className: any;
|
|
10
|
+
icon: any;
|
|
11
|
+
inverted: any;
|
|
12
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
13
|
+
propTypes: {
|
|
14
|
+
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
15
|
+
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
16
|
+
icon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
17
|
+
inverted: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
18
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
19
|
+
};
|
|
20
|
+
defaultProps: {
|
|
21
|
+
containerProps: {};
|
|
22
|
+
className: string;
|
|
23
|
+
icon: null;
|
|
24
|
+
inverted: boolean;
|
|
25
|
+
};
|
|
26
|
+
displayName: string;
|
|
27
|
+
} & {
|
|
28
|
+
Group: {
|
|
29
|
+
({ children, inline, orientation }: {
|
|
30
|
+
children: any;
|
|
31
|
+
inline: any;
|
|
32
|
+
orientation: any;
|
|
33
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
34
|
+
propTypes: {
|
|
35
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
36
|
+
inline: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
37
|
+
orientation: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
38
|
+
};
|
|
39
|
+
defaultProps: {
|
|
40
|
+
inline: boolean;
|
|
41
|
+
orientation: "vertical";
|
|
42
|
+
};
|
|
43
|
+
displayName: string;
|
|
44
|
+
};
|
|
45
|
+
Wrapper: {
|
|
46
|
+
({ containerProps, children, className, icon, inverted }: {
|
|
47
|
+
containerProps: any;
|
|
48
|
+
children: any;
|
|
49
|
+
className: any;
|
|
50
|
+
icon: any;
|
|
51
|
+
inverted: any;
|
|
52
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
53
|
+
propTypes: {
|
|
54
|
+
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
55
|
+
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
56
|
+
icon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
57
|
+
inverted: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
58
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
59
|
+
};
|
|
60
|
+
defaultProps: {
|
|
61
|
+
containerProps: {};
|
|
62
|
+
className: string;
|
|
63
|
+
icon: null;
|
|
64
|
+
inverted: boolean;
|
|
65
|
+
};
|
|
66
|
+
displayName: string;
|
|
67
|
+
};
|
|
68
|
+
Label: {
|
|
69
|
+
({ children, position: labelPosition, color }: {
|
|
70
|
+
children: any;
|
|
71
|
+
position: any;
|
|
72
|
+
color: any;
|
|
73
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
74
|
+
propTypes: {
|
|
75
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
76
|
+
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
77
|
+
color: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
78
|
+
};
|
|
79
|
+
defaultProps: {
|
|
80
|
+
position: "left";
|
|
81
|
+
color: "neutral500";
|
|
82
|
+
};
|
|
83
|
+
displayName: string;
|
|
84
|
+
};
|
|
85
|
+
Value: {
|
|
86
|
+
({ children, position: valuePosition, size, color: valueColor, semibold }: {
|
|
87
|
+
children: any;
|
|
88
|
+
position: any;
|
|
89
|
+
size: any;
|
|
90
|
+
color: any;
|
|
91
|
+
semibold?: boolean | undefined;
|
|
92
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
93
|
+
propTypes: {
|
|
94
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
95
|
+
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
96
|
+
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
97
|
+
color: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
98
|
+
semibold: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
99
|
+
};
|
|
100
|
+
defaultProps: {
|
|
101
|
+
position: "left";
|
|
102
|
+
size: "m";
|
|
103
|
+
color: "neutral700";
|
|
104
|
+
semibold: boolean;
|
|
105
|
+
};
|
|
106
|
+
displayName: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
export { WrapperWithSchema, GroupWithSchema, LabelWithSchema, ValueWithSchema };
|
|
110
|
+
export default DSLabelValue;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const Group: {
|
|
2
|
+
({ children, inline, orientation }: {
|
|
3
|
+
children: any;
|
|
4
|
+
inline: any;
|
|
5
|
+
orientation: any;
|
|
6
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
7
|
+
propTypes: {
|
|
8
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
9
|
+
inline: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
10
|
+
orientation: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
11
|
+
};
|
|
12
|
+
defaultProps: {
|
|
13
|
+
inline: boolean;
|
|
14
|
+
orientation: "vertical";
|
|
15
|
+
};
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
declare const GroupWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
|
|
19
|
+
children: any;
|
|
20
|
+
inline: any;
|
|
21
|
+
orientation: any;
|
|
22
|
+
}>;
|
|
23
|
+
export { GroupWithSchema };
|
|
24
|
+
export default Group;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const Label: {
|
|
2
|
+
({ children, position: labelPosition, color }: {
|
|
3
|
+
children: any;
|
|
4
|
+
position: any;
|
|
5
|
+
color: any;
|
|
6
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
7
|
+
propTypes: {
|
|
8
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
9
|
+
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
10
|
+
color: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
11
|
+
};
|
|
12
|
+
defaultProps: {
|
|
13
|
+
position: "left";
|
|
14
|
+
color: "neutral500";
|
|
15
|
+
};
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
declare const LabelWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
|
|
19
|
+
children: any;
|
|
20
|
+
position: any;
|
|
21
|
+
color: any;
|
|
22
|
+
}>;
|
|
23
|
+
export { LabelWithSchema };
|
|
24
|
+
export default Label;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const Value: {
|
|
2
|
+
({ children, position: valuePosition, size, color: valueColor, semibold }: {
|
|
3
|
+
children: any;
|
|
4
|
+
position: any;
|
|
5
|
+
size: any;
|
|
6
|
+
color: any;
|
|
7
|
+
semibold?: boolean | undefined;
|
|
8
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
9
|
+
propTypes: {
|
|
10
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
11
|
+
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
12
|
+
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
13
|
+
color: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
14
|
+
semibold: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
15
|
+
};
|
|
16
|
+
defaultProps: {
|
|
17
|
+
position: "left";
|
|
18
|
+
size: "m";
|
|
19
|
+
color: "neutral700";
|
|
20
|
+
semibold: boolean;
|
|
21
|
+
};
|
|
22
|
+
displayName: string;
|
|
23
|
+
};
|
|
24
|
+
declare const ValueWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
|
|
25
|
+
children: any;
|
|
26
|
+
position: any;
|
|
27
|
+
size: any;
|
|
28
|
+
color: any;
|
|
29
|
+
semibold?: boolean | undefined;
|
|
30
|
+
}>;
|
|
31
|
+
export { ValueWithSchema };
|
|
32
|
+
export default Value;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const Wrapper: {
|
|
2
|
+
({ containerProps, children, className, icon, inverted }: {
|
|
3
|
+
containerProps: any;
|
|
4
|
+
children: any;
|
|
5
|
+
className: any;
|
|
6
|
+
icon: any;
|
|
7
|
+
inverted: any;
|
|
8
|
+
}): import("react/jsx-runtime.js").JSX.Element;
|
|
9
|
+
propTypes: {
|
|
10
|
+
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
11
|
+
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
12
|
+
icon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
13
|
+
inverted: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
14
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
|
|
15
|
+
};
|
|
16
|
+
defaultProps: {
|
|
17
|
+
containerProps: {};
|
|
18
|
+
className: string;
|
|
19
|
+
icon: null;
|
|
20
|
+
inverted: boolean;
|
|
21
|
+
};
|
|
22
|
+
displayName: string;
|
|
23
|
+
};
|
|
24
|
+
declare const WrapperWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
|
|
25
|
+
containerProps: any;
|
|
26
|
+
children: any;
|
|
27
|
+
className: any;
|
|
28
|
+
icon: any;
|
|
29
|
+
inverted: any;
|
|
30
|
+
}>;
|
|
31
|
+
export { WrapperWithSchema };
|
|
32
|
+
export default Wrapper;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const groupDefault: {
|
|
2
|
+
inline: boolean;
|
|
3
|
+
orientation: "vertical";
|
|
4
|
+
};
|
|
5
|
+
export declare const labelDefault: {
|
|
6
|
+
position: "left";
|
|
7
|
+
color: "neutral500";
|
|
8
|
+
};
|
|
9
|
+
export declare const valueDefault: {
|
|
10
|
+
position: "left";
|
|
11
|
+
size: "m";
|
|
12
|
+
color: "neutral700";
|
|
13
|
+
semibold: boolean;
|
|
14
|
+
};
|
|
15
|
+
export declare const wrapperDefault: {
|
|
16
|
+
containerProps: {};
|
|
17
|
+
className: string;
|
|
18
|
+
icon: null;
|
|
19
|
+
inverted: boolean;
|
|
20
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare const groupProps: {
|
|
2
|
+
/**
|
|
3
|
+
* The elements to be wrapped
|
|
4
|
+
*/
|
|
5
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
6
|
+
/**
|
|
7
|
+
* If the label value should be inline
|
|
8
|
+
*/
|
|
9
|
+
inline: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
10
|
+
/**
|
|
11
|
+
* 'vertical' or 'horizontal'
|
|
12
|
+
*/
|
|
13
|
+
orientation: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
14
|
+
};
|
|
15
|
+
export declare const labelProps: {
|
|
16
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
17
|
+
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
18
|
+
color: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
19
|
+
};
|
|
20
|
+
export declare const wrapperProps: {
|
|
21
|
+
containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
22
|
+
className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
23
|
+
icon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
24
|
+
inverted: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
25
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
26
|
+
};
|
|
27
|
+
export declare const valueProps: {
|
|
28
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
29
|
+
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
30
|
+
position: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
31
|
+
color: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
32
|
+
semibold: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
33
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, default as DSLabelValue, WrapperWithSchema, GroupWithSchema, LabelWithSchema, ValueWithSchema, } from './DSLabelValue.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-label-value",
|
|
3
|
-
"version": "3.17.0-
|
|
3
|
+
"version": "3.17.0-rc.0",
|
|
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-
|
|
67
|
-
"@elliemae/ds-props-helpers": "3.17.0-
|
|
68
|
-
"@elliemae/ds-shared": "3.17.0-
|
|
69
|
-
"@elliemae/ds-utilities": "3.17.0-
|
|
66
|
+
"@elliemae/ds-classnames": "3.17.0-rc.0",
|
|
67
|
+
"@elliemae/ds-props-helpers": "3.17.0-rc.0",
|
|
68
|
+
"@elliemae/ds-shared": "3.17.0-rc.0",
|
|
69
|
+
"@elliemae/ds-utilities": "3.17.0-rc.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"lodash": "^4.17.21",
|