@elliemae/ds-header 2.3.0-alpha.8 → 2.3.0-alpha.9

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.
@@ -0,0 +1,156 @@
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;
@@ -0,0 +1 @@
1
+ export * from './Header';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-header",
3
- "version": "2.3.0-alpha.8",
3
+ "version": "2.3.0-alpha.9",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Header",
6
6
  "files": [