@enki-tek/fms-web-components 0.0.1 → 0.0.3

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 (106) hide show
  1. package/README.md +1 -1
  2. package/app.scss +1 -1
  3. package/components/Accordion/Accordion.scss +30 -0
  4. package/components/Accordion/Accordion.stories.d.ts +20 -0
  5. package/components/Accordion/Accordion.stories.js +30 -0
  6. package/components/Accordion/Accordion.svelte +617 -0
  7. package/components/Accordion/Accordion.svelte.d.ts +17 -0
  8. package/components/Alert/Alert.scss +25 -0
  9. package/components/Alert/Alert.stories.d.ts +54 -0
  10. package/components/Alert/Alert.stories.js +46 -0
  11. package/components/Alert/Alert.svelte +29 -0
  12. package/components/Alert/Alert.svelte.d.ts +19 -0
  13. package/components/Badge/Badge.scss +8 -0
  14. package/components/Badge/Badge.stories.d.ts +75 -0
  15. package/components/Badge/Badge.stories.js +55 -0
  16. package/components/Badge/Badge.svelte +587 -0
  17. package/components/Badge/Badge.svelte.d.ts +17 -0
  18. package/components/Badge/BadgeConfig.d.ts +10 -0
  19. package/components/Badge/BadgeConfig.js +34 -0
  20. package/components/Breadcrumb/Breadcrumb.scss +26 -0
  21. package/components/Breadcrumb/Breadcrumb.stories.d.ts +23 -0
  22. package/components/Breadcrumb/Breadcrumb.stories.js +20 -0
  23. package/components/Breadcrumb/Breadcrumb.svelte +603 -0
  24. package/components/Breadcrumb/Breadcrumb.svelte.d.ts +16 -0
  25. package/components/Button/Button.scss +706 -0
  26. package/components/Button/Button.stories.d.ts +96 -27
  27. package/components/Button/Button.stories.js +99 -38
  28. package/components/Button/Button.svelte +1125 -10
  29. package/components/Button/Button.svelte.d.ts +43 -9
  30. package/components/Button/buttonConfig.d.ts +38 -0
  31. package/components/Button/buttonConfig.js +203 -0
  32. package/components/Card/Card.scss +39 -0
  33. package/components/Card/Card.stories.d.ts +59 -0
  34. package/components/Card/Card.stories.js +42 -0
  35. package/components/Card/Card.svelte +123 -0
  36. package/components/Card/Card.svelte.d.ts +51 -0
  37. package/components/CheckBox/Checkbox.scss +32 -0
  38. package/components/CheckBox/Checkbox.stories.d.ts +94 -0
  39. package/components/CheckBox/Checkbox.stories.js +51 -0
  40. package/components/CheckBox/Checkbox.svelte +614 -0
  41. package/components/CheckBox/Checkbox.svelte.d.ts +31 -0
  42. package/components/Dropdown/Dropdown.scss +72 -0
  43. package/components/Dropdown/Dropdown.stories.d.ts +29 -0
  44. package/components/Dropdown/Dropdown.stories.js +19 -0
  45. package/components/Dropdown/Dropdown.svelte +646 -0
  46. package/components/Dropdown/Dropdown.svelte.d.ts +17 -0
  47. package/components/Header/Header.scss +54 -0
  48. package/components/Header/Header.stories.d.ts +28 -0
  49. package/components/Header/Header.stories.js +28 -0
  50. package/components/Header/Header.svelte +667 -0
  51. package/components/Header/Header.svelte.d.ts +27 -0
  52. package/components/Icon/Icon.scss +0 -0
  53. package/components/Icon/Icon.stories.d.ts +21 -0
  54. package/components/Icon/Icon.stories.js +18 -0
  55. package/components/Icon/Icon.svelte +7 -0
  56. package/components/Icon/Icon.svelte.d.ts +23 -0
  57. package/components/ModalWindow/Modal.scss +28 -0
  58. package/components/ModalWindow/Modal.stories.d.ts +29 -0
  59. package/components/ModalWindow/Modal.stories.js +20 -0
  60. package/components/ModalWindow/Modal.svelte +641 -0
  61. package/components/ModalWindow/Modal.svelte.d.ts +23 -0
  62. package/components/Pagination/Pagination.scss +83 -0
  63. package/components/Pagination/Pagination.stories.d.ts +29 -0
  64. package/components/Pagination/Pagination.stories.js +18 -0
  65. package/components/Pagination/Pagination.svelte +702 -0
  66. package/components/Pagination/Pagination.svelte.d.ts +18 -0
  67. package/components/RadioButton/RadioButton.scss +28 -0
  68. package/components/RadioButton/RadioButton.stories.d.ts +35 -0
  69. package/components/RadioButton/RadioButton.stories.js +25 -0
  70. package/components/RadioButton/RadioButton.svelte +616 -0
  71. package/components/RadioButton/RadioButton.svelte.d.ts +41 -0
  72. package/components/Sidebar/Sidebar.scss +87 -0
  73. package/components/Sidebar/Sidebar.stories.d.ts +28 -0
  74. package/components/Sidebar/Sidebar.stories.js +27 -0
  75. package/components/Sidebar/Sidebar.svelte +144 -0
  76. package/components/Sidebar/Sidebar.svelte.d.ts +31 -0
  77. package/components/Switches/Switch.scss +12 -0
  78. package/components/Switches/Switch.stories.d.ts +87 -0
  79. package/components/Switches/Switch.stories.js +50 -0
  80. package/components/Switches/Switch.svelte +595 -0
  81. package/components/Switches/Switch.svelte.d.ts +29 -0
  82. package/components/Tab/Tab.scss +30 -0
  83. package/components/Tab/Tab.stories.d.ts +23 -0
  84. package/components/Tab/Tab.stories.js +19 -0
  85. package/components/Tab/Tab.svelte +615 -0
  86. package/components/Tab/Tab.svelte.d.ts +19 -0
  87. package/components/Table/Table.scss +38 -0
  88. package/components/Table/Table.stories.d.ts +28 -0
  89. package/components/Table/Table.stories.js +21 -0
  90. package/components/Table/Table.svelte +137 -0
  91. package/components/Table/Table.svelte.d.ts +35 -0
  92. package/components/Tooltip/Tooltip.scss +29 -0
  93. package/components/Tooltip/Tooltip.stories.d.ts +40 -0
  94. package/components/Tooltip/Tooltip.stories.js +24 -0
  95. package/components/Tooltip/Tooltip.svelte +622 -0
  96. package/components/Tooltip/Tooltip.svelte.d.ts +21 -0
  97. package/components/common.scss +789 -0
  98. package/components/textField/TextField.scss +34 -0
  99. package/components/textField/TextField.stories.d.ts +85 -0
  100. package/components/textField/TextField.stories.js +32 -0
  101. package/components/textField/TextField.svelte +607 -0
  102. package/components/textField/TextField.svelte.d.ts +33 -0
  103. package/components/variable.scss +134 -0
  104. package/index.d.ts +17 -1
  105. package/index.js +17 -1
  106. package/package.json +60 -1
