@manamerge/mana-atomic-ui 1.0.152 → 1.0.153

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,139 +1,279 @@
1
+ import colors from "../miscellaneous/colorpalette";
2
+
1
3
  const heading = {
2
- "Heading-h1": {
4
+ "Heading-primary-h1": {
5
+ mobile: {
6
+ fontSize: "30px",
7
+ lineHeight: "34px",
8
+ fontWeight: 700,
9
+ color: colors.one.b,
10
+ margin: "0px"
11
+ },
12
+ tablet: {
13
+ fontSize: "34px",
14
+ lineHeight: "40px",
15
+ fontWeight: 700,
16
+ color: colors.one.b,
17
+ margin: "0px"
18
+ },
19
+ desktop: {
20
+ fontSize: "36px",
21
+ lineHeight: "40px",
22
+ fontWeight: 700,
23
+ color: colors.one.b,
24
+ margin: "0px"
25
+ }
26
+ },
27
+ "Heading-primary-h2": {
28
+ mobile: {
29
+ fontSize: "24px",
30
+ lineHeight: "30px",
31
+ fontWeight: 700,
32
+ color: colors.one.b,
33
+ margin: "0px"
34
+ },
35
+ tablet: {
36
+ fontSize: "28px",
37
+ lineHeight: "34px",
38
+ fontWeight: 700,
39
+ color: colors.one.b,
40
+ margin: "0px"
41
+ },
42
+ desktop: {
43
+ fontSize: "30px",
44
+ lineHeight: "34px",
45
+ fontWeight: 700,
46
+ color: colors.one.b,
47
+ margin: "0px"
48
+ }
49
+ },
50
+ "Heading-primary-h3": {
51
+ mobile: {
52
+ fontSize: "20px",
53
+ lineHeight: "25px",
54
+ fontWeight: 700,
55
+ color: colors.one.b,
56
+ margin: "0px"
57
+ },
58
+ tablet: {
59
+ fontSize: "20px",
60
+ lineHeight: "25px",
61
+ fontWeight: 700,
62
+ color: colors.one.b,
63
+ margin: "0px"
64
+ },
65
+ desktop: {
66
+ fontSize: "24px",
67
+ lineHeight: "30px",
68
+ fontWeight: 700,
69
+ color: colors.one.b,
70
+ margin: "0px"
71
+ }
72
+ },
73
+ "Heading-primary-h4": {
74
+ mobile: {
75
+ fontSize: "18px",
76
+ lineHeight: "23px",
77
+ fontWeight: 700,
78
+ color: colors.one.b,
79
+ margin: "0px"
80
+ },
81
+ tablet: {
82
+ fontSize: "18px",
83
+ lineHeight: "24px",
84
+ fontWeight: 700,
85
+ color: colors.one.b,
86
+ margin: "0px"
87
+ },
88
+ desktop: {
89
+ fontSize: "20px",
90
+ lineHeight: "25px",
91
+ fontWeight: 700,
92
+ color: colors.one.b,
93
+ margin: "0px"
94
+ }
95
+ },
96
+ "Heading-primary-h5": {
97
+ mobile: {
98
+ fontSize: "16px",
99
+ lineHeight: "20px",
100
+ fontWeight: 700,
101
+ color: colors.one.b,
102
+ margin: "0px"
103
+ },
104
+ tablet: {
105
+ fontSize: "16px",
106
+ lineHeight: "20px",
107
+ fontWeight: 700,
108
+ color: colors.one.b,
109
+ margin: "0px"
110
+ },
111
+ desktop: {
112
+ fontSize: "16px",
113
+ lineHeight: "20px",
114
+ fontWeight: 700,
115
+ color: colors.one.b,
116
+ margin: "0px"
117
+ }
118
+ },
119
+ "Heading-primary-h6": {
120
+ mobile: {
121
+ fontSize: "14px",
122
+ lineHeight: "20px",
123
+ fontWeight: 700,
124
+ color: colors.one.b,
125
+ margin: "0px"
126
+ },
127
+ tablet: {
128
+ fontSize: "14px",
129
+ lineHeight: "20px",
130
+ fontWeight: 700,
131
+ color: colors.one.b,
132
+ margin: "0px"
133
+ },
134
+ desktop: {
135
+ fontSize: "14px",
136
+ lineHeight: "20px",
137
+ fontWeight: 700,
138
+ color: colors.one.b,
139
+ margin: "0px"
140
+ }
141
+ },
142
+ "Heading-secondary-h1": {
3
143
  mobile: {
4
144
  fontSize: "30px",
5
145
  lineHeight: "34px",
6
146
  fontWeight: 700,
7
- color: "#3838aa",
147
+ color: colors.four.a,
8
148
  margin: "0px"
9
149
  },
10
150
  tablet: {
11
151
  fontSize: "34px",
12
152
  lineHeight: "40px",
13
153
  fontWeight: 700,
14
- color: "#3838aa",
154
+ color: colors.four.a,
15
155
  margin: "0px"
16
156
  },
17
157
  desktop: {
18
158
  fontSize: "36px",
19
159
  lineHeight: "40px",
20
160
  fontWeight: 700,
21
- color: "#3838aa",
161
+ color: colors.four.a,
22
162
  margin: "0px"
23
163
  }
24
164
  },
25
- "Heading-h2": {
165
+ "Heading-secondary-h2": {
26
166
  mobile: {
27
167
  fontSize: "24px",
28
168
  lineHeight: "30px",
29
169
  fontWeight: 700,
30
- color: "#3838aa",
170
+ color: colors.four.a,
31
171
  margin: "0px"
32
172
  },
33
173
  tablet: {
34
174
  fontSize: "28px",
35
175
  lineHeight: "34px",
36
176
  fontWeight: 700,
37
- color: "#3838aa",
177
+ color: colors.four.a,
38
178
  margin: "0px"
39
179
  },
40
180
  desktop: {
41
181
  fontSize: "30px",
42
182
  lineHeight: "34px",
43
183
  fontWeight: 700,
44
- color: "#3838aa",
184
+ color: colors.four.a,
45
185
  margin: "0px"
46
186
  }
47
187
  },
48
- "Heading-h3": {
188
+ "Heading-secondary-h3": {
49
189
  mobile: {
50
190
  fontSize: "20px",
51
191
  lineHeight: "25px",
52
192
  fontWeight: 700,
53
- color: "#3838aa",
193
+ color: colors.four.a,
54
194
  margin: "0px"
55
195
  },
56
196
  tablet: {
57
197
  fontSize: "20px",
58
198
  lineHeight: "25px",
59
199
  fontWeight: 700,
60
- color: "#3838aa",
200
+ color: colors.four.a,
61
201
  margin: "0px"
62
202
  },
63
203
  desktop: {
64
204
  fontSize: "24px",
65
205
  lineHeight: "30px",
66
206
  fontWeight: 700,
67
- color: "#3838aa",
207
+ color: colors.four.a,
68
208
  margin: "0px"
69
209
  }
70
210
  },
71
- "Heading-h4": {
211
+ "Heading-secondary-h4": {
72
212
  mobile: {
73
213
  fontSize: "18px",
74
214
  lineHeight: "23px",
75
215
  fontWeight: 700,
76
- color: "#3838aa",
216
+ color: colors.four.a,
77
217
  margin: "0px"
78
218
  },
79
219
  tablet: {
80
220
  fontSize: "18px",
81
221
  lineHeight: "24px",
82
222
  fontWeight: 700,
83
- color: "#3838aa",
223
+ color: colors.four.a,
84
224
  margin: "0px"
85
225
  },
86
226
  desktop: {
87
227
  fontSize: "20px",
88
228
  lineHeight: "25px",
89
229
  fontWeight: 700,
90
- color: "#3838aa",
230
+ color: colors.four.a,
91
231
  margin: "0px"
92
232
  }
93
233
  },
94
- "Heading-h5": {
234
+ "Heading-secondary-h5": {
95
235
  mobile: {
96
236
  fontSize: "16px",
97
237
  lineHeight: "20px",
98
238
  fontWeight: 700,
99
- color: "#3838aa",
239
+ color: colors.four.a,
100
240
  margin: "0px"
101
241
  },
102
242
  tablet: {
103
243
  fontSize: "16px",
104
244
  lineHeight: "20px",
105
245
  fontWeight: 700,
106
- color: "#3838aa",
246
+ color: colors.four.a,
107
247
  margin: "0px"
108
248
  },
109
249
  desktop: {
110
250
  fontSize: "16px",
111
251
  lineHeight: "20px",
112
252
  fontWeight: 700,
113
- color: "#3838aa",
253
+ color: colors.four.a,
114
254
  margin: "0px"
115
255
  }
116
256
  },
117
- "Heading-h6": {
257
+ "Heading-secondary-h6": {
118
258
  mobile: {
119
259
  fontSize: "14px",
120
260
  lineHeight: "20px",
121
261
  fontWeight: 700,
122
- color: "#3838aa",
262
+ color: colors.four.a,
123
263
  margin: "0px"
124
264
  },
125
265
  tablet: {
126
266
  fontSize: "14px",
127
267
  lineHeight: "20px",
128
268
  fontWeight: 700,
129
- color: "#3838aa",
269
+ color: colors.four.a,
130
270
  margin: "0px"
131
271
  },
132
272
  desktop: {
133
273
  fontSize: "14px",
134
274
  lineHeight: "20px",
135
275
  fontWeight: 700,
136
- color: "#3838aa",
276
+ color: colors.four.a,
137
277
  margin: "0px"
138
278
  }
139
279
  }
@@ -78,7 +78,7 @@ export declare const DavidWebTheme: {
78
78
  };
79
79
  };
80
80
  heading: {
81
- "Heading-h1": {
81
+ "Heading-primary-h1": {
82
82
  mobile: {
83
83
  fontSize: string;
84
84
  lineHeight: string;
@@ -101,7 +101,7 @@ export declare const DavidWebTheme: {
101
101
  margin: string;
102
102
  };
103
103
  };
104
- "Heading-h2": {
104
+ "Heading-primary-h2": {
105
105
  mobile: {
106
106
  fontSize: string;
107
107
  lineHeight: string;
@@ -124,7 +124,7 @@ export declare const DavidWebTheme: {
124
124
  margin: string;
125
125
  };
126
126
  };
127
- "Heading-h3": {
127
+ "Heading-primary-h3": {
128
128
  mobile: {
129
129
  fontSize: string;
130
130
  lineHeight: string;
@@ -147,7 +147,7 @@ export declare const DavidWebTheme: {
147
147
  margin: string;
148
148
  };
149
149
  };
150
- "Heading-h4": {
150
+ "Heading-primary-h4": {
151
151
  mobile: {
152
152
  fontSize: string;
153
153
  lineHeight: string;
@@ -170,7 +170,7 @@ export declare const DavidWebTheme: {
170
170
  margin: string;
171
171
  };
172
172
  };
173
- "Heading-h5": {
173
+ "Heading-primary-h5": {
174
174
  mobile: {
175
175
  fontSize: string;
176
176
  lineHeight: string;
@@ -193,7 +193,145 @@ export declare const DavidWebTheme: {
193
193
  margin: string;
194
194
  };
195
195
  };
196
- "Heading-h6": {
196
+ "Heading-primary-h6": {
197
+ mobile: {
198
+ fontSize: string;
199
+ lineHeight: string;
200
+ fontWeight: number;
201
+ color: string;
202
+ margin: string;
203
+ };
204
+ tablet: {
205
+ fontSize: string;
206
+ lineHeight: string;
207
+ fontWeight: number;
208
+ color: string;
209
+ margin: string;
210
+ };
211
+ desktop: {
212
+ fontSize: string;
213
+ lineHeight: string;
214
+ fontWeight: number;
215
+ color: string;
216
+ margin: string;
217
+ };
218
+ };
219
+ "Heading-secondary-h1": {
220
+ mobile: {
221
+ fontSize: string;
222
+ lineHeight: string;
223
+ fontWeight: number;
224
+ color: string;
225
+ margin: string;
226
+ };
227
+ tablet: {
228
+ fontSize: string;
229
+ lineHeight: string;
230
+ fontWeight: number;
231
+ color: string;
232
+ margin: string;
233
+ };
234
+ desktop: {
235
+ fontSize: string;
236
+ lineHeight: string;
237
+ fontWeight: number;
238
+ color: string;
239
+ margin: string;
240
+ };
241
+ };
242
+ "Heading-secondary-h2": {
243
+ mobile: {
244
+ fontSize: string;
245
+ lineHeight: string;
246
+ fontWeight: number;
247
+ color: string;
248
+ margin: string;
249
+ };
250
+ tablet: {
251
+ fontSize: string;
252
+ lineHeight: string;
253
+ fontWeight: number;
254
+ color: string;
255
+ margin: string;
256
+ };
257
+ desktop: {
258
+ fontSize: string;
259
+ lineHeight: string;
260
+ fontWeight: number;
261
+ color: string;
262
+ margin: string;
263
+ };
264
+ };
265
+ "Heading-secondary-h3": {
266
+ mobile: {
267
+ fontSize: string;
268
+ lineHeight: string;
269
+ fontWeight: number;
270
+ color: string;
271
+ margin: string;
272
+ };
273
+ tablet: {
274
+ fontSize: string;
275
+ lineHeight: string;
276
+ fontWeight: number;
277
+ color: string;
278
+ margin: string;
279
+ };
280
+ desktop: {
281
+ fontSize: string;
282
+ lineHeight: string;
283
+ fontWeight: number;
284
+ color: string;
285
+ margin: string;
286
+ };
287
+ };
288
+ "Heading-secondary-h4": {
289
+ mobile: {
290
+ fontSize: string;
291
+ lineHeight: string;
292
+ fontWeight: number;
293
+ color: string;
294
+ margin: string;
295
+ };
296
+ tablet: {
297
+ fontSize: string;
298
+ lineHeight: string;
299
+ fontWeight: number;
300
+ color: string;
301
+ margin: string;
302
+ };
303
+ desktop: {
304
+ fontSize: string;
305
+ lineHeight: string;
306
+ fontWeight: number;
307
+ color: string;
308
+ margin: string;
309
+ };
310
+ };
311
+ "Heading-secondary-h5": {
312
+ mobile: {
313
+ fontSize: string;
314
+ lineHeight: string;
315
+ fontWeight: number;
316
+ color: string;
317
+ margin: string;
318
+ };
319
+ tablet: {
320
+ fontSize: string;
321
+ lineHeight: string;
322
+ fontWeight: number;
323
+ color: string;
324
+ margin: string;
325
+ };
326
+ desktop: {
327
+ fontSize: string;
328
+ lineHeight: string;
329
+ fontWeight: number;
330
+ color: string;
331
+ margin: string;
332
+ };
333
+ };
334
+ "Heading-secondary-h6": {
197
335
  mobile: {
198
336
  fontSize: string;
199
337
  lineHeight: string;
@@ -412,7 +550,145 @@ export declare const DavidWebTheme: {
412
550
  };
413
551
  };
414
552
  headingStyles: {
415
- "Heading-h1": {
553
+ "Heading-primary-h1": {
554
+ mobile: {
555
+ fontSize: string;
556
+ lineHeight: string;
557
+ fontWeight: number;
558
+ color: string;
559
+ margin: string;
560
+ };
561
+ tablet: {
562
+ fontSize: string;
563
+ lineHeight: string;
564
+ fontWeight: number;
565
+ color: string;
566
+ margin: string;
567
+ };
568
+ desktop: {
569
+ fontSize: string;
570
+ lineHeight: string;
571
+ fontWeight: number;
572
+ color: string;
573
+ margin: string;
574
+ };
575
+ };
576
+ "Heading-primary-h2": {
577
+ mobile: {
578
+ fontSize: string;
579
+ lineHeight: string;
580
+ fontWeight: number;
581
+ color: string;
582
+ margin: string;
583
+ };
584
+ tablet: {
585
+ fontSize: string;
586
+ lineHeight: string;
587
+ fontWeight: number;
588
+ color: string;
589
+ margin: string;
590
+ };
591
+ desktop: {
592
+ fontSize: string;
593
+ lineHeight: string;
594
+ fontWeight: number;
595
+ color: string;
596
+ margin: string;
597
+ };
598
+ };
599
+ "Heading-primary-h3": {
600
+ mobile: {
601
+ fontSize: string;
602
+ lineHeight: string;
603
+ fontWeight: number;
604
+ color: string;
605
+ margin: string;
606
+ };
607
+ tablet: {
608
+ fontSize: string;
609
+ lineHeight: string;
610
+ fontWeight: number;
611
+ color: string;
612
+ margin: string;
613
+ };
614
+ desktop: {
615
+ fontSize: string;
616
+ lineHeight: string;
617
+ fontWeight: number;
618
+ color: string;
619
+ margin: string;
620
+ };
621
+ };
622
+ "Heading-primary-h4": {
623
+ mobile: {
624
+ fontSize: string;
625
+ lineHeight: string;
626
+ fontWeight: number;
627
+ color: string;
628
+ margin: string;
629
+ };
630
+ tablet: {
631
+ fontSize: string;
632
+ lineHeight: string;
633
+ fontWeight: number;
634
+ color: string;
635
+ margin: string;
636
+ };
637
+ desktop: {
638
+ fontSize: string;
639
+ lineHeight: string;
640
+ fontWeight: number;
641
+ color: string;
642
+ margin: string;
643
+ };
644
+ };
645
+ "Heading-primary-h5": {
646
+ mobile: {
647
+ fontSize: string;
648
+ lineHeight: string;
649
+ fontWeight: number;
650
+ color: string;
651
+ margin: string;
652
+ };
653
+ tablet: {
654
+ fontSize: string;
655
+ lineHeight: string;
656
+ fontWeight: number;
657
+ color: string;
658
+ margin: string;
659
+ };
660
+ desktop: {
661
+ fontSize: string;
662
+ lineHeight: string;
663
+ fontWeight: number;
664
+ color: string;
665
+ margin: string;
666
+ };
667
+ };
668
+ "Heading-primary-h6": {
669
+ mobile: {
670
+ fontSize: string;
671
+ lineHeight: string;
672
+ fontWeight: number;
673
+ color: string;
674
+ margin: string;
675
+ };
676
+ tablet: {
677
+ fontSize: string;
678
+ lineHeight: string;
679
+ fontWeight: number;
680
+ color: string;
681
+ margin: string;
682
+ };
683
+ desktop: {
684
+ fontSize: string;
685
+ lineHeight: string;
686
+ fontWeight: number;
687
+ color: string;
688
+ margin: string;
689
+ };
690
+ };
691
+ "Heading-secondary-h1": {
416
692
  mobile: {
417
693
  fontSize: string;
418
694
  lineHeight: string;
@@ -435,7 +711,7 @@ export declare const DavidWebTheme: {
435
711
  margin: string;
436
712
  };
437
713
  };
438
- "Heading-h2": {
714
+ "Heading-secondary-h2": {
439
715
  mobile: {
440
716
  fontSize: string;
441
717
  lineHeight: string;
@@ -458,7 +734,7 @@ export declare const DavidWebTheme: {
458
734
  margin: string;
459
735
  };
460
736
  };
461
- "Heading-h3": {
737
+ "Heading-secondary-h3": {
462
738
  mobile: {
463
739
  fontSize: string;
464
740
  lineHeight: string;
@@ -481,7 +757,7 @@ export declare const DavidWebTheme: {
481
757
  margin: string;
482
758
  };
483
759
  };
484
- "Heading-h4": {
760
+ "Heading-secondary-h4": {
485
761
  mobile: {
486
762
  fontSize: string;
487
763
  lineHeight: string;
@@ -504,7 +780,7 @@ export declare const DavidWebTheme: {
504
780
  margin: string;
505
781
  };
506
782
  };
507
- "Heading-h5": {
783
+ "Heading-secondary-h5": {
508
784
  mobile: {
509
785
  fontSize: string;
510
786
  lineHeight: string;
@@ -527,7 +803,7 @@ export declare const DavidWebTheme: {
527
803
  margin: string;
528
804
  };
529
805
  };
530
- "Heading-h6": {
806
+ "Heading-secondary-h6": {
531
807
  mobile: {
532
808
  fontSize: string;
533
809
  lineHeight: string;
@@ -1,5 +1,5 @@
1
1
  declare const heading: {
2
- "Heading-h1": {
2
+ "Heading-primary-h1": {
3
3
  mobile: {
4
4
  fontSize: string;
5
5
  lineHeight: string;
@@ -22,7 +22,7 @@ declare const heading: {
22
22
  margin: string;
23
23
  };
24
24
  };
25
- "Heading-h2": {
25
+ "Heading-primary-h2": {
26
26
  mobile: {
27
27
  fontSize: string;
28
28
  lineHeight: string;
@@ -45,7 +45,7 @@ declare const heading: {
45
45
  margin: string;
46
46
  };
47
47
  };
48
- "Heading-h3": {
48
+ "Heading-primary-h3": {
49
49
  mobile: {
50
50
  fontSize: string;
51
51
  lineHeight: string;
@@ -68,7 +68,7 @@ declare const heading: {
68
68
  margin: string;
69
69
  };
70
70
  };
71
- "Heading-h4": {
71
+ "Heading-primary-h4": {
72
72
  mobile: {
73
73
  fontSize: string;
74
74
  lineHeight: string;
@@ -91,7 +91,7 @@ declare const heading: {
91
91
  margin: string;
92
92
  };
93
93
  };
94
- "Heading-h5": {
94
+ "Heading-primary-h5": {
95
95
  mobile: {
96
96
  fontSize: string;
97
97
  lineHeight: string;
@@ -114,7 +114,145 @@ declare const heading: {
114
114
  margin: string;
115
115
  };
116
116
  };
117
- "Heading-h6": {
117
+ "Heading-primary-h6": {
118
+ mobile: {
119
+ fontSize: string;
120
+ lineHeight: string;
121
+ fontWeight: number;
122
+ color: string;
123
+ margin: string;
124
+ };
125
+ tablet: {
126
+ fontSize: string;
127
+ lineHeight: string;
128
+ fontWeight: number;
129
+ color: string;
130
+ margin: string;
131
+ };
132
+ desktop: {
133
+ fontSize: string;
134
+ lineHeight: string;
135
+ fontWeight: number;
136
+ color: string;
137
+ margin: string;
138
+ };
139
+ };
140
+ "Heading-secondary-h1": {
141
+ mobile: {
142
+ fontSize: string;
143
+ lineHeight: string;
144
+ fontWeight: number;
145
+ color: string;
146
+ margin: string;
147
+ };
148
+ tablet: {
149
+ fontSize: string;
150
+ lineHeight: string;
151
+ fontWeight: number;
152
+ color: string;
153
+ margin: string;
154
+ };
155
+ desktop: {
156
+ fontSize: string;
157
+ lineHeight: string;
158
+ fontWeight: number;
159
+ color: string;
160
+ margin: string;
161
+ };
162
+ };
163
+ "Heading-secondary-h2": {
164
+ mobile: {
165
+ fontSize: string;
166
+ lineHeight: string;
167
+ fontWeight: number;
168
+ color: string;
169
+ margin: string;
170
+ };
171
+ tablet: {
172
+ fontSize: string;
173
+ lineHeight: string;
174
+ fontWeight: number;
175
+ color: string;
176
+ margin: string;
177
+ };
178
+ desktop: {
179
+ fontSize: string;
180
+ lineHeight: string;
181
+ fontWeight: number;
182
+ color: string;
183
+ margin: string;
184
+ };
185
+ };
186
+ "Heading-secondary-h3": {
187
+ mobile: {
188
+ fontSize: string;
189
+ lineHeight: string;
190
+ fontWeight: number;
191
+ color: string;
192
+ margin: string;
193
+ };
194
+ tablet: {
195
+ fontSize: string;
196
+ lineHeight: string;
197
+ fontWeight: number;
198
+ color: string;
199
+ margin: string;
200
+ };
201
+ desktop: {
202
+ fontSize: string;
203
+ lineHeight: string;
204
+ fontWeight: number;
205
+ color: string;
206
+ margin: string;
207
+ };
208
+ };
209
+ "Heading-secondary-h4": {
210
+ mobile: {
211
+ fontSize: string;
212
+ lineHeight: string;
213
+ fontWeight: number;
214
+ color: string;
215
+ margin: string;
216
+ };
217
+ tablet: {
218
+ fontSize: string;
219
+ lineHeight: string;
220
+ fontWeight: number;
221
+ color: string;
222
+ margin: string;
223
+ };
224
+ desktop: {
225
+ fontSize: string;
226
+ lineHeight: string;
227
+ fontWeight: number;
228
+ color: string;
229
+ margin: string;
230
+ };
231
+ };
232
+ "Heading-secondary-h5": {
233
+ mobile: {
234
+ fontSize: string;
235
+ lineHeight: string;
236
+ fontWeight: number;
237
+ color: string;
238
+ margin: string;
239
+ };
240
+ tablet: {
241
+ fontSize: string;
242
+ lineHeight: string;
243
+ fontWeight: number;
244
+ color: string;
245
+ margin: string;
246
+ };
247
+ desktop: {
248
+ fontSize: string;
249
+ lineHeight: string;
250
+ fontWeight: number;
251
+ color: string;
252
+ margin: string;
253
+ };
254
+ };
255
+ "Heading-secondary-h6": {
118
256
  mobile: {
119
257
  fontSize: string;
120
258
  lineHeight: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manamerge/mana-atomic-ui",
3
- "version": "1.0.152",
3
+ "version": "1.0.153",
4
4
  "description": "Mana Merge design system",
5
5
  "license": "ISC",
6
6
  "author": "MM",