@manamerge/mana-atomic-ui 1.0.159 → 1.0.160
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/index.d.ts +2 -2
- package/dist/index.js +40 -18
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/ManamergeTheme.ts +5 -0
- package/dist/themes/themes/manamerge/atoms/heading.ts +54 -91
- package/dist/themes/themes/manamerge/atoms/text.ts +14 -14
- package/dist/themes/themes/manamerge/fonts/Gilmer-Bold.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Heavy.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Light.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Medium.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Regular.woff2 +0 -0
- package/dist/themes/themes/manamerge/molecules/breakerTape.ts +7 -11
- package/dist/themes/themes/manamerge/molecules/header.ts +11 -5
- package/dist/types/components/Atoms/Heading/Heading.d.ts +0 -1
- package/dist/types/components/Atoms/Text/Text.d.ts +2 -1
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +11 -0
- package/dist/types/components/Molecules/Header/Header.css.d.ts +3 -0
- package/dist/types/themes/ManamergeTheme.d.ts +50 -89
- package/dist/types/themes/manamerge/atoms/heading.d.ts +0 -36
- package/dist/types/themes/manamerge/atoms/text.d.ts +14 -14
- package/dist/types/themes/manamerge/molecules/breakerTape.d.ts +1 -2
- package/dist/types/themes/manamerge/molecules/header.d.ts +5 -1
- package/package.json +1 -1
|
@@ -27,6 +27,9 @@ import pint3 from "./manamerge/layouts/pint3";
|
|
|
27
27
|
// vSizes
|
|
28
28
|
import fontsizes from "./manamerge/miscellaneous/fontsizes";
|
|
29
29
|
|
|
30
|
+
// colorPalette
|
|
31
|
+
import colors from "./manamerge/miscellaneous/colorpalette";
|
|
32
|
+
|
|
30
33
|
// Styling
|
|
31
34
|
// import filterListTheme from "./manamerge/styling/filter-list-theme.css.js";
|
|
32
35
|
// import chatTheme from "./manamerge/styling/chat-theme.css.js";
|
|
@@ -144,6 +147,8 @@ export const ManamergeTheme = {
|
|
|
144
147
|
breakpoints,
|
|
145
148
|
// vSizes
|
|
146
149
|
fontsizes,
|
|
150
|
+
// colorPalette
|
|
151
|
+
colors,
|
|
147
152
|
|
|
148
153
|
pages: {
|
|
149
154
|
vod: {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import colors from "../miscellaneous/colorpalette";
|
|
2
|
-
import fontsizes from "../miscellaneous/fontsizes";
|
|
3
2
|
|
|
4
3
|
const heading = {
|
|
5
4
|
"Heading-primary-h1": {
|
|
@@ -8,24 +7,21 @@ const heading = {
|
|
|
8
7
|
lineHeight: "34px",
|
|
9
8
|
fontWeight: 700,
|
|
10
9
|
color: colors.one.b,
|
|
11
|
-
margin: "0px"
|
|
12
|
-
fontFamily: "ManamergeGilmer"
|
|
10
|
+
margin: "0px"
|
|
13
11
|
},
|
|
14
12
|
tablet: {
|
|
15
13
|
fontSize: "34px",
|
|
16
14
|
lineHeight: "40px",
|
|
17
15
|
fontWeight: 700,
|
|
18
16
|
color: colors.one.b,
|
|
19
|
-
margin: "0px"
|
|
20
|
-
fontFamily: "ManamergeGilmer"
|
|
17
|
+
margin: "0px"
|
|
21
18
|
},
|
|
22
19
|
desktop: {
|
|
23
20
|
fontSize: "36px",
|
|
24
21
|
lineHeight: "40px",
|
|
25
22
|
fontWeight: 700,
|
|
26
23
|
color: colors.one.b,
|
|
27
|
-
margin: "0px"
|
|
28
|
-
fontFamily: "ManamergeGilmer"
|
|
24
|
+
margin: "0px"
|
|
29
25
|
}
|
|
30
26
|
},
|
|
31
27
|
"Heading-primary-h2": {
|
|
@@ -34,24 +30,21 @@ const heading = {
|
|
|
34
30
|
lineHeight: "30px",
|
|
35
31
|
fontWeight: 700,
|
|
36
32
|
color: colors.one.b,
|
|
37
|
-
margin: "0px"
|
|
38
|
-
fontFamily: "ManamergeGilmer"
|
|
33
|
+
margin: "0px"
|
|
39
34
|
},
|
|
40
35
|
tablet: {
|
|
41
36
|
fontSize: "28px",
|
|
42
37
|
lineHeight: "34px",
|
|
43
38
|
fontWeight: 700,
|
|
44
39
|
color: colors.one.b,
|
|
45
|
-
margin: "0px"
|
|
46
|
-
fontFamily: "ManamergeGilmer"
|
|
40
|
+
margin: "0px"
|
|
47
41
|
},
|
|
48
42
|
desktop: {
|
|
49
43
|
fontSize: "30px",
|
|
50
44
|
lineHeight: "34px",
|
|
51
45
|
fontWeight: 700,
|
|
52
46
|
color: colors.one.b,
|
|
53
|
-
margin: "0px"
|
|
54
|
-
fontFamily: "ManamergeGilmer"
|
|
47
|
+
margin: "0px"
|
|
55
48
|
}
|
|
56
49
|
},
|
|
57
50
|
"Heading-primary-h3": {
|
|
@@ -60,24 +53,21 @@ const heading = {
|
|
|
60
53
|
lineHeight: "25px",
|
|
61
54
|
fontWeight: 700,
|
|
62
55
|
color: colors.one.b,
|
|
63
|
-
margin: "0px"
|
|
64
|
-
fontFamily: "ManamergeGilmer"
|
|
56
|
+
margin: "0px"
|
|
65
57
|
},
|
|
66
58
|
tablet: {
|
|
67
59
|
fontSize: "20px",
|
|
68
60
|
lineHeight: "25px",
|
|
69
61
|
fontWeight: 700,
|
|
70
62
|
color: colors.one.b,
|
|
71
|
-
margin: "0px"
|
|
72
|
-
fontFamily: "ManamergeGilmer"
|
|
63
|
+
margin: "0px"
|
|
73
64
|
},
|
|
74
65
|
desktop: {
|
|
75
66
|
fontSize: "24px",
|
|
76
67
|
lineHeight: "30px",
|
|
77
68
|
fontWeight: 700,
|
|
78
69
|
color: colors.one.b,
|
|
79
|
-
margin: "0px"
|
|
80
|
-
fontFamily: "ManamergeGilmer"
|
|
70
|
+
margin: "0px"
|
|
81
71
|
}
|
|
82
72
|
},
|
|
83
73
|
"Heading-primary-h4": {
|
|
@@ -86,24 +76,21 @@ const heading = {
|
|
|
86
76
|
lineHeight: "23px",
|
|
87
77
|
fontWeight: 700,
|
|
88
78
|
color: colors.one.b,
|
|
89
|
-
margin: "0px"
|
|
90
|
-
fontFamily: "ManamergeGilmer"
|
|
79
|
+
margin: "0px"
|
|
91
80
|
},
|
|
92
81
|
tablet: {
|
|
93
82
|
fontSize: "18px",
|
|
94
83
|
lineHeight: "24px",
|
|
95
84
|
fontWeight: 700,
|
|
96
85
|
color: colors.one.b,
|
|
97
|
-
margin: "0px"
|
|
98
|
-
fontFamily: "ManamergeGilmer"
|
|
86
|
+
margin: "0px"
|
|
99
87
|
},
|
|
100
88
|
desktop: {
|
|
101
89
|
fontSize: "20px",
|
|
102
90
|
lineHeight: "25px",
|
|
103
91
|
fontWeight: 700,
|
|
104
92
|
color: colors.one.b,
|
|
105
|
-
margin: "0px"
|
|
106
|
-
fontFamily: "ManamergeGilmer"
|
|
93
|
+
margin: "0px"
|
|
107
94
|
}
|
|
108
95
|
},
|
|
109
96
|
"Heading-primary-h5": {
|
|
@@ -112,24 +99,21 @@ const heading = {
|
|
|
112
99
|
lineHeight: "20px",
|
|
113
100
|
fontWeight: 700,
|
|
114
101
|
color: colors.one.b,
|
|
115
|
-
margin: "0px"
|
|
116
|
-
fontFamily: "ManamergeGilmer"
|
|
102
|
+
margin: "0px"
|
|
117
103
|
},
|
|
118
104
|
tablet: {
|
|
119
105
|
fontSize: "16px",
|
|
120
106
|
lineHeight: "20px",
|
|
121
107
|
fontWeight: 700,
|
|
122
108
|
color: colors.one.b,
|
|
123
|
-
margin: "0px"
|
|
124
|
-
fontFamily: "ManamergeGilmer"
|
|
109
|
+
margin: "0px"
|
|
125
110
|
},
|
|
126
111
|
desktop: {
|
|
127
112
|
fontSize: "16px",
|
|
128
113
|
lineHeight: "20px",
|
|
129
114
|
fontWeight: 700,
|
|
130
115
|
color: colors.one.b,
|
|
131
|
-
margin: "0px"
|
|
132
|
-
fontFamily: "ManamergeGilmer"
|
|
116
|
+
margin: "0px"
|
|
133
117
|
}
|
|
134
118
|
},
|
|
135
119
|
"Heading-primary-h6": {
|
|
@@ -138,24 +122,21 @@ const heading = {
|
|
|
138
122
|
lineHeight: "20px",
|
|
139
123
|
fontWeight: 700,
|
|
140
124
|
color: colors.one.b,
|
|
141
|
-
margin: "0px"
|
|
142
|
-
fontFamily: "ManamergeGilmer"
|
|
125
|
+
margin: "0px"
|
|
143
126
|
},
|
|
144
127
|
tablet: {
|
|
145
128
|
fontSize: "14px",
|
|
146
129
|
lineHeight: "20px",
|
|
147
130
|
fontWeight: 700,
|
|
148
131
|
color: colors.one.b,
|
|
149
|
-
margin: "0px"
|
|
150
|
-
fontFamily: "ManamergeGilmer"
|
|
132
|
+
margin: "0px"
|
|
151
133
|
},
|
|
152
134
|
desktop: {
|
|
153
135
|
fontSize: "14px",
|
|
154
136
|
lineHeight: "20px",
|
|
155
137
|
fontWeight: 700,
|
|
156
138
|
color: colors.one.b,
|
|
157
|
-
margin: "0px"
|
|
158
|
-
fontFamily: "ManamergeGilmer"
|
|
139
|
+
margin: "0px"
|
|
159
140
|
}
|
|
160
141
|
},
|
|
161
142
|
"Heading-secondary-h1": {
|
|
@@ -163,25 +144,22 @@ const heading = {
|
|
|
163
144
|
fontSize: "30px",
|
|
164
145
|
lineHeight: "34px",
|
|
165
146
|
fontWeight: 700,
|
|
166
|
-
color: colors.
|
|
167
|
-
margin: "0px"
|
|
168
|
-
fontFamily: "Springwood"
|
|
147
|
+
color: colors.four.a,
|
|
148
|
+
margin: "0px"
|
|
169
149
|
},
|
|
170
150
|
tablet: {
|
|
171
151
|
fontSize: "34px",
|
|
172
152
|
lineHeight: "40px",
|
|
173
153
|
fontWeight: 700,
|
|
174
|
-
color: colors.
|
|
175
|
-
margin: "0px"
|
|
176
|
-
fontFamily: "Springwood"
|
|
154
|
+
color: colors.four.a,
|
|
155
|
+
margin: "0px"
|
|
177
156
|
},
|
|
178
157
|
desktop: {
|
|
179
158
|
fontSize: "36px",
|
|
180
159
|
lineHeight: "40px",
|
|
181
160
|
fontWeight: 700,
|
|
182
|
-
color: colors.
|
|
183
|
-
margin: "0px"
|
|
184
|
-
fontFamily: "Springwood"
|
|
161
|
+
color: colors.four.a,
|
|
162
|
+
margin: "0px"
|
|
185
163
|
}
|
|
186
164
|
},
|
|
187
165
|
"Heading-secondary-h2": {
|
|
@@ -189,25 +167,22 @@ const heading = {
|
|
|
189
167
|
fontSize: "24px",
|
|
190
168
|
lineHeight: "30px",
|
|
191
169
|
fontWeight: 700,
|
|
192
|
-
color: colors.
|
|
193
|
-
margin: "0px"
|
|
194
|
-
fontFamily: "Springwood"
|
|
170
|
+
color: colors.four.a,
|
|
171
|
+
margin: "0px"
|
|
195
172
|
},
|
|
196
173
|
tablet: {
|
|
197
174
|
fontSize: "28px",
|
|
198
175
|
lineHeight: "34px",
|
|
199
176
|
fontWeight: 700,
|
|
200
|
-
color: colors.
|
|
201
|
-
margin: "0px"
|
|
202
|
-
fontFamily: "Springwood"
|
|
177
|
+
color: colors.four.a,
|
|
178
|
+
margin: "0px"
|
|
203
179
|
},
|
|
204
180
|
desktop: {
|
|
205
181
|
fontSize: "30px",
|
|
206
182
|
lineHeight: "34px",
|
|
207
183
|
fontWeight: 700,
|
|
208
|
-
color: colors.
|
|
209
|
-
margin: "0px"
|
|
210
|
-
fontFamily: "Springwood"
|
|
184
|
+
color: colors.four.a,
|
|
185
|
+
margin: "0px"
|
|
211
186
|
}
|
|
212
187
|
},
|
|
213
188
|
"Heading-secondary-h3": {
|
|
@@ -215,25 +190,22 @@ const heading = {
|
|
|
215
190
|
fontSize: "20px",
|
|
216
191
|
lineHeight: "25px",
|
|
217
192
|
fontWeight: 700,
|
|
218
|
-
color: colors.
|
|
219
|
-
margin: "0px"
|
|
220
|
-
fontFamily: "Springwood"
|
|
193
|
+
color: colors.four.a,
|
|
194
|
+
margin: "0px"
|
|
221
195
|
},
|
|
222
196
|
tablet: {
|
|
223
197
|
fontSize: "20px",
|
|
224
198
|
lineHeight: "25px",
|
|
225
199
|
fontWeight: 700,
|
|
226
|
-
color: colors.
|
|
227
|
-
margin: "0px"
|
|
228
|
-
fontFamily: "Springwood"
|
|
200
|
+
color: colors.four.a,
|
|
201
|
+
margin: "0px"
|
|
229
202
|
},
|
|
230
203
|
desktop: {
|
|
231
204
|
fontSize: "24px",
|
|
232
205
|
lineHeight: "30px",
|
|
233
206
|
fontWeight: 700,
|
|
234
|
-
color: colors.
|
|
235
|
-
margin: "0px"
|
|
236
|
-
fontFamily: "Springwood"
|
|
207
|
+
color: colors.four.a,
|
|
208
|
+
margin: "0px"
|
|
237
209
|
}
|
|
238
210
|
},
|
|
239
211
|
"Heading-secondary-h4": {
|
|
@@ -241,25 +213,22 @@ const heading = {
|
|
|
241
213
|
fontSize: "18px",
|
|
242
214
|
lineHeight: "23px",
|
|
243
215
|
fontWeight: 700,
|
|
244
|
-
color: colors.
|
|
245
|
-
margin: "0px"
|
|
246
|
-
fontFamily: "Springwood"
|
|
216
|
+
color: colors.four.a,
|
|
217
|
+
margin: "0px"
|
|
247
218
|
},
|
|
248
219
|
tablet: {
|
|
249
220
|
fontSize: "18px",
|
|
250
221
|
lineHeight: "24px",
|
|
251
222
|
fontWeight: 700,
|
|
252
|
-
color: colors.
|
|
253
|
-
margin: "0px"
|
|
254
|
-
fontFamily: "Springwood"
|
|
223
|
+
color: colors.four.a,
|
|
224
|
+
margin: "0px"
|
|
255
225
|
},
|
|
256
226
|
desktop: {
|
|
257
227
|
fontSize: "20px",
|
|
258
228
|
lineHeight: "25px",
|
|
259
229
|
fontWeight: 700,
|
|
260
|
-
color: colors.
|
|
261
|
-
margin: "0px"
|
|
262
|
-
fontFamily: "Springwood"
|
|
230
|
+
color: colors.four.a,
|
|
231
|
+
margin: "0px"
|
|
263
232
|
}
|
|
264
233
|
},
|
|
265
234
|
"Heading-secondary-h5": {
|
|
@@ -267,25 +236,22 @@ const heading = {
|
|
|
267
236
|
fontSize: "16px",
|
|
268
237
|
lineHeight: "20px",
|
|
269
238
|
fontWeight: 700,
|
|
270
|
-
color: colors.
|
|
271
|
-
margin: "0px"
|
|
272
|
-
fontFamily: "Springwood"
|
|
239
|
+
color: colors.four.a,
|
|
240
|
+
margin: "0px"
|
|
273
241
|
},
|
|
274
242
|
tablet: {
|
|
275
243
|
fontSize: "16px",
|
|
276
244
|
lineHeight: "20px",
|
|
277
245
|
fontWeight: 700,
|
|
278
|
-
color: colors.
|
|
279
|
-
margin: "0px"
|
|
280
|
-
fontFamily: "Springwood"
|
|
246
|
+
color: colors.four.a,
|
|
247
|
+
margin: "0px"
|
|
281
248
|
},
|
|
282
249
|
desktop: {
|
|
283
250
|
fontSize: "16px",
|
|
284
251
|
lineHeight: "20px",
|
|
285
252
|
fontWeight: 700,
|
|
286
|
-
color: colors.
|
|
287
|
-
margin: "0px"
|
|
288
|
-
fontFamily: "Springwood"
|
|
253
|
+
color: colors.four.a,
|
|
254
|
+
margin: "0px"
|
|
289
255
|
}
|
|
290
256
|
},
|
|
291
257
|
"Heading-secondary-h6": {
|
|
@@ -293,25 +259,22 @@ const heading = {
|
|
|
293
259
|
fontSize: "14px",
|
|
294
260
|
lineHeight: "20px",
|
|
295
261
|
fontWeight: 700,
|
|
296
|
-
color: colors.
|
|
297
|
-
margin: "0px"
|
|
298
|
-
fontFamily: "Springwood"
|
|
262
|
+
color: colors.four.a,
|
|
263
|
+
margin: "0px"
|
|
299
264
|
},
|
|
300
265
|
tablet: {
|
|
301
266
|
fontSize: "14px",
|
|
302
267
|
lineHeight: "20px",
|
|
303
268
|
fontWeight: 700,
|
|
304
|
-
color: colors.
|
|
305
|
-
margin: "0px"
|
|
306
|
-
fontFamily: "Springwood"
|
|
269
|
+
color: colors.four.a,
|
|
270
|
+
margin: "0px"
|
|
307
271
|
},
|
|
308
272
|
desktop: {
|
|
309
273
|
fontSize: "14px",
|
|
310
274
|
lineHeight: "20px",
|
|
311
275
|
fontWeight: 700,
|
|
312
|
-
color: colors.
|
|
313
|
-
margin: "0px"
|
|
314
|
-
fontFamily: "Springwood"
|
|
276
|
+
color: colors.four.a,
|
|
277
|
+
margin: "0px"
|
|
315
278
|
}
|
|
316
279
|
}
|
|
317
280
|
};
|
|
@@ -3,60 +3,60 @@ import fontsizes from "../miscellaneous/fontsizes";
|
|
|
3
3
|
|
|
4
4
|
const text = {
|
|
5
5
|
"Text-primary-light": {
|
|
6
|
-
|
|
6
|
+
vFontSize: fontsizes.xs,
|
|
7
7
|
lineHeight: "18px",
|
|
8
8
|
fontWeight: 300,
|
|
9
|
-
|
|
9
|
+
vColor: colors.one.b,
|
|
10
10
|
margin: "0px",
|
|
11
11
|
fontFamily: "ManamergeGilmer"
|
|
12
12
|
},
|
|
13
13
|
"Text-primary-regular": {
|
|
14
|
-
|
|
14
|
+
vFontSize: fontsizes.sm,
|
|
15
15
|
lineHeight: "25px",
|
|
16
16
|
fontWeight: 400,
|
|
17
|
-
|
|
17
|
+
vColor: colors.one.b,
|
|
18
18
|
margin: "0px",
|
|
19
19
|
fontFamily: "ManamergeGilmer"
|
|
20
20
|
},
|
|
21
21
|
"Text-primary-medium": {
|
|
22
|
-
|
|
22
|
+
vFontSize: fontsizes.md,
|
|
23
23
|
lineHeight: "28px",
|
|
24
24
|
fontWeight: 500,
|
|
25
|
-
|
|
25
|
+
vColor: colors.one.b,
|
|
26
26
|
margin: "0px",
|
|
27
27
|
fontFamily: "ManamergeGilmer"
|
|
28
28
|
},
|
|
29
29
|
"Text-primary-bold": {
|
|
30
|
-
|
|
30
|
+
vFontSize: fontsizes.lg,
|
|
31
31
|
lineHeight: "28px",
|
|
32
32
|
fontWeight: 700,
|
|
33
|
-
|
|
33
|
+
vColor: colors.one.b,
|
|
34
34
|
margin: "0px",
|
|
35
35
|
fontFamily: "ManamergeGilmer"
|
|
36
36
|
},
|
|
37
37
|
"Text-primary-heavy": {
|
|
38
|
-
|
|
38
|
+
vFontSize: fontsizes.xl,
|
|
39
39
|
lineHeight: "28px",
|
|
40
40
|
fontWeight: 900,
|
|
41
|
-
|
|
41
|
+
vColor: colors.one.b,
|
|
42
42
|
margin: "0px",
|
|
43
43
|
fontFamily: "ManamergeGilmer"
|
|
44
44
|
},
|
|
45
45
|
|
|
46
46
|
"Text-secondary-regular": {
|
|
47
|
-
|
|
47
|
+
vFontSize: fontsizes.sm,
|
|
48
48
|
lineHeight: "25px",
|
|
49
49
|
fontWeight: 400,
|
|
50
|
-
|
|
50
|
+
vColor: colors.one.h,
|
|
51
51
|
margin: "0px",
|
|
52
52
|
fontFamily: "Springwood"
|
|
53
53
|
},
|
|
54
54
|
"Text-secondary-italic": {
|
|
55
|
-
|
|
55
|
+
vFontSize: fontsizes.lg,
|
|
56
56
|
lineHeight: "25px",
|
|
57
57
|
fontWeight: 400,
|
|
58
58
|
fontStyle: "italic",
|
|
59
|
-
|
|
59
|
+
vColor: colors.one.h,
|
|
60
60
|
margin: "0px",
|
|
61
61
|
fontFamily: "Springwood"
|
|
62
62
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
import colors from "../miscellaneous/colorpalette";
|
|
2
|
-
import vFontSizes from "../miscellaneous/fontsizes";
|
|
3
|
-
|
|
4
1
|
const breakerTape = {
|
|
5
2
|
"BreakerTape-primary": {
|
|
6
3
|
icon: {
|
|
7
4
|
variant: "medium",
|
|
8
|
-
fill:
|
|
9
|
-
stroke:
|
|
5
|
+
fill: "gold",
|
|
6
|
+
stroke: "gold",
|
|
10
7
|
hover: {
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
stroke: "gold",
|
|
9
|
+
fill: "gold"
|
|
13
10
|
}
|
|
14
11
|
},
|
|
15
12
|
text: {
|
|
16
|
-
variant: "
|
|
17
|
-
color:
|
|
18
|
-
fontSize: vFontSizes.sm
|
|
13
|
+
variant: "secondary-bold",
|
|
14
|
+
color: "#111"
|
|
19
15
|
},
|
|
20
16
|
tapeContent: {
|
|
21
17
|
alignItems: "center",
|
|
@@ -25,7 +21,7 @@ const breakerTape = {
|
|
|
25
21
|
tapeContainer: {
|
|
26
22
|
width: "100%",
|
|
27
23
|
transform: "rotate(-3deg)",
|
|
28
|
-
background: `linear-gradient(to right
|
|
24
|
+
background: `linear-gradient(to right,rgb(255, 120, 120),rgb(255, 101, 247))`,
|
|
29
25
|
padding: "10px 0",
|
|
30
26
|
margin: "45px 0 0 0"
|
|
31
27
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import colors from "../miscellaneous/colorpalette";
|
|
2
|
+
|
|
1
3
|
const header = {
|
|
2
4
|
"Header-primary": {
|
|
3
|
-
height: "
|
|
4
|
-
backgroundColor: "rgba(250, 97, 97, 0.71)",
|
|
5
|
+
height: "550px",
|
|
5
6
|
justifyContent: "center",
|
|
6
7
|
bannerColor: "lightgray",
|
|
7
8
|
wrapperHeader: {
|
|
@@ -25,11 +26,16 @@ const header = {
|
|
|
25
26
|
stroke: "none"
|
|
26
27
|
}
|
|
27
28
|
},
|
|
29
|
+
atomTextBanner: {
|
|
30
|
+
variant: "primary-medium",
|
|
31
|
+
color: colors.one.h
|
|
32
|
+
},
|
|
28
33
|
atomHeading: {
|
|
29
|
-
variant: "secondary
|
|
34
|
+
variant: "secondary",
|
|
35
|
+
as: "h1"
|
|
30
36
|
},
|
|
31
37
|
atomTextTitle: {
|
|
32
|
-
variant: "
|
|
38
|
+
variant: "primary-medium"
|
|
33
39
|
},
|
|
34
40
|
atomButtonLeft: {
|
|
35
41
|
variant: "primary",
|
|
@@ -37,7 +43,7 @@ const header = {
|
|
|
37
43
|
},
|
|
38
44
|
atomButtonRight: {
|
|
39
45
|
variant: "secondary",
|
|
40
|
-
flexDirection: "row
|
|
46
|
+
flexDirection: "row"
|
|
41
47
|
},
|
|
42
48
|
atomIconLeft: {
|
|
43
49
|
variant: "small"
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export interface TextTypes {
|
|
3
|
-
variant?:
|
|
3
|
+
variant?: string;
|
|
4
4
|
children?: string;
|
|
5
5
|
htmlFor?: string;
|
|
6
6
|
margin?: string;
|
|
7
|
+
color?: string;
|
|
7
8
|
lineHeight?: string;
|
|
8
9
|
fontWeight?: string | number;
|
|
9
10
|
tag?: keyof JSX.IntrinsicElements;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Meta, StoryObj } from "@storybook/react";
|
|
2
|
+
import { CardSimpleRenderTypes } from "./CardSimpleRender";
|
|
3
|
+
declare const meta: Meta<CardSimpleRenderTypes>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<CardSimpleRenderTypes>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Hover: Story;
|
|
8
|
+
export declare const Flex: Story;
|
|
9
|
+
export declare const FlexExtra: Story;
|
|
10
|
+
export declare const Flex2: Story;
|
|
11
|
+
export declare const Isolado: Story;
|
|
@@ -16,6 +16,9 @@ export declare const AtomIconTop: import("styled-components/dist/types").IStyled
|
|
|
16
16
|
export declare const AtomIconDot: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, import("../../Atoms/Icon/Icon").IconTypes>, {
|
|
17
17
|
moleculeVariant: string;
|
|
18
18
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
|
|
19
|
+
export declare const AtomTextBanner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Text/Text").TextTypes, import("../../Atoms/Text/Text").TextTypes>, {
|
|
20
|
+
moleculeVariant: string;
|
|
21
|
+
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Text/Text").TextTypes>, keyof import("react").Component<any, {}, any>>;
|
|
19
22
|
export declare const AtomHeading: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Heading/Heading").HeadingTypes, import("../../Atoms/Heading/Heading").HeadingTypes>, {
|
|
20
23
|
moleculeVariant: string;
|
|
21
24
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Heading/Heading").HeadingTypes>, keyof import("react").Component<any, {}, any>>;
|