@@ -0,0 +1,789 @@
1
+ @import './variable.scss';
2
+
3
+
4
+ //common
5
+ %efs-normal {
6
+ font-family: $bodyFonts;
7
+ font-size: 16px;
8
+ font-style: normal;
9
+ font-weight: 400;
10
+ line-height: 28px;
11
+ }
12
+
13
+ %efs-normal-modal {
14
+ font-family: $bodyFonts;
15
+ font-size: 16px;
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ }
19
+
20
+ %common-Accordion-font {
21
+ color: $gray-800;
22
+ font-weight: 400;
23
+ font-style: normal;
24
+ line-height: normal;
25
+ border: 1px solid $gray-400;
26
+ background-color: $white;
27
+ font-family: $bodyFonts;
28
+ }
29
+
30
+
31
+ //background color classess ,active classess
32
+ :global(.ebg-none) {
33
+ background-color: $white !important;
34
+ }
35
+
36
+ :global(.ebg-white) {
37
+ background-color: $white;
38
+ }
39
+
40
+ :global(.ebg-secondary, .eactive-secondary:active, .ehover-secondary:hover) {
41
+ background-color: $secondary !important;
42
+ }
43
+
44
+ :global(.ebg-secondaryDark, .eactive-secondaryDark:active, .ehover-secondaryDark:hover) {
45
+ background-color: $secondary-dark;
46
+ }
47
+
48
+ :global(.ebg-secondaryLight, .eactive-secondaryLight:active, .ehover-secondaryLight:hover) {
49
+ background-color: $secondary-light;
50
+ }
51
+
52
+ :global(.ebg-primary) {
53
+ background-color: $primary;
54
+ }
55
+
56
+ :global(.ebg-primaryDark) {
57
+ background-color: $primary-dark;
58
+ }
59
+
60
+ :global(.ebg-primaryLight) {
61
+ background-color: $primary-light;
62
+ }
63
+
64
+ :global(.ebg-danger) {
65
+ background-color: $danger ;
66
+ }
67
+
68
+ :global(.ebg-dangerDark) {
69
+ background-color: $danger-dark;
70
+ }
71
+
72
+ :global(.ebg-dangerLight) {
73
+ background-color: $danger-light;
74
+ }
75
+
76
+ :global(.ebg-warning) {
77
+ background-color: $warning;
78
+ }
79
+
80
+ :global(.ebg-warningDark) {
81
+ background-color: $warning-dark;
82
+ color: $white !important;
83
+ }
84
+
85
+ :global(.ebg-warningLight) {
86
+ background-color: $warning-light;
87
+ }
88
+
89
+
90
+ :global(.ebg-info) {
91
+ background-color: $info;
92
+ }
93
+
94
+ :global(.ebg-infoDark) {
95
+ background-color: $info-dark;
96
+ }
97
+
98
+ :global(.ebg-infoLight) {
99
+ background-color: $info-light;
100
+ }
101
+
102
+
103
+ :global(.ebg-success) {
104
+ background-color: $success;
105
+ }
106
+
107
+ :global(.ebg-successDark) {
108
+ background-color: $success-dark;
109
+ }
110
+
111
+ :global(.ebg-successLight) {
112
+ background-color: $success-light;
113
+ }
114
+
115
+ :global(.ebg-gray100) {
116
+ background-color: $gray-100;
117
+ }
118
+
119
+ :global(.ebg-gray200) {
120
+ background-color: $gray-200;
121
+ }
122
+
123
+ :global(.ebg-gray300) {
124
+ background-color: $gray-300;
125
+ }
126
+
127
+ :global(.ebg-gray400) {
128
+ background-color: $gray-400;
129
+ }
130
+
131
+ :global(.ebg-gray500) {
132
+ background-color: $gray-500;
133
+ }
134
+
135
+ :global(.ebg-gray600) {
136
+ background-color: $gray-600;
137
+ }
138
+
139
+ :global(.ebg-gray700) {
140
+ background-color: $gray-700;
141
+ }
142
+
143
+ :global(.ebg-gray800) {
144
+ background-color: $gray-800;
145
+ }
146
+
147
+ :global(.ebg-gray900) {
148
+ background-color: $gray-900;
149
+ }
150
+
151
+ // green background
152
+ :global(.ebg-green100) {
153
+ background-color: $green-100;
154
+ }
155
+
156
+ :global(.ebg-green200) {
157
+ background-color: $green-200;
158
+ }
159
+
160
+ :global(.ebg-green300) {
161
+ background-color: $green-300;
162
+ }
163
+
164
+ :global(.ebg-green400) {
165
+ background-color: $green-400;
166
+ }
167
+
168
+ :global(.ebg-green500) {
169
+ background-color: $green-500;
170
+ }
171
+
172
+ :global(.ebg-green600) {
173
+ background-color: $green-600;
174
+ }
175
+
176
+ :global(.ebg-green700) {
177
+ background-color: $green-700;
178
+ }
179
+
180
+ :global(.ebg-green800) {
181
+ background-color: $green-800;
182
+ }
183
+
184
+ :global(.ebg-green900) {
185
+ background-color: $green-900;
186
+ }
187
+
188
+ // red background
189
+ :global(.ebg-red100) {
190
+ background-color: $red-100;
191
+ }
192
+
193
+ :global(.ebg-red200) {
194
+ background-color: $red-200;
195
+ }
196
+
197
+ :global(.ebg-red300) {
198
+ background-color: $red-300;
199
+ }
200
+
201
+ :global(.ebg-red400) {
202
+ background-color: $red-400;
203
+ }
204
+
205
+ :global(.ebg-red500) {
206
+ background-color: $red-500;
207
+ }
208
+
209
+ :global(.ebg-red600) {
210
+ background-color: $red-600;
211
+ }
212
+
213
+ :global(.ebg-red700) {
214
+ background-color: $red-700;
215
+ }
216
+
217
+ :global(.ebg-red800) {
218
+ background-color: $red-800;
219
+ }
220
+
221
+ :global(.ebg-red900) {
222
+ background-color: $red-900;
223
+ }
224
+
225
+
226
+ // yellow background
227
+ :global(.ebg-yellow100) {
228
+ background-color: $yellow-100;
229
+ }
230
+
231
+ :global(.ebg-yellow200) {
232
+ background-color: $yellow-200;
233
+ }
234
+
235
+ :global(.ebg-yellow300) {
236
+ background-color: $yellow-300;
237
+ }
238
+
239
+ :global(.ebg-yellow400) {
240
+ background-color: $yellow-400;
241
+ }
242
+
243
+ :global(.ebg-yellow500) {
244
+ background-color: $yellow-500;
245
+ }
246
+
247
+ :global(.ebg-yellow600) {
248
+ background-color: $yellow-600;
249
+ }
250
+
251
+ :global(.ebg-yellow700) {
252
+ background-color: $yellow-700;
253
+ }
254
+
255
+ :global(.ebg-yellow800) {
256
+ background-color: $yellow-800;
257
+ }
258
+
259
+ :global(.ebg-yellow900) {
260
+ background-color: $yellow-900;
261
+ }
262
+
263
+
264
+ // cyan background
265
+ :global(.ebg-cyan100) {
266
+ background-color: $cyan-100;
267
+ }
268
+
269
+ :global(.ebg-cyan200) {
270
+ background-color: $cyan-200;
271
+ }
272
+
273
+ :global(.ebg-cyan300) {
274
+ background-color: $cyan-300;
275
+ }
276
+
277
+ :global(.ebg-cyan400) {
278
+ background-color: $cyan-400;
279
+ }
280
+
281
+ :global(.ebg-cyan500) {
282
+ background-color: $cyan-500;
283
+ }
284
+
285
+ :global(.ebg-cyan600) {
286
+ background-color: $cyan-600;
287
+ }
288
+
289
+ :global(.ebg-cyan700) {
290
+ background-color: $cyan-700;
291
+ }
292
+
293
+ :global(.ebg-cyan800) {
294
+ background-color: $cyan-800;
295
+ }
296
+
297
+ :global(.ebg-cyan900) {
298
+ background-color: $cyan-900;
299
+ }
300
+
301
+ // Text color classess
302
+
303
+ .etext-white {
304
+ color: $white;
305
+ }
306
+
307
+ :global(.etext-dark) {
308
+ color: $black;
309
+ }
310
+
311
+ :global(.etext-secondary) {
312
+ color: $secondary;
313
+ }
314
+
315
+ :global(.etext-secondaryDark) {
316
+ color: $secondary-dark;
317
+ }
318
+
319
+ :global(.etext-secondaryLight) {
320
+ color: $secondary-light;
321
+ }
322
+
323
+ :global(.etext-primary) {
324
+ color: $primary;
325
+ }
326
+
327
+ :global(.etext-primaryDark) {
328
+ color: $primary-dark;
329
+ }
330
+
331
+ :global(.etext-primaryLight) {
332
+ color: $primary-light;
333
+ }
334
+
335
+ :global(.etext-danger) {
336
+ color: $danger;
337
+ }
338
+
339
+ :global(.etext-dangerDark) {
340
+ color: $danger-dark;
341
+ }
342
+
343
+ :global(.etext-dangerLight) {
344
+ color: $danger-light;
345
+ }
346
+
347
+ :global(.etext-info) {
348
+ color: $info;
349
+ }
350
+
351
+ :global(.etext-infoDark) {
352
+ color: $info-dark;
353
+ }
354
+
355
+ :global(.etext-infoLight) {
356
+ color: $info-light;
357
+ }
358
+
359
+ :global(.etext-success) {
360
+ color: $success;
361
+ }
362
+
363
+ :global(.etext-successDark) {
364
+ color: $success-dark;
365
+ }
366
+
367
+ :global(.etext-successLight) {
368
+ color: $success-light;
369
+ }
370
+
371
+ :global(.etext-warning) {
372
+ color: $warning;
373
+ }
374
+
375
+ :global(.etext-warningDark) {
376
+ color: $warning-dark;
377
+ }
378
+
379
+ :global(.etext-warningLight) {
380
+ color: $warning-light;
381
+ }
382
+
383
+
384
+ :global(.etext-gray100) {
385
+ color: $gray-100;
386
+ }
387
+
388
+ :global(.etext-gray200) {
389
+ color: $gray-200;
390
+ }
391
+
392
+ :global(.etext-gray300) {
393
+ color: $gray-300;
394
+ }
395
+
396
+ :global(.etext-gray400) {
397
+ color: $gray-400;
398
+ }
399
+
400
+ :global(.etext-gray500) {
401
+ color: $gray-500;
402
+ }
403
+
404
+ :global(.etext-gray600) {
405
+ color: $gray-600;
406
+ }
407
+
408
+ :global(.etext-gray700) {
409
+ color: $gray-700;
410
+ }
411
+
412
+ :global(.etext-gray800) {
413
+ color: $gray-800;
414
+ }
415
+
416
+ :global(.etext-gray900) {
417
+ color: $gray-900;
418
+ }
419
+
420
+ // green text
421
+ :global(.etext-green100) {
422
+ color: $green-100;
423
+ }
424
+
425
+ :global(.etext-green200) {
426
+ color: $green-200;
427
+ }
428
+
429
+ :global(.etext-green300) {
430
+ color: $green-300;
431
+ }
432
+
433
+ :global(.etext-green400) {
434
+ color: $green-400;
435
+ }
436
+
437
+ :global(.etext-green500) {
438
+ color: $green-500;
439
+ }
440
+
441
+ :global(.etext-green600) {
442
+ color: $green-600;
443
+ }
444
+
445
+ :global(.etext-green700) {
446
+ color: $green-700;
447
+ }
448
+
449
+ :global(.etext-green800) {
450
+ color: $green-800;
451
+ }
452
+
453
+ :global(.etext-green900) {
454
+ color: $green-900;
455
+ }
456
+
457
+ // red text
458
+ :global(.etext-red100) {
459
+ color: $red-100;
460
+ }
461
+
462
+ :global(.etext-red200) {
463
+ color: $red-200;
464
+ }
465
+
466
+ :global(.etext-red300) {
467
+ color: $red-300;
468
+ }
469
+
470
+ :global(.etext-red400) {
471
+ color: $red-400;
472
+ }
473
+
474
+ :global(.etext-red500) {
475
+ color: $red-500;
476
+ }
477
+
478
+ :global(.etext-red600) {
479
+ color: $red-600;
480
+ }
481
+
482
+ :global(.etext-red700) {
483
+ color: $red-700;
484
+ }
485
+
486
+ :global(.etext-red800) {
487
+ color: $red-800;
488
+ }
489
+
490
+ :global(.etext-red900) {
491
+ color: $red-900;
492
+ }
493
+
494
+ // yellow text
495
+ :global(.etext-yellow100) {
496
+ color: $yellow-100;
497
+ }
498
+
499
+ :global(.etext-yellow200) {
500
+ color: $yellow-200;
501
+ }
502
+
503
+ :global(.etext-yellow300) {
504
+ color: $yellow-300;
505
+ }
506
+
507
+ :global(.etext-yellow400) {
508
+ color: $yellow-400;
509
+ }
510
+
511
+ :global(.etext-yellow500) {
512
+ color: $yellow-500;
513
+ }
514
+
515
+ :global(.etext-yellow600) {
516
+ color: $yellow-600;
517
+ }
518
+
519
+ :global(.etext-yellow700) {
520
+ color: $yellow-700;
521
+ }
522
+
523
+ :global(.etext-yellow800) {
524
+ color: $yellow-800;
525
+ }
526
+
527
+ :global(.etext-yellow900) {
528
+ color: $yellow-900;
529
+ }
530
+
531
+ // cyan text
532
+ :global(.etext-cyan100) {
533
+ color: $cyan-100;
534
+ }
535
+
536
+ :global(.etext-cyan200) {
537
+ color: $cyan-200;
538
+ }
539
+
540
+ :global(.etext-cyan300) {
541
+ color: $cyan-300;
542
+ }
543
+
544
+ :global(.etext-cyan400) {
545
+ color: $cyan-400;
546
+ }
547
+
548
+ :global(.etext-cyan500) {
549
+ color: $cyan-500;
550
+ }
551
+
552
+ :global(.etext-cyan600) {
553
+ color: $cyan-600;
554
+ }
555
+
556
+ :global(.etext-cyan700) {
557
+ color: $cyan-700;
558
+ }
559
+
560
+ :global(.etext-cyan800) {
561
+ color: $cyan-800;
562
+ }
563
+
564
+ :global(.etext-cyan900) {
565
+ color: $cyan-900;
566
+ }
567
+
568
+
569
+ //outline classess
570
+
571
+ :global(.eoutline-secondary) {
572
+ outline: 1px solid $secondary;
573
+ }
574
+
575
+ :global(.eoutline-secondaryDark) {
576
+ outline: 1px solid $secondary-dark;
577
+ }
578
+
579
+ :global(.eoutline-secondaryLight) {
580
+ outline: 1px solid $secondary-light;
581
+ }
582
+
583
+ :global(.eoutline-primary) {
584
+ outline: 1px solid $primary;
585
+ }
586
+
587
+ :global(.eoutline-primaryDark) {
588
+ outline: 1px solid $primary-dark;
589
+ }
590
+
591
+ :global(.eoutline-primaryLight) {
592
+ outline: 1px solid $primary-light;
593
+ }
594
+
595
+ :global(.eoutline-danger) {
596
+ outline: 1px solid $danger;
597
+ }
598
+
599
+ :global(.eoutline-dangerDark) {
600
+ outline: 1px solid $danger-dark;
601
+ }
602
+
603
+ :global(.eoutline-dangerLight) {
604
+ outline: 1px solid $danger-light;
605
+ }
606
+
607
+ :global(.eoutline-success) {
608
+ outline: 1px solid $success;
609
+ }
610
+
611
+ :global(.eoutline-successDark) {
612
+ outline: 1px solid $success-dark;
613
+ }
614
+
615
+ :global(.eoutline-successLight) {
616
+ outline: 1px solid $success-light;
617
+ }
618
+
619
+ :global(.eoutline-info) {
620
+ outline: 1px solid $info;
621
+ }
622
+
623
+ :global(.eoutline-infoDark) {
624
+ outline: 1px solid $info-dark;
625
+ }
626
+
627
+ :global(.eoutline-infoLight) {
628
+ outline: 1px solid $info-light;
629
+ }
630
+
631
+ :global(.eoutline-warning) {
632
+ outline: 1px solid $warning;
633
+ }
634
+
635
+ :global(.eoutline-warningDark) {
636
+ outline: 1px solid $warning-dark;
637
+ }
638
+
639
+ :global(.eoutline-warningLight) {
640
+ outline: 1px solid $warning-light;
641
+ }
642
+
643
+
644
+ //Border radius
645
+
646
+ :global(.eradius) {
647
+ border-radius: 4px;
648
+ }
649
+
650
+ :global(.eradius-low) {
651
+ border-radius: 8px;
652
+ }
653
+
654
+ :global(.eradius-medium) {
655
+ border-radius: 16px;
656
+ }
657
+
658
+ :global(.eradius-full) {
659
+ border-radius: 50%;
660
+ }
661
+
662
+ //box shadow
663
+
664
+ .eshadow-non {
665
+ box-shadow: $nonShadow;
666
+ }
667
+
668
+ .eshadow-low {
669
+ box-shadow: $lowShadow;
670
+ }
671
+
672
+ .eshadow-medium {
673
+ box-shadow: $mediumShadow;
674
+ }
675
+
676
+ .eshadow-high {
677
+ box-shadow: $highShadow;
678
+ }
679
+
680
+
681
+ // Font sizes & styles
682
+
683
+ :global(.efs-small) {
684
+ font-family: $bodyFonts;
685
+ font-size: 12px;
686
+ font-style: normal;
687
+ font-weight: 400;
688
+ line-height: normal;
689
+ }
690
+
691
+ :global(.efs-normal) {
692
+ font-family: $bodyFonts;
693
+ font-size: 16px;
694
+ font-style: normal;
695
+ font-weight: 400;
696
+ line-height: 28px;
697
+ }
698
+
699
+ :global(.efs-strong) {
700
+ font-family: $bodyFonts;
701
+ font-size: 17px;
702
+ font-style: normal;
703
+ font-weight: 700;
704
+ line-height: 28px;
705
+ }
706
+
707
+ :global(.efs-h6) {
708
+ font-family: $bodyFonts;
709
+ font-size: 16px;
710
+ font-style: normal;
711
+ font-weight: 700;
712
+ line-height: normal;
713
+ }
714
+
715
+ :global(.efs-h5) {
716
+ font-family: $bodyFonts;
717
+ font-size: 20px;
718
+ font-style: normal;
719
+ font-weight: 700;
720
+ line-height: normal;
721
+ }
722
+
723
+ :global(.efs-h4) {
724
+ font-family: $bodyFonts;
725
+ font-size: 24px;
726
+ font-style: normal;
727
+ font-weight: 700;
728
+ line-height: normal;
729
+ }
730
+
731
+ :global(.efs-h3) {
732
+ font-family: $bodyFonts;
733
+ font-size: 28px;
734
+ font-style: normal;
735
+ font-weight: 700;
736
+ line-height: normal;
737
+ }
738
+
739
+ :global(.efs-h2) {
740
+ font-family: $bodyFonts;
741
+ font-size: 32px;
742
+ font-style: normal;
743
+ font-weight: 700;
744
+ line-height: normal;
745
+ }
746
+
747
+ :global(.efs-h1) {
748
+ font-family: $bodyFonts;
749
+ font-size: 40px;
750
+ font-style: normal;
751
+ font-weight: 700;
752
+ line-height: normal;
753
+ letter-spacing: -0.8px;
754
+ }
755
+
756
+ //Display heading fonts styles
757
+
758
+ :global(.efs-h4D) {
759
+ font-family: Merriweather;
760
+ font-size: 52px;
761
+ font-style: normal;
762
+ font-weight: 400;
763
+ line-height: normal;
764
+ }
765
+
766
+ :global(.efs-h3D) {
767
+ font-family: Merriweather;
768
+ font-size: 58px;
769
+ font-style: normal;
770
+ font-weight: 400;
771
+ line-height: normal;
772
+ }
773
+
774
+ :global(.efs-h2D) {
775
+ font-family: Merriweather;
776
+ font-size: 64px;
777
+ font-style: normal;
778
+ font-weight: 400;
779
+ line-height: normal;
780
+ letter-spacing: -1.28px;
781
+ }
782
+
783
+ :global(.efs-h1D) {
784
+ font-family: Merriweather;
785
+ font-size: 72px;
786
+ font-style: normal;
787
+ font-weight: 400;
788
+ line-height: normal;
789
+ }