@manamerge/mana-atomic-ui 0.0.75 → 0.0.76

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.
Files changed (75) hide show
  1. package/dist/index.d.ts +7 -5
  2. package/dist/index.js +1448 -129
  3. package/dist/index.js.map +1 -1
  4. package/dist/themes/themes/Manamerge.ts +4 -0
  5. package/dist/themes/themes/manamerge/molecules/cardBanner.ts +26 -0
  6. package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +29 -0
  7. package/dist/types/.storybook/preview.d.ts +14 -0
  8. package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.css.d.ts +18 -0
  9. package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.d.ts +8 -0
  10. package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories.d.ts +6 -0
  11. package/dist/types/components/index.d.ts +1 -1
  12. package/dist/types/src/components/Atoms/Button/Button.css.d.ts +37 -0
  13. package/dist/types/src/components/Atoms/Button/Button.d.ts +34 -0
  14. package/dist/types/src/components/Atoms/Button/Button.stories.d.ts +7 -0
  15. package/dist/types/src/components/Atoms/Heading/Heading.css.d.ts +3 -0
  16. package/dist/types/src/components/Atoms/Heading/Heading.d.ts +17 -0
  17. package/dist/types/src/components/Atoms/Heading/Heading.stories.d.ts +12 -0
  18. package/dist/types/src/components/Atoms/Icon/Icon.css.d.ts +9 -0
  19. package/dist/types/src/components/Atoms/Icon/Icon.d.ts +15 -0
  20. package/dist/types/src/components/Atoms/Icon/Icon.stories.d.ts +9 -0
  21. package/dist/types/src/components/Atoms/Link/Link.css.d.ts +3 -0
  22. package/dist/types/src/components/Atoms/Link/Link.d.ts +14 -0
  23. package/dist/types/src/components/Atoms/Link/Link.stories.d.ts +11 -0
  24. package/dist/types/src/components/Atoms/Text/Text.css.d.ts +4 -0
  25. package/dist/types/src/components/Atoms/Text/Text.d.ts +14 -0
  26. package/dist/types/src/components/Atoms/Text/Text.stories.d.ts +11 -0
  27. package/dist/types/src/components/Molecules/CardBanner/CardBanner.css.d.ts +18 -0
  28. package/dist/types/src/components/Molecules/CardBanner/CardBanner.d.ts +9 -0
  29. package/dist/types/src/components/Molecules/CardBanner/CardBanner.stories.d.ts +6 -0
  30. package/dist/types/src/components/Molecules/CardSimpleRender/BlobToReactComponent.d.ts +5 -0
  31. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.css.d.ts +10 -0
  32. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.d.ts +29 -0
  33. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy 2.d.ts +7 -0
  34. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy 3.d.ts +6 -0
  35. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy 4.d.ts +6 -0
  36. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy 5.d.ts +6 -0
  37. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +7 -0
  38. package/dist/types/src/components/Molecules/CardSimpleRender/CardSimpleRender.stories.d.ts +7 -0
  39. package/dist/types/src/components/Molecules/CardTeaser/CardTeaser.css.d.ts +15 -0
  40. package/dist/types/src/components/Molecules/CardTeaser/CardTeaser.d.ts +13 -0
  41. package/dist/types/src/components/Molecules/CardTeaser/CardTeaser.stories.d.ts +6 -0
  42. package/dist/types/src/components/Molecules/Footer/Footer.css.d.ts +6 -0
  43. package/dist/types/src/components/Molecules/Footer/Footer.d.ts +15 -0
  44. package/dist/types/src/components/Molecules/Footer/Footer.stories.d.ts +6 -0
  45. package/dist/types/src/components/Molecules/Header/Header.css.d.ts +15 -0
  46. package/dist/types/src/components/Molecules/Header/Header.d.ts +15 -0
  47. package/dist/types/src/components/Molecules/Header/Header.stories.d.ts +6 -0
  48. package/dist/types/src/components/Molecules/Navigation/Navigation.css.d.ts +10 -0
  49. package/dist/types/src/components/Molecules/Navigation/Navigation.d.ts +10 -0
  50. package/dist/types/src/components/Molecules/Navigation/Navigation.stories.d.ts +6 -0
  51. package/dist/types/src/components/index.d.ts +12 -0
  52. package/dist/types/src/index.d.ts +1 -0
  53. package/dist/types/src/themes/Manamerge.d.ts +1374 -0
  54. package/dist/types/src/themes/manamerge/atoms/button.d.ts +101 -0
  55. package/dist/types/src/themes/manamerge/atoms/checkbox.d.ts +71 -0
  56. package/dist/types/src/themes/manamerge/atoms/heading.d.ts +141 -0
  57. package/dist/types/src/themes/manamerge/atoms/icon.d.ts +30 -0
  58. package/dist/types/src/themes/manamerge/atoms/link.d.ts +78 -0
  59. package/dist/types/src/themes/manamerge/atoms/text.d.ts +38 -0
  60. package/dist/types/src/themes/manamerge/miscellaneous/breakpoints.d.ts +13 -0
  61. package/dist/types/src/themes/manamerge/molecules/cardBanner.d.ts +24 -0
  62. package/dist/types/src/themes/manamerge/molecules/cardSimpleRender.d.ts +27 -0
  63. package/dist/types/src/themes/manamerge/molecules/cardTeaser.d.ts +76 -0
  64. package/dist/types/src/themes/manamerge/molecules/footer.d.ts +19 -0
  65. package/dist/types/src/themes/manamerge/molecules/header.d.ts +48 -0
  66. package/dist/types/src/themes/manamerge/molecules/navigation.d.ts +36 -0
  67. package/dist/types/themes/Manamerge.d.ts +34 -21
  68. package/dist/types/themes/manamerge/molecules/cardSimpleRender.d.ts +41 -0
  69. package/dist/types/themes/manamerge/molecules/cardTeaser.d.ts +1 -1
  70. package/dist/types/vite.config.d.ts +2 -0
  71. package/package.json +10 -3
  72. /package/dist/types/{components → src/components}/Molecules/BreakerTape/BreakerTape.css.d.ts +0 -0
  73. /package/dist/types/{components → src/components}/Molecules/BreakerTape/BreakerTape.d.ts +0 -0
  74. /package/dist/types/{components → src/components}/Molecules/BreakerTape/BreakerTape.stories.d.ts +0 -0
  75. /package/dist/types/{themes → src/themes}/manamerge/molecules/breakerTape.d.ts +0 -0
