@elliemae/ds-header 2.3.0-alpha.4 → 2.3.0-alpha.6
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/{cjs → dist/cjs}/Header.js +0 -0
- package/{cjs → dist/cjs}/Header.js.map +0 -0
- package/{cjs → dist/cjs}/index.js +0 -0
- package/{cjs → dist/cjs}/index.js.map +0 -0
- package/{esm → dist/esm}/Header.js +0 -0
- package/{esm → dist/esm}/Header.js.map +0 -0
- package/{esm → dist/esm}/index.js +0 -0
- package/{esm → dist/esm}/index.js.map +0 -0
- package/package.json +21 -19
- package/types/Header.d.ts +0 -156
- package/types/index.d.ts +0 -1
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-header",
|
|
3
|
-
"version": "2.3.0-alpha.
|
|
3
|
+
"version": "2.3.0-alpha.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Header",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"module": "./dist/esm/index.js",
|
|
10
|
+
"main": "./dist/cjs/index.js",
|
|
11
|
+
"types": "./dist/types/index.d.ts",
|
|
9
12
|
"exports": {
|
|
10
13
|
".": {
|
|
11
|
-
"import": "./esm/index.js",
|
|
12
|
-
"require": "./cjs/index.js"
|
|
14
|
+
"import": "./dist/esm/index.js",
|
|
15
|
+
"require": "./dist/cjs/index.js"
|
|
13
16
|
},
|
|
14
17
|
"./Header": {
|
|
15
|
-
"import": "./esm/Header.js",
|
|
16
|
-
"require": "./cjs/Header.js"
|
|
18
|
+
"import": "./dist/esm/Header.js",
|
|
19
|
+
"require": "./dist/cjs/Header.js"
|
|
17
20
|
}
|
|
18
21
|
},
|
|
19
22
|
"sideEffects": [
|
|
@@ -25,18 +28,12 @@
|
|
|
25
28
|
"url": "https://git.elliemae.io/platform-ui/dimsum.git"
|
|
26
29
|
},
|
|
27
30
|
"engines": {
|
|
28
|
-
"
|
|
29
|
-
"node": ">=
|
|
31
|
+
"pnpm": ">=6",
|
|
32
|
+
"node": ">=16"
|
|
30
33
|
},
|
|
31
34
|
"author": "ICE MT",
|
|
32
|
-
"scripts": {
|
|
33
|
-
"dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
|
|
34
|
-
"prebuild": "exit 0",
|
|
35
|
-
"predev": "exit 0",
|
|
36
|
-
"build": "node ../../scripts/build/build.js"
|
|
37
|
-
},
|
|
38
35
|
"dependencies": {
|
|
39
|
-
"@xstyled/styled-components": "~3.1.
|
|
36
|
+
"@xstyled/styled-components": "~3.1.2",
|
|
40
37
|
"react-desc": "~4.1.3"
|
|
41
38
|
},
|
|
42
39
|
"devDependencies": {
|
|
@@ -51,7 +48,12 @@
|
|
|
51
48
|
},
|
|
52
49
|
"publishConfig": {
|
|
53
50
|
"access": "public",
|
|
54
|
-
"
|
|
55
|
-
|
|
51
|
+
"typeSafety": false
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
|
|
55
|
+
"prebuild": "exit 0",
|
|
56
|
+
"predev": "exit 0",
|
|
57
|
+
"build": "node ../../scripts/build/build.js"
|
|
56
58
|
}
|
|
57
59
|
}
|
package/types/Header.d.ts
DELETED
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
/// <reference path="../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
|
-
declare const DSHeader: {
|
|
4
|
-
({ color, fontFamily, fontSize, fontWeight, height, level, lineHeight, text, width, ...rest }: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
color: any;
|
|
7
|
-
fontFamily: any;
|
|
8
|
-
fontSize: any;
|
|
9
|
-
fontWeight: any;
|
|
10
|
-
height: any;
|
|
11
|
-
level: any;
|
|
12
|
-
lineHeight: any;
|
|
13
|
-
text: any;
|
|
14
|
-
width: any;
|
|
15
|
-
}): JSX.Element;
|
|
16
|
-
defaultProps: {
|
|
17
|
-
level: number;
|
|
18
|
-
lineHeight: number;
|
|
19
|
-
};
|
|
20
|
-
propTypes: {
|
|
21
|
-
color: {
|
|
22
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
23
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
|
-
};
|
|
25
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
26
|
-
};
|
|
27
|
-
fontFamily: {
|
|
28
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
29
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
-
};
|
|
31
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
32
|
-
};
|
|
33
|
-
fontSize: {
|
|
34
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
35
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
|
-
};
|
|
37
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
38
|
-
};
|
|
39
|
-
fontWeight: {
|
|
40
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
41
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
|
-
};
|
|
43
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
44
|
-
};
|
|
45
|
-
height: {
|
|
46
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
47
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
48
|
-
};
|
|
49
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
50
|
-
};
|
|
51
|
-
level: {
|
|
52
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
53
|
-
};
|
|
54
|
-
lineHeight: {
|
|
55
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
-
};
|
|
57
|
-
m: {
|
|
58
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
59
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
60
|
-
};
|
|
61
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
62
|
-
};
|
|
63
|
-
mb: {
|
|
64
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
65
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
66
|
-
};
|
|
67
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
68
|
-
};
|
|
69
|
-
ml: {
|
|
70
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
71
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
72
|
-
};
|
|
73
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
74
|
-
};
|
|
75
|
-
mr: {
|
|
76
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
77
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
78
|
-
};
|
|
79
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
80
|
-
};
|
|
81
|
-
mt: {
|
|
82
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
83
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
84
|
-
};
|
|
85
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
86
|
-
};
|
|
87
|
-
mx: {
|
|
88
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
89
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
90
|
-
};
|
|
91
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
92
|
-
};
|
|
93
|
-
my: {
|
|
94
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
95
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
96
|
-
};
|
|
97
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
98
|
-
};
|
|
99
|
-
p: {
|
|
100
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
101
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
102
|
-
};
|
|
103
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
104
|
-
};
|
|
105
|
-
pb: {
|
|
106
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
107
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
108
|
-
};
|
|
109
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
110
|
-
};
|
|
111
|
-
pl: {
|
|
112
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
113
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
114
|
-
};
|
|
115
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
116
|
-
};
|
|
117
|
-
pr: {
|
|
118
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
119
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
120
|
-
};
|
|
121
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
122
|
-
};
|
|
123
|
-
pt: {
|
|
124
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
125
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
126
|
-
};
|
|
127
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
128
|
-
};
|
|
129
|
-
px: {
|
|
130
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
131
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
132
|
-
};
|
|
133
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
134
|
-
};
|
|
135
|
-
py: {
|
|
136
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
137
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
138
|
-
};
|
|
139
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
140
|
-
};
|
|
141
|
-
text: import("react-desc").PropTypesDescValue;
|
|
142
|
-
width: {
|
|
143
|
-
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
144
|
-
deprecated: import("react-desc").PropTypesDescValidator;
|
|
145
|
-
};
|
|
146
|
-
isRequired: import("react-desc").PropTypesDescValue;
|
|
147
|
-
};
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
declare const HeaderWithSchema: {
|
|
151
|
-
(props?: unknown): JSX.Element;
|
|
152
|
-
propTypes: unknown;
|
|
153
|
-
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
154
|
-
};
|
|
155
|
-
export { DSHeader, HeaderWithSchema };
|
|
156
|
-
export default DSHeader;
|
package/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './Header';
|