@@ -0,0 +1,1374 @@
1
+ export declare const manamergeTheme: {
2
+ link: {
3
+ "Link-light": {
4
+ fontSize: string;
5
+ lineHeight: string;
6
+ fontWeight: number;
7
+ color: string;
8
+ hover: {
9
+ color: string;
10
+ };
11
+ focus: {
12
+ outline: string;
13
+ };
14
+ disabled: {
15
+ color: string;
16
+ };
17
+ };
18
+ "Link-regular": {
19
+ fontSize: string;
20
+ lineHeight: string;
21
+ fontWeight: number;
22
+ color: string;
23
+ hover: {
24
+ color: string;
25
+ };
26
+ focus: {
27
+ outline: string;
28
+ };
29
+ disabled: {
30
+ color: string;
31
+ };
32
+ };
33
+ "Link-medium": {
34
+ fontSize: string;
35
+ lineHeight: string;
36
+ fontWeight: number;
37
+ color: string;
38
+ hover: {
39
+ color: string;
40
+ };
41
+ focus: {
42
+ outline: string;
43
+ };
44
+ disabled: {
45
+ color: string;
46
+ };
47
+ };
48
+ "Link-bold": {
49
+ fontSize: string;
50
+ lineHeight: string;
51
+ fontWeight: number;
52
+ color: string;
53
+ hover: {
54
+ color: string;
55
+ };
56
+ focus: {
57
+ outline: string;
58
+ };
59
+ disabled: {
60
+ color: string;
61
+ };
62
+ };
63
+ "Link-heavy": {
64
+ fontSize: string;
65
+ lineHeight: string;
66
+ fontWeight: number;
67
+ color: string;
68
+ hover: {
69
+ color: string;
70
+ };
71
+ focus: {
72
+ outline: string;
73
+ };
74
+ disabled: {
75
+ color: string;
76
+ };
77
+ };
78
+ };
79
+ heading: {
80
+ "Heading-h1": {
81
+ mobile: {
82
+ fontSize: string;
83
+ lineHeight: string;
84
+ fontWeight: number;
85
+ color: string;
86
+ margin: string;
87
+ };
88
+ tablet: {
89
+ fontSize: string;
90
+ lineHeight: string;
91
+ fontWeight: number;
92
+ color: string;
93
+ margin: string;
94
+ };
95
+ desktop: {
96
+ fontSize: string;
97
+ lineHeight: string;
98
+ fontWeight: number;
99
+ color: string;
100
+ margin: string;
101
+ };
102
+ };
103
+ "Heading-h2": {
104
+ mobile: {
105
+ fontSize: string;
106
+ lineHeight: string;
107
+ fontWeight: number;
108
+ color: string;
109
+ margin: string;
110
+ };
111
+ tablet: {
112
+ fontSize: string;
113
+ lineHeight: string;
114
+ fontWeight: number;
115
+ color: string;
116
+ margin: string;
117
+ };
118
+ desktop: {
119
+ fontSize: string;
120
+ lineHeight: string;
121
+ fontWeight: number;
122
+ color: string;
123
+ margin: string;
124
+ };
125
+ };
126
+ "Heading-h3": {
127
+ mobile: {
128
+ fontSize: string;
129
+ lineHeight: string;
130
+ fontWeight: number;
131
+ color: string;
132
+ margin: string;
133
+ };
134
+ tablet: {
135
+ fontSize: string;
136
+ lineHeight: string;
137
+ fontWeight: number;
138
+ color: string;
139
+ margin: string;
140
+ };
141
+ desktop: {
142
+ fontSize: string;
143
+ lineHeight: string;
144
+ fontWeight: number;
145
+ color: string;
146
+ margin: string;
147
+ };
148
+ };
149
+ "Heading-h4": {
150
+ mobile: {
151
+ fontSize: string;
152
+ lineHeight: string;
153
+ fontWeight: number;
154
+ color: string;
155
+ margin: string;
156
+ };
157
+ tablet: {
158
+ fontSize: string;
159
+ lineHeight: string;
160
+ fontWeight: number;
161
+ color: string;
162
+ margin: string;
163
+ };
164
+ desktop: {
165
+ fontSize: string;
166
+ lineHeight: string;
167
+ fontWeight: number;
168
+ color: string;
169
+ margin: string;
170
+ };
171
+ };
172
+ "Heading-h5": {
173
+ mobile: {
174
+ fontSize: string;
175
+ lineHeight: string;
176
+ fontWeight: number;
177
+ color: string;
178
+ margin: string;
179
+ };
180
+ tablet: {
181
+ fontSize: string;
182
+ lineHeight: string;
183
+ fontWeight: number;
184
+ color: string;
185
+ margin: string;
186
+ };
187
+ desktop: {
188
+ fontSize: string;
189
+ lineHeight: string;
190
+ fontWeight: number;
191
+ color: string;
192
+ margin: string;
193
+ };
194
+ };
195
+ "Heading-h6": {
196
+ mobile: {
197
+ fontSize: string;
198
+ lineHeight: string;
199
+ fontWeight: number;
200
+ color: string;
201
+ margin: string;
202
+ };
203
+ tablet: {
204
+ fontSize: string;
205
+ lineHeight: string;
206
+ fontWeight: number;
207
+ color: string;
208
+ margin: string;
209
+ };
210
+ desktop: {
211
+ fontSize: string;
212
+ lineHeight: string;
213
+ fontWeight: number;
214
+ color: string;
215
+ margin: string;
216
+ };
217
+ };
218
+ };
219
+ button: {
220
+ "Button-primary": {
221
+ textTransform: string;
222
+ height: string;
223
+ width: string;
224
+ maxWidth: string;
225
+ maxHeight: string;
226
+ borderRadius: string;
227
+ lineHeight: string;
228
+ fontFamily: string;
229
+ fontWeight: number;
230
+ letterSpacing: string;
231
+ padding: string;
232
+ fontSize: string;
233
+ color: string;
234
+ textAlign: string;
235
+ display: string;
236
+ justifyContent: string;
237
+ alignItems: string;
238
+ cursor: string;
239
+ shadow: string;
240
+ transition: string;
241
+ border: string;
242
+ overflow: string;
243
+ position: string;
244
+ default: {
245
+ text: string;
246
+ border: string;
247
+ background: string;
248
+ opacity: number;
249
+ };
250
+ hover: {
251
+ text: string;
252
+ border: string;
253
+ background: string;
254
+ opacity: number;
255
+ };
256
+ active: {
257
+ text: string;
258
+ border: string;
259
+ background: string;
260
+ opacity: number;
261
+ };
262
+ disabled: {
263
+ text: string;
264
+ border: string;
265
+ background: string;
266
+ opacity: number;
267
+ };
268
+ };
269
+ "Button-secondary": {
270
+ textTransform: string;
271
+ height: string;
272
+ width: string;
273
+ maxWidth: string;
274
+ maxHeight: string;
275
+ borderRadius: string;
276
+ lineHeight: string;
277
+ fontFamily: string;
278
+ fontWeight: number;
279
+ letterSpacing: string;
280
+ padding: string;
281
+ fontSize: string;
282
+ color: string;
283
+ textAlign: string;
284
+ display: string;
285
+ justifyContent: string;
286
+ alignItems: string;
287
+ cursor: string;
288
+ shadow: string;
289
+ transition: string;
290
+ border: string;
291
+ overflow: string;
292
+ position: string;
293
+ default: {
294
+ text: string;
295
+ border: string;
296
+ background: string;
297
+ opacity: number;
298
+ };
299
+ hover: {
300
+ text: string;
301
+ border: string;
302
+ background: string;
303
+ opacity: number;
304
+ };
305
+ active: {
306
+ text: string;
307
+ border: string;
308
+ background: string;
309
+ opacity: number;
310
+ };
311
+ disabled: {
312
+ text: string;
313
+ border: string;
314
+ background: string;
315
+ opacity: number;
316
+ };
317
+ };
318
+ };
319
+ textStyles: {
320
+ "Text-light": {
321
+ fontSize: string;
322
+ lineHeight: string;
323
+ fontWeight: number;
324
+ color: string;
325
+ margin: string;
326
+ };
327
+ "Text-regular": {
328
+ fontSize: string;
329
+ lineHeight: string;
330
+ fontWeight: number;
331
+ color: string;
332
+ margin: string;
333
+ };
334
+ "Text-medium": {
335
+ fontSize: string;
336
+ lineHeight: string;
337
+ fontWeight: number;
338
+ color: string;
339
+ margin: string;
340
+ };
341
+ "Text-bold": {
342
+ fontSize: string;
343
+ lineHeight: string;
344
+ fontWeight: number;
345
+ color: string;
346
+ margin: string;
347
+ };
348
+ "Text-heavy": {
349
+ fontSize: string;
350
+ lineHeight: string;
351
+ fontWeight: number;
352
+ color: string;
353
+ margin: string;
354
+ };
355
+ };
356
+ breakpoints: {
357
+ tinyMobileUp: number;
358
+ smallMobileUp: number;
359
+ mobileUp: number;
360
+ mobileLandscapeUp: number;
361
+ largeMobileUp: number;
362
+ tabletPortraitUp: number;
363
+ tabletLandscapeUp: number;
364
+ desktopUp: number;
365
+ largeDesktopUp: number;
366
+ superLargeDesktopUp: number;
367
+ };
368
+ icon: {
369
+ "Icon-small": {
370
+ size: string;
371
+ color: string;
372
+ stroke: string;
373
+ hover: {
374
+ stroke: string;
375
+ fill: string;
376
+ };
377
+ };
378
+ "Icon-medium": {
379
+ size: string;
380
+ color: string;
381
+ stroke: string;
382
+ hover: {
383
+ stroke: string;
384
+ color: string;
385
+ };
386
+ };
387
+ "Icon-large": {
388
+ size: string;
389
+ color: string;
390
+ stroke: string;
391
+ hover: {
392
+ stroke: string;
393
+ fill: string;
394
+ };
395
+ };
396
+ };
397
+ headingStyles: {
398
+ "Heading-h1": {
399
+ mobile: {
400
+ fontSize: string;
401
+ lineHeight: string;
402
+ fontWeight: number;
403
+ color: string;
404
+ margin: string;
405
+ };
406
+ tablet: {
407
+ fontSize: string;
408
+ lineHeight: string;
409
+ fontWeight: number;
410
+ color: string;
411
+ margin: string;
412
+ };
413
+ desktop: {
414
+ fontSize: string;
415
+ lineHeight: string;
416
+ fontWeight: number;
417
+ color: string;
418
+ margin: string;
419
+ };
420
+ };
421
+ "Heading-h2": {
422
+ mobile: {
423
+ fontSize: string;
424
+ lineHeight: string;
425
+ fontWeight: number;
426
+ color: string;
427
+ margin: string;
428
+ };
429
+ tablet: {
430
+ fontSize: string;
431
+ lineHeight: string;
432
+ fontWeight: number;
433
+ color: string;
434
+ margin: string;
435
+ };
436
+ desktop: {
437
+ fontSize: string;
438
+ lineHeight: string;
439
+ fontWeight: number;
440
+ color: string;
441
+ margin: string;
442
+ };
443
+ };
444
+ "Heading-h3": {
445
+ mobile: {
446
+ fontSize: string;
447
+ lineHeight: string;
448
+ fontWeight: number;
449
+ color: string;
450
+ margin: string;
451
+ };
452
+ tablet: {
453
+ fontSize: string;
454
+ lineHeight: string;
455
+ fontWeight: number;
456
+ color: string;
457
+ margin: string;
458
+ };
459
+ desktop: {
460
+ fontSize: string;
461
+ lineHeight: string;
462
+ fontWeight: number;
463
+ color: string;
464
+ margin: string;
465
+ };
466
+ };
467
+ "Heading-h4": {
468
+ mobile: {
469
+ fontSize: string;
470
+ lineHeight: string;
471
+ fontWeight: number;
472
+ color: string;
473
+ margin: string;
474
+ };
475
+ tablet: {
476
+ fontSize: string;
477
+ lineHeight: string;
478
+ fontWeight: number;
479
+ color: string;
480
+ margin: string;
481
+ };
482
+ desktop: {
483
+ fontSize: string;
484
+ lineHeight: string;
485
+ fontWeight: number;
486
+ color: string;
487
+ margin: string;
488
+ };
489
+ };
490
+ "Heading-h5": {
491
+ mobile: {
492
+ fontSize: string;
493
+ lineHeight: string;
494
+ fontWeight: number;
495
+ color: string;
496
+ margin: string;
497
+ };
498
+ tablet: {
499
+ fontSize: string;
500
+ lineHeight: string;
501
+ fontWeight: number;
502
+ color: string;
503
+ margin: string;
504
+ };
505
+ desktop: {
506
+ fontSize: string;
507
+ lineHeight: string;
508
+ fontWeight: number;
509
+ color: string;
510
+ margin: string;
511
+ };
512
+ };
513
+ "Heading-h6": {
514
+ mobile: {
515
+ fontSize: string;
516
+ lineHeight: string;
517
+ fontWeight: number;
518
+ color: string;
519
+ margin: string;
520
+ };
521
+ tablet: {
522
+ fontSize: string;
523
+ lineHeight: string;
524
+ fontWeight: number;
525
+ color: string;
526
+ margin: string;
527
+ };
528
+ desktop: {
529
+ fontSize: string;
530
+ lineHeight: string;
531
+ fontWeight: number;
532
+ color: string;
533
+ margin: string;
534
+ };
535
+ };
536
+ };
537
+ header: {
538
+ backgroundColor1: string;
539
+ backgroundColor2: string;
540
+ bannerColor: string;
541
+ atomIconTop: {
542
+ variant: string;
543
+ stroke: string;
544
+ fill: string;
545
+ hover: {
546
+ stroke: string;
547
+ fill: string;
548
+ };
549
+ };
550
+ atomIconDot: {
551
+ variant: string;
552
+ size: string;
553
+ fill: string;
554
+ stroke: string;
555
+ hover: {
556
+ stroke: string;
557
+ };
558
+ };
559
+ atomHeading: {
560
+ variant: string;
561
+ };
562
+ atomTextTitle: {
563
+ variant: string;
564
+ };
565
+ atomButtonLeft: {
566
+ variant: string;
567
+ };
568
+ atomButtonRight: {
569
+ variant: string;
570
+ };
571
+ atomTextLeft: {
572
+ variant: string;
573
+ };
574
+ atomTextRight: {
575
+ variant: string;
576
+ };
577
+ atomIconLeft: {
578
+ variant: string;
579
+ };
580
+ atomIconRight: {
581
+ variant: string;
582
+ };
583
+ };
584
+ navigation: {
585
+ background: string;
586
+ atomIcon: {
587
+ variant: string;
588
+ color: string;
589
+ focus: {
590
+ outline: string;
591
+ outlineOffset: string;
592
+ boxShadow: string;
593
+ color: string;
594
+ };
595
+ hover: {
596
+ color: string;
597
+ transition: string;
598
+ };
599
+ };
600
+ atomLink: {
601
+ variant: string;
602
+ color: string;
603
+ fontWeight: string;
604
+ currentPath: {
605
+ color: string;
606
+ fontWeight: string;
607
+ };
608
+ focus: {
609
+ color: string;
610
+ boxShadow: string;
611
+ transform: string;
612
+ };
613
+ hover: {
614
+ color: string;
615
+ transition: string;
616
+ };
617
+ };
618
+ };
619
+ footer: {
620
+ background: string;
621
+ padding: string;
622
+ gap: string;
623
+ text: {
624
+ variant: string;
625
+ color: string;
626
+ hover: {
627
+ color: string;
628
+ };
629
+ };
630
+ links: {
631
+ variant: string;
632
+ };
633
+ icons: {
634
+ variant: string;
635
+ };
636
+ };
637
+ cardTeaser: {
638
+ background: string;
639
+ gradientBackground: string;
640
+ borderRadius: string;
641
+ maxWidth: string;
642
+ text: {
643
+ variant: string;
644
+ color: string;
645
+ margin: string;
646
+ };
647
+ icon: {
648
+ variant: string;
649
+ };
650
+ button: {
651
+ variant: string;
652
+ };
653
+ imageContainer: {
654
+ responsive: {
655
+ tinyMobileUp: {
656
+ right: string;
657
+ top: string;
658
+ padding: string;
659
+ };
660
+ largeMobileUp: {
661
+ right: string;
662
+ top: string;
663
+ padding: string;
664
+ };
665
+ desktopUp: {
666
+ padding: string;
667
+ };
668
+ };
669
+ };
670
+ image: {
671
+ borderRadius: string;
672
+ };
673
+ list: {
674
+ padding: string;
675
+ margin: string;
676
+ };
677
+ leftCardContainer: {
678
+ responsive: {
679
+ tinyMobileUp: {
680
+ padding: string;
681
+ width: string;
682
+ };
683
+ desktopUp: {
684
+ padding: string;
685
+ };
686
+ };
687
+ };
688
+ listItem: {
689
+ responsive: {
690
+ tinyMobileUp: {
691
+ gap: string;
692
+ };
693
+ mobileUp: {
694
+ gap: string;
695
+ };
696
+ };
697
+ };
698
+ separator: {
699
+ padding: string;
700
+ border: string;
701
+ };
702
+ headingTitle: {
703
+ variant: string;
704
+ color: string;
705
+ };
706
+ headingCompanyDate: {
707
+ variant: string;
708
+ color: string;
709
+ textTransform: string;
710
+ };
711
+ };
712
+ breakerTape: {
713
+ icon: {
714
+ variant: string;
715
+ fill: string;
716
+ stroke: string;
717
+ hover: {
718
+ stroke: string;
719
+ fill: string;
720
+ };
721
+ };
722
+ text: {
723
+ variant: string;
724
+ color: string;
725
+ };
726
+ tapeContent: {
727
+ alignItems: string;
728
+ gap: string;
729
+ slowness: string;
730
+ };
731
+ tapeContainer: {
732
+ width: string;
733
+ transform: string;
734
+ background: string;
735
+ padding: string;
736
+ margin: string;
737
+ };
738
+ };
739
+ cardSimpleRender: {
740
+ flexDirection: string;
741
+ justifyContent: string;
742
+ gap: string;
743
+ background: string;
744
+ gradientBackground: string;
745
+ border: string;
746
+ borderRadius: string;
747
+ padding: string;
748
+ height: string;
749
+ maxWidth: string;
750
+ hover: {
751
+ border: string;
752
+ boxShadow: string;
753
+ transition: string;
754
+ };
755
+ atomIcon: {
756
+ variant: string;
757
+ };
758
+ atomHeading: {
759
+ variant: string;
760
+ };
761
+ atomText: {
762
+ variant: string;
763
+ };
764
+ };
765
+ cardBanner: {
766
+ flexDirection: string;
767
+ justifyContent: string;
768
+ background: string;
769
+ border: string;
770
+ borderRadius: string;
771
+ padding: string;
772
+ atomHeading: {
773
+ variant: string;
774
+ };
775
+ atomText: {
776
+ variant: string;
777
+ };
778
+ atomButton: {
779
+ variant: string;
780
+ };
781
+ atomTextButton: {
782
+ variant: string;
783
+ };
784
+ atomIcon: {
785
+ variant: string;
786
+ };
787
+ };
788
+ media: {
789
+ tinyMobileUp: string;
790
+ smallMobileUp: string;
791
+ mobileUp: string;
792
+ mobileLandscapeUp: string;
793
+ largeMobileUp: string;
794
+ tabletPortraitUp: string;
795
+ tabletLandscapeUp: string;
796
+ desktopUp: string;
797
+ largeDesktopUp: string;
798
+ superLargeDesktopUp: string;
799
+ };
800
+ colors: {
801
+ light: string;
802
+ white: string;
803
+ grey: string;
804
+ accent: string;
805
+ active: string;
806
+ affirmative: string;
807
+ affirmativeDark: string;
808
+ affirmativeAlternate: string;
809
+ cta: string;
810
+ dark: string;
811
+ separator: string;
812
+ disabledBg: string;
813
+ disabledText: string;
814
+ divider: string;
815
+ error: string;
816
+ errorHoverBack: string;
817
+ hover: string;
818
+ lightBack: string;
819
+ navigateText: string;
820
+ notice: string;
821
+ outline: string;
822
+ primary: string;
823
+ primaryDark: string;
824
+ primaryDarker: string;
825
+ readMore: string;
826
+ secondary: string;
827
+ secondaryLighter: string;
828
+ socialIcon: string;
829
+ socialIconSecondary: string;
830
+ text: string;
831
+ textAccent: string;
832
+ textLight: string;
833
+ border: string;
834
+ signedUp: string;
835
+ borderError: string;
836
+ borderHover: string;
837
+ };
838
+ pages: {
839
+ vod: {
840
+ top: {
841
+ text: string;
842
+ desktop: string;
843
+ tablet: string;
844
+ mobile: string;
845
+ };
846
+ main: {
847
+ background: string;
848
+ text: string;
849
+ columns: number;
850
+ gap: {
851
+ mobile: string;
852
+ tablet: string;
853
+ desktop: string;
854
+ };
855
+ };
856
+ };
857
+ meetups: {};
858
+ };
859
+ components: {
860
+ meetupCard: {
861
+ backgroundColor: string;
862
+ typeColor: string;
863
+ dateColor: string;
864
+ titleColor: string;
865
+ descriptionColor: string;
866
+ buttonVariant: string;
867
+ reversedButtons: boolean;
868
+ fullTextColor: string;
869
+ fullBackground: string;
870
+ };
871
+ textArea: {
872
+ default: string;
873
+ active: string;
874
+ hover: string;
875
+ disabledText: string;
876
+ };
877
+ qnAList: {
878
+ buttonVariant: string;
879
+ titleColor: string;
880
+ textColor: string;
881
+ disabledBackground: string;
882
+ };
883
+ qnACard: {
884
+ voteButtonIcon: boolean;
885
+ background: string;
886
+ textColor: string;
887
+ footerFlexDirection: string;
888
+ buttonVariant: string;
889
+ scrollbar: {
890
+ width: string;
891
+ };
892
+ scrollbarThumb: {
893
+ background: string;
894
+ };
895
+ scrollbarTrack: {
896
+ boxShadow: string;
897
+ borderRadius: string;
898
+ };
899
+ };
900
+ toolTip: {
901
+ textColor: string;
902
+ toolTipTextColor: string;
903
+ toolTipBackgroundColor: string;
904
+ textTransform: string;
905
+ };
906
+ formLabel: {
907
+ labelColor: string;
908
+ requiredStarColor: string;
909
+ };
910
+ selectBox: {
911
+ textColor: string;
912
+ selectedTextColor: string;
913
+ disabledText: string;
914
+ backgroundColor: string;
915
+ hover: string;
916
+ width: string;
917
+ height: string;
918
+ topOpen: string;
919
+ topClosed: string;
920
+ right: string;
921
+ selectBoxIconArrow: string;
922
+ selectBoxIconArrowLight: string;
923
+ borderColor: string;
924
+ errorBorderColor: string;
925
+ };
926
+ modal: {
927
+ top: {
928
+ text: string;
929
+ background: string;
930
+ titleColor: string;
931
+ mobileAlignCenter: boolean;
932
+ };
933
+ bottom: {
934
+ text: string;
935
+ background: string;
936
+ };
937
+ greyText: string;
938
+ selectedItem: string;
939
+ topBarColor: string;
940
+ closeButtonMargin: string;
941
+ closeButtonColor: {
942
+ desktop: string;
943
+ mobile: string;
944
+ };
945
+ categoryVariant: string;
946
+ };
947
+ notificationToast: {
948
+ background: string;
949
+ footerLinkColor: string;
950
+ closeButtonColor: {
951
+ desktop: string;
952
+ mobile: string;
953
+ };
954
+ };
955
+ modalPlayer: {
956
+ closeButtonColor: {
957
+ desktop: string;
958
+ mobile: string;
959
+ };
960
+ };
961
+ modalSpeaker: {
962
+ nameHeadingVariant: string;
963
+ isJobTitleHeading: boolean;
964
+ aboutMeHeadingVariant: string;
965
+ textVariant: string;
966
+ avatarSize: string;
967
+ socialIconSpacing: string;
968
+ hasMoreSpace: boolean;
969
+ socialIconColor: string;
970
+ jobCompanySeperateLines: boolean;
971
+ };
972
+ modalQuestion: {
973
+ padding: string;
974
+ margin: string;
975
+ buttonFullWidth: boolean;
976
+ questionLength: number;
977
+ };
978
+ modalQuestionSent: {
979
+ padding: string;
980
+ margin: string;
981
+ buttonFullWidth: boolean;
982
+ };
983
+ modalShareHug: {
984
+ padding: string;
985
+ margin: string;
986
+ headingMargin: string;
987
+ paddingModal: string;
988
+ };
989
+ modalVodDetail: {
990
+ topTitle: boolean;
991
+ title: {
992
+ textColor: string;
993
+ background: string;
994
+ categoryColor: string;
995
+ centered: boolean;
996
+ hasMoreSpace: boolean;
997
+ };
998
+ description: {
999
+ headingVariant: string;
1000
+ textVariant: string;
1001
+ };
1002
+ speakers: {
1003
+ headingVariant: string;
1004
+ textColor: string;
1005
+ background: string;
1006
+ jobTitleColor: string;
1007
+ jobTitleSpacing: boolean;
1008
+ socialIconColor: string;
1009
+ horizontalRulerColor: string;
1010
+ isJobTitleHeading: boolean;
1011
+ avatarSize: string;
1012
+ direction: string;
1013
+ mobileAlignCenter: boolean;
1014
+ mobileAvatarFullWidth: boolean;
1015
+ };
1016
+ };
1017
+ vodTop: {
1018
+ titleHeadingVariant: string;
1019
+ isLight: boolean;
1020
+ showCategories: boolean;
1021
+ showViewAllVideos: boolean;
1022
+ hasMoreSpace: boolean;
1023
+ };
1024
+ vodOverview: {
1025
+ categoryVariant: string;
1026
+ useCheckboxes: boolean;
1027
+ titleHeadingVariant: string;
1028
+ showCategories: boolean;
1029
+ showFilter: boolean;
1030
+ marginLeftWhenMobile: string;
1031
+ };
1032
+ vodDetail: {
1033
+ topTitleColor: string;
1034
+ dateTimeColor: string;
1035
+ };
1036
+ partnerOverview: {
1037
+ showFilter: boolean;
1038
+ showPromoOverview: boolean;
1039
+ promoOverviewColor: string;
1040
+ };
1041
+ videoThumb: {
1042
+ hoverEffect: string;
1043
+ titleColor: string;
1044
+ };
1045
+ LiveThumb: {
1046
+ textColor: string;
1047
+ };
1048
+ schedule: {
1049
+ background: string;
1050
+ textColor: string;
1051
+ trackTitleColor: string;
1052
+ timeLineTextColor: string;
1053
+ rowDividerColor: string;
1054
+ dayColor: string;
1055
+ dayActiveColor: string;
1056
+ dayBorderColor: string;
1057
+ trackColor: string;
1058
+ trackActiveColor: string;
1059
+ };
1060
+ sessionCard: {
1061
+ background: string;
1062
+ backgroundHover: string;
1063
+ categoryVariant: string;
1064
+ categoryTextColor: string;
1065
+ dateColor: string;
1066
+ titleColor: string;
1067
+ speakerColor: string;
1068
+ progressBarBackground: string;
1069
+ progressBar: string;
1070
+ heading: {
1071
+ fontSize: string;
1072
+ lineHeight: string;
1073
+ };
1074
+ processingTextColor: string;
1075
+ };
1076
+ navigation: {
1077
+ textColor: string;
1078
+ backgroundColor: string;
1079
+ navLink: string;
1080
+ profileDropdown: {
1081
+ textColor: string;
1082
+ backgroundColor: string;
1083
+ backgroundColorHover: string;
1084
+ };
1085
+ };
1086
+ faqToggle: {
1087
+ textColor: string;
1088
+ };
1089
+ filter: {
1090
+ textColor: string;
1091
+ background: string;
1092
+ };
1093
+ subMenu: {
1094
+ textColor: string;
1095
+ backgroundColor: string;
1096
+ navLink: string;
1097
+ };
1098
+ trackFilter: {
1099
+ textColor: string;
1100
+ navLink: string;
1101
+ };
1102
+ scheduleSubMenu: {
1103
+ backgroundColor: string;
1104
+ };
1105
+ sidePanel: {
1106
+ textColor: string;
1107
+ background: string;
1108
+ width: string;
1109
+ backdropFilter: string;
1110
+ };
1111
+ dateTime: {
1112
+ useSuffixedDay: boolean;
1113
+ };
1114
+ meetupSignups: {
1115
+ textColor: string;
1116
+ textColorLastPic: string;
1117
+ pictureBackground: string;
1118
+ backgroundColor: string;
1119
+ };
1120
+ sessionQnA: {
1121
+ textColor: string;
1122
+ background: string;
1123
+ };
1124
+ };
1125
+ socialIcons: {
1126
+ lightgrey: {
1127
+ linkedin: string;
1128
+ facebook: string;
1129
+ github: string;
1130
+ instagram: string;
1131
+ twitter: string;
1132
+ website: string;
1133
+ youtube: string;
1134
+ };
1135
+ white: {
1136
+ linkedin: string;
1137
+ facebook: string;
1138
+ github: string;
1139
+ instagram: string;
1140
+ twitter: string;
1141
+ website: string;
1142
+ };
1143
+ };
1144
+ fonts: {
1145
+ default: string;
1146
+ };
1147
+ borderRadius: {
1148
+ button: string;
1149
+ input: string;
1150
+ countdown: string;
1151
+ };
1152
+ checkbox: {
1153
+ dark: {
1154
+ width: string;
1155
+ height: string;
1156
+ top: string;
1157
+ left: string;
1158
+ borderRadius: string;
1159
+ text: string;
1160
+ default: {
1161
+ check: string;
1162
+ border: string;
1163
+ background: string;
1164
+ };
1165
+ hover: {
1166
+ check: string;
1167
+ border: string;
1168
+ };
1169
+ checked: {
1170
+ text: string;
1171
+ check: string;
1172
+ border: string;
1173
+ background: string;
1174
+ };
1175
+ checkedhover: {
1176
+ check: string;
1177
+ border: string;
1178
+ background: string;
1179
+ opacity: number;
1180
+ };
1181
+ disabled: {
1182
+ check: string;
1183
+ border: string;
1184
+ background: string;
1185
+ opacity: number;
1186
+ };
1187
+ };
1188
+ light: {
1189
+ width: string;
1190
+ height: string;
1191
+ top: string;
1192
+ left: string;
1193
+ borderRadius: string;
1194
+ text: string;
1195
+ default: {
1196
+ check: string;
1197
+ border: string;
1198
+ background: string;
1199
+ };
1200
+ hover: {
1201
+ check: string;
1202
+ border: string;
1203
+ };
1204
+ checked: {
1205
+ check: string;
1206
+ border: string;
1207
+ background: string;
1208
+ };
1209
+ checkedhover: {
1210
+ check: string;
1211
+ border: string;
1212
+ background: string;
1213
+ };
1214
+ disabled: {
1215
+ check: string;
1216
+ border: string;
1217
+ background: string;
1218
+ opacity: number;
1219
+ };
1220
+ };
1221
+ };
1222
+ combination: {
1223
+ light: {};
1224
+ dark: {};
1225
+ pulldown: {};
1226
+ selected: {
1227
+ background: string;
1228
+ text: string;
1229
+ };
1230
+ error: {
1231
+ text: string;
1232
+ background: string;
1233
+ };
1234
+ success: {};
1235
+ header: {
1236
+ text: string;
1237
+ background: string;
1238
+ orientation: string;
1239
+ };
1240
+ shade: {};
1241
+ hover: {};
1242
+ recommended: {};
1243
+ };
1244
+ sponsorMeeting: {
1245
+ descriptionBackground: string;
1246
+ descriptionText: string;
1247
+ };
1248
+ menu: {
1249
+ light: {
1250
+ background: string;
1251
+ text: string;
1252
+ };
1253
+ dark: {
1254
+ background: string;
1255
+ text: string;
1256
+ };
1257
+ mobile: {
1258
+ background: string;
1259
+ text: string;
1260
+ textActive: string;
1261
+ };
1262
+ };
1263
+ background: {
1264
+ default: string;
1265
+ };
1266
+ category: {
1267
+ textLight: string;
1268
+ textDark: string;
1269
+ light: string;
1270
+ dark: string;
1271
+ hover: string;
1272
+ active: string;
1273
+ gap: string;
1274
+ };
1275
+ rowBackground: {
1276
+ default: {
1277
+ text: string;
1278
+ desktop: string;
1279
+ tablet: string;
1280
+ mobile: string;
1281
+ };
1282
+ light: {
1283
+ text: string;
1284
+ desktop: string;
1285
+ tablet: string;
1286
+ mobile: string;
1287
+ };
1288
+ image1: {
1289
+ text: string;
1290
+ desktop: string;
1291
+ tablet: string;
1292
+ mobile: string;
1293
+ };
1294
+ };
1295
+ images: {
1296
+ navBarLogoDark: string;
1297
+ footerLogo: {};
1298
+ };
1299
+ ratingPopup: {
1300
+ lowRating: string;
1301
+ mediumRating: string;
1302
+ highRating: string;
1303
+ backgroundHover: string;
1304
+ ratingText: string;
1305
+ };
1306
+ icons: {
1307
+ arrowDown: string;
1308
+ navigationBack: string;
1309
+ navigationForward: string;
1310
+ close: string;
1311
+ delete: string;
1312
+ calendar: string;
1313
+ addToCalendar: string;
1314
+ remove: string;
1315
+ plus: string;
1316
+ added: string;
1317
+ info: string;
1318
+ sectionLogoIcon: string;
1319
+ defaultAvatar: string;
1320
+ notificationArrow: string;
1321
+ };
1322
+ iconColors: {
1323
+ dark: string;
1324
+ noColor: string;
1325
+ };
1326
+ hero: {};
1327
+ pagination: {
1328
+ buttonVariant: string;
1329
+ iconRight: string;
1330
+ iconLeft: string;
1331
+ };
1332
+ meetup: {
1333
+ buttonVariant: string;
1334
+ };
1335
+ player_cta: {};
1336
+ profile: {
1337
+ card: {};
1338
+ };
1339
+ notifications: {
1340
+ toast: {
1341
+ buttonVariant: string;
1342
+ };
1343
+ textColor: string;
1344
+ descriptionFontSize: string;
1345
+ background: string;
1346
+ };
1347
+ chat: {
1348
+ pickerInline: boolean;
1349
+ inputChat: {
1350
+ background: string;
1351
+ border: string;
1352
+ };
1353
+ chatList: {
1354
+ scrollbar: {
1355
+ width: string;
1356
+ };
1357
+ scrollbarThumb: {
1358
+ background: string;
1359
+ };
1360
+ scrollbarTrack: {
1361
+ boxShadow: string;
1362
+ borderRadius: string;
1363
+ };
1364
+ };
1365
+ };
1366
+ partners: {};
1367
+ maxWidth: string;
1368
+ navigationFontSize: string;
1369
+ vodRowMaxHight: string;
1370
+ inputField: {
1371
+ height: string;
1372
+ };
1373
+ };
1374
+ export default manamergeTheme;