@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
@@ -1,12 +1,1127 @@
1
- <script>import { Button } from "sveltestrap";
2
- export let label = "click";
3
- export let iscolor = false;
4
- export let size = "md";
5
- export let color = "primary";
1
+ <script>
2
+ import { buttonConfig } from './buttonConfig';
3
+ export let type = 'button';
4
+ export let label = 'Button';
5
+ export let config = '';
6
+ export let icon = { state: false, name: 'person', position: 'right' };
7
+ export let shade = 'primary';
8
+ export let outlineShade = '';
9
+
10
+ let buttonStyles = [];
11
+ if (buttonConfig.hasOwnProperty(config)) {
12
+ buttonStyles = ['ebtn', ...buttonConfig[config], `ebg-${shade}`, `eoutline-${outlineShade}`];
13
+ }
14
+
15
+ // icon button
16
+ if (icon.state && icon.position === 'left') {
17
+ buttonStyles = [...buttonStyles, 'eicon-left'];
18
+ } else if (icon.state && icon.position === 'right') {
19
+ buttonStyles = [...buttonStyles, 'eicon-right'];
20
+ } else if (icon.state && icon.position === 'single') {
21
+ buttonStyles = [...buttonStyles, 'eicon-btn'];
22
+ label = '';
23
+ }
24
+
25
+ console.log(buttonStyles);
6
26
  </script>
7
27
 
8
- <Button color = {iscolor ? 'primary' : 'danger'}
9
- class={`btn btn-${color} btn-${size}`}
10
- >
11
- {label}
12
- </Button>
28
+ <button {type} class={buttonStyles.join(' ')} on:click on:focus on:blur>
29
+ <slot>
30
+ {#if label}
31
+ {label}
32
+ {:else}
33
+ <slot />
34
+ {/if}
35
+ {#if icon.state}
36
+ <i class="material-icons">{icon.name}</i>
37
+ {/if}
38
+ </slot>
39
+ </button>
40
+
41
+ <style>@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
42
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
43
+ @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
44
+ @import url(https://fonts.googleapis.com/icon?family=Material+Icons);
45
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
46
+ @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
47
+ .ebtn {
48
+ background-color: #ffffff;
49
+ color: black;
50
+ border: none;
51
+ cursor: pointer;
52
+ border-radius: 6px;
53
+ padding: 0px 24px;
54
+ height: 42px;
55
+ box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
56
+ border: none;
57
+ outline: 1px solid #ffffff;
58
+ font-family: Roboto;
59
+ }
60
+ .ebtn-small {
61
+ height: 32px;
62
+ font-size: 12px;
63
+ display: flex;
64
+ justify-content: center;
65
+ align-items: center;
66
+ font-family: Roboto;
67
+ }
68
+ .ebtn-small i {
69
+ font-size: 12px;
70
+ }
71
+ .ebtn-medium {
72
+ padding: 0px 24px;
73
+ height: 42px;
74
+ display: flex;
75
+ justify-content: center;
76
+ align-items: center;
77
+ font-size: 16px;
78
+ font-family: Roboto;
79
+ }
80
+ .ebtn-medium i {
81
+ font-size: 16px;
82
+ }
83
+ .ebtn-large {
84
+ height: 52px;
85
+ display: flex;
86
+ justify-content: center;
87
+ align-items: center;
88
+ font-size: 16px;
89
+ font-family: Roboto;
90
+ }
91
+ .ebtn-large i {
92
+ font-size: 16px;
93
+ }
94
+ .eicon-btn {
95
+ width: 52px;
96
+ height: 52px;
97
+ border-radius: 50%;
98
+ font-family: Roboto;
99
+ }
100
+ .eicon-left {
101
+ display: flex;
102
+ justify-content: center;
103
+ align-items: center;
104
+ flex-direction: row-reverse;
105
+ gap: 7px;
106
+ size: 2px;
107
+ font-family: Roboto;
108
+ }
109
+ .eicon-right {
110
+ display: flex;
111
+ justify-content: center;
112
+ align-items: center;
113
+ gap: 7px;
114
+ }
115
+ .ebg-none {
116
+ background-color: #ffffff !important;
117
+ }
118
+ .ebg-white {
119
+ background-color: #ffffff;
120
+ }
121
+ .ebg-secondary,
122
+ .eactive-secondary:active,
123
+ .ehover-secondary:hover {
124
+ background-color: #3AC82E !important;
125
+ }
126
+ .ebg-secondaryDark,
127
+ .eactive-secondaryDark:active,
128
+ .ehover-secondaryDark:hover {
129
+ background-color: #00A855;
130
+ }
131
+ .ebg-secondaryLight,
132
+ .eactive-secondaryLight:active,
133
+ .ehover-secondaryLight:hover {
134
+ background-color: #CBFFC7;
135
+ }
136
+ .ebg-primary {
137
+ background-color: #00AEE5;
138
+ }
139
+ .ebg-primaryDark {
140
+ background-color: #007FD8;
141
+ }
142
+ .ebg-primaryLight {
143
+ background-color: #CEF3FF;
144
+ }
145
+ .ebg-danger {
146
+ background-color: #FE4747;
147
+ }
148
+ .ebg-dangerDark {
149
+ background-color: #B02A37;
150
+ }
151
+ .ebg-dangerLight {
152
+ background-color: #FE4747;
153
+ }
154
+ .ebg-warning {
155
+ background-color: #FFBA3A;
156
+ }
157
+ .ebg-warningDark {
158
+ background-color: #997404;
159
+ color: #ffffff !important;
160
+ }
161
+ .ebg-warningLight {
162
+ background-color: #FFF3CD;
163
+ }
164
+ .ebg-info {
165
+ background-color: #0DCAF0;
166
+ }
167
+ .ebg-infoDark {
168
+ background-color: #087990;
169
+ }
170
+ .ebg-infoLight {
171
+ background-color: #9EEAF9;
172
+ }
173
+ .ebg-success {
174
+ background-color: #00A96B;
175
+ }
176
+ .ebg-successDark {
177
+ background-color: #146C43;
178
+ }
179
+ .ebg-successLight {
180
+ background-color: #D1E7DD;
181
+ }
182
+ .ebg-gray100 {
183
+ background-color: #F8F9FA;
184
+ }
185
+ .ebg-gray200 {
186
+ background-color: #E9ECEF;
187
+ }
188
+ .ebg-gray300 {
189
+ background-color: #DEE2E6;
190
+ }
191
+ .ebg-gray400 {
192
+ background-color: #CED4DA;
193
+ }
194
+ .ebg-gray500 {
195
+ background-color: #adb5bd;
196
+ }
197
+ .ebg-gray600 {
198
+ background-color: #6C757D;
199
+ }
200
+ .ebg-gray700 {
201
+ background-color: #495057;
202
+ }
203
+ .ebg-gray800 {
204
+ background-color: #343A40;
205
+ }
206
+ .ebg-gray900 {
207
+ background-color: #212529;
208
+ }
209
+ .ebg-green100 {
210
+ background-color: #D1E7DD;
211
+ }
212
+ .ebg-green200 {
213
+ background-color: #A3CFBB;
214
+ }
215
+ .ebg-green300 {
216
+ background-color: #75B798;
217
+ }
218
+ .ebg-green400 {
219
+ background-color: #479F76;
220
+ }
221
+ .ebg-green500 {
222
+ background-color: #198754;
223
+ }
224
+ .ebg-green600 {
225
+ background-color: #146C43;
226
+ }
227
+ .ebg-green700 {
228
+ background-color: #0F5132;
229
+ }
230
+ .ebg-green800 {
231
+ background-color: #0A3622;
232
+ }
233
+ .ebg-green900 {
234
+ background-color: #051B11;
235
+ }
236
+ .ebg-red100 {
237
+ background-color: #F8D7DA;
238
+ }
239
+ .ebg-red200 {
240
+ background-color: #F1AEB5;
241
+ }
242
+ .ebg-red300 {
243
+ background-color: #EA868F;
244
+ }
245
+ .ebg-red400 {
246
+ background-color: #E35D6A;
247
+ }
248
+ .ebg-red500 {
249
+ background-color: #DC3545;
250
+ }
251
+ .ebg-red600 {
252
+ background-color: #B02A37;
253
+ }
254
+ .ebg-red700 {
255
+ background-color: #842029;
256
+ }
257
+ .ebg-red800 {
258
+ background-color: #58151C;
259
+ }
260
+ .ebg-red900 {
261
+ background-color: #2C0B0E;
262
+ }
263
+ .ebg-yellow100 {
264
+ background-color: #FFF3CD;
265
+ }
266
+ .ebg-yellow200 {
267
+ background-color: #FFE69C;
268
+ }
269
+ .ebg-yellow300 {
270
+ background-color: #FFDA6A;
271
+ }
272
+ .ebg-yellow400 {
273
+ background-color: #FFCD39;
274
+ }
275
+ .ebg-yellow500 {
276
+ background-color: #FFC107;
277
+ }
278
+ .ebg-yellow600 {
279
+ background-color: #CC9A06;
280
+ }
281
+ .ebg-yellow700 {
282
+ background-color: #997404;
283
+ }
284
+ .ebg-yellow800 {
285
+ background-color: #664D03;
286
+ }
287
+ .ebg-yellow900 {
288
+ background-color: #332701;
289
+ }
290
+ .ebg-cyan100 {
291
+ background-color: #CFF4FC;
292
+ }
293
+ .ebg-cyan200 {
294
+ background-color: #9EEAF9;
295
+ }
296
+ .ebg-cyan300 {
297
+ background-color: #6EDFF6;
298
+ }
299
+ .ebg-cyan400 {
300
+ background-color: #3DD5F3;
301
+ }
302
+ .ebg-cyan500 {
303
+ background-color: #0DCAF0;
304
+ }
305
+ .ebg-cyan600 {
306
+ background-color: #0AA2C0;
307
+ }
308
+ .ebg-cyan700 {
309
+ background-color: #087990;
310
+ }
311
+ .ebg-cyan800 {
312
+ background-color: #055160;
313
+ }
314
+ .ebg-cyan900 {
315
+ background-color: #032830;
316
+ }
317
+ .etext-white {
318
+ color: #ffffff;
319
+ }
320
+ .etext-dark {
321
+ color: #000000;
322
+ }
323
+ .etext-secondary {
324
+ color: #3AC82E;
325
+ }
326
+ .etext-secondaryDark {
327
+ color: #00A855;
328
+ }
329
+ .etext-secondaryLight {
330
+ color: #CBFFC7;
331
+ }
332
+ .etext-primary {
333
+ color: #00AEE5;
334
+ }
335
+ .etext-primaryDark {
336
+ color: #007FD8;
337
+ }
338
+ .etext-primaryLight {
339
+ color: #CEF3FF;
340
+ }
341
+ .etext-danger {
342
+ color: #FE4747;
343
+ }
344
+ .etext-dangerDark {
345
+ color: #B02A37;
346
+ }
347
+ .etext-dangerLight {
348
+ color: #FE4747;
349
+ }
350
+ .etext-info {
351
+ color: #0DCAF0;
352
+ }
353
+ .etext-infoDark {
354
+ color: #087990;
355
+ }
356
+ .etext-infoLight {
357
+ color: #9EEAF9;
358
+ }
359
+ .etext-success {
360
+ color: #00A96B;
361
+ }
362
+ .etext-successDark {
363
+ color: #146C43;
364
+ }
365
+ .etext-successLight {
366
+ color: #D1E7DD;
367
+ }
368
+ .etext-warning {
369
+ color: #FFBA3A;
370
+ }
371
+ .etext-warningDark {
372
+ color: #997404;
373
+ }
374
+ .etext-warningLight {
375
+ color: #FFF3CD;
376
+ }
377
+ .etext-gray100 {
378
+ color: #F8F9FA;
379
+ }
380
+ .etext-gray200 {
381
+ color: #E9ECEF;
382
+ }
383
+ .etext-gray300 {
384
+ color: #DEE2E6;
385
+ }
386
+ .etext-gray400 {
387
+ color: #CED4DA;
388
+ }
389
+ .etext-gray500 {
390
+ color: #adb5bd;
391
+ }
392
+ .etext-gray600 {
393
+ color: #6C757D;
394
+ }
395
+ .etext-gray700 {
396
+ color: #495057;
397
+ }
398
+ .etext-gray800 {
399
+ color: #343A40;
400
+ }
401
+ .etext-gray900 {
402
+ color: #212529;
403
+ }
404
+ .etext-green100 {
405
+ color: #D1E7DD;
406
+ }
407
+ .etext-green200 {
408
+ color: #A3CFBB;
409
+ }
410
+ .etext-green300 {
411
+ color: #75B798;
412
+ }
413
+ .etext-green400 {
414
+ color: #479F76;
415
+ }
416
+ .etext-green500 {
417
+ color: #198754;
418
+ }
419
+ .etext-green600 {
420
+ color: #146C43;
421
+ }
422
+ .etext-green700 {
423
+ color: #0F5132;
424
+ }
425
+ .etext-green800 {
426
+ color: #0A3622;
427
+ }
428
+ .etext-green900 {
429
+ color: #051B11;
430
+ }
431
+ .etext-red100 {
432
+ color: #F8D7DA;
433
+ }
434
+ .etext-red200 {
435
+ color: #F1AEB5;
436
+ }
437
+ .etext-red300 {
438
+ color: #EA868F;
439
+ }
440
+ .etext-red400 {
441
+ color: #E35D6A;
442
+ }
443
+ .etext-red500 {
444
+ color: #DC3545;
445
+ }
446
+ .etext-red600 {
447
+ color: #B02A37;
448
+ }
449
+ .etext-red700 {
450
+ color: #842029;
451
+ }
452
+ .etext-red800 {
453
+ color: #58151C;
454
+ }
455
+ .etext-red900 {
456
+ color: #2C0B0E;
457
+ }
458
+ .etext-yellow100 {
459
+ color: #FFF3CD;
460
+ }
461
+ .etext-yellow200 {
462
+ color: #FFE69C;
463
+ }
464
+ .etext-yellow300 {
465
+ color: #FFDA6A;
466
+ }
467
+ .etext-yellow400 {
468
+ color: #FFCD39;
469
+ }
470
+ .etext-yellow500 {
471
+ color: #FFC107;
472
+ }
473
+ .etext-yellow600 {
474
+ color: #CC9A06;
475
+ }
476
+ .etext-yellow700 {
477
+ color: #997404;
478
+ }
479
+ .etext-yellow800 {
480
+ color: #664D03;
481
+ }
482
+ .etext-yellow900 {
483
+ color: #332701;
484
+ }
485
+ .etext-cyan100 {
486
+ color: #CFF4FC;
487
+ }
488
+ .etext-cyan200 {
489
+ color: #9EEAF9;
490
+ }
491
+ .etext-cyan300 {
492
+ color: #6EDFF6;
493
+ }
494
+ .etext-cyan400 {
495
+ color: #3DD5F3;
496
+ }
497
+ .etext-cyan500 {
498
+ color: #0DCAF0;
499
+ }
500
+ .etext-cyan600 {
501
+ color: #0AA2C0;
502
+ }
503
+ .etext-cyan700 {
504
+ color: #087990;
505
+ }
506
+ .etext-cyan800 {
507
+ color: #055160;
508
+ }
509
+ .etext-cyan900 {
510
+ color: #032830;
511
+ }
512
+ .eoutline-secondary {
513
+ outline: 1px solid #3AC82E;
514
+ }
515
+ .eoutline-secondaryDark {
516
+ outline: 1px solid #00A855;
517
+ }
518
+ .eoutline-secondaryLight {
519
+ outline: 1px solid #CBFFC7;
520
+ }
521
+ .eoutline-primary {
522
+ outline: 1px solid #00AEE5;
523
+ }
524
+ .eoutline-primaryDark {
525
+ outline: 1px solid #007FD8;
526
+ }
527
+ .eoutline-primaryLight {
528
+ outline: 1px solid #CEF3FF;
529
+ }
530
+ .eoutline-danger {
531
+ outline: 1px solid #FE4747;
532
+ }
533
+ .eoutline-dangerDark {
534
+ outline: 1px solid #B02A37;
535
+ }
536
+ .eoutline-dangerLight {
537
+ outline: 1px solid #FE4747;
538
+ }
539
+ .eoutline-success {
540
+ outline: 1px solid #00A96B;
541
+ }
542
+ .eoutline-successDark {
543
+ outline: 1px solid #146C43;
544
+ }
545
+ .eoutline-successLight {
546
+ outline: 1px solid #D1E7DD;
547
+ }
548
+ .eoutline-info {
549
+ outline: 1px solid #0DCAF0;
550
+ }
551
+ .eoutline-infoDark {
552
+ outline: 1px solid #087990;
553
+ }
554
+ .eoutline-infoLight {
555
+ outline: 1px solid #9EEAF9;
556
+ }
557
+ .eoutline-warning {
558
+ outline: 1px solid #FFBA3A;
559
+ }
560
+ .eoutline-warningDark {
561
+ outline: 1px solid #997404;
562
+ }
563
+ .eoutline-warningLight {
564
+ outline: 1px solid #FFF3CD;
565
+ }
566
+ :global(.ebg-none) {
567
+ background-color: #ffffff !important;
568
+ }
569
+ :global(.ebg-white) {
570
+ background-color: #ffffff;
571
+ }
572
+ :global(.ebg-secondary, .eactive-secondary:active, .ehover-secondary:hover) {
573
+ background-color: #3AC82E !important;
574
+ }
575
+ :global(.ebg-secondaryDark, .eactive-secondaryDark:active, .ehover-secondaryDark:hover) {
576
+ background-color: #00A855;
577
+ }
578
+ :global(.ebg-secondaryLight, .eactive-secondaryLight:active, .ehover-secondaryLight:hover) {
579
+ background-color: #CBFFC7;
580
+ }
581
+ :global(.ebg-primary) {
582
+ background-color: #00AEE5;
583
+ }
584
+ :global(.ebg-primaryDark) {
585
+ background-color: #007FD8;
586
+ }
587
+ :global(.ebg-primaryLight) {
588
+ background-color: #CEF3FF;
589
+ }
590
+ :global(.ebg-danger) {
591
+ background-color: #FE4747;
592
+ }
593
+ :global(.ebg-dangerDark) {
594
+ background-color: #B02A37;
595
+ }
596
+ :global(.ebg-dangerLight) {
597
+ background-color: #FE4747;
598
+ }
599
+ :global(.ebg-warning) {
600
+ background-color: #FFBA3A;
601
+ }
602
+ :global(.ebg-warningDark) {
603
+ background-color: #997404;
604
+ color: #ffffff !important;
605
+ }
606
+ :global(.ebg-warningLight) {
607
+ background-color: #FFF3CD;
608
+ }
609
+ :global(.ebg-info) {
610
+ background-color: #0DCAF0;
611
+ }
612
+ :global(.ebg-infoDark) {
613
+ background-color: #087990;
614
+ }
615
+ :global(.ebg-infoLight) {
616
+ background-color: #9EEAF9;
617
+ }
618
+ :global(.ebg-success) {
619
+ background-color: #00A96B;
620
+ }
621
+ :global(.ebg-successDark) {
622
+ background-color: #146C43;
623
+ }
624
+ :global(.ebg-successLight) {
625
+ background-color: #D1E7DD;
626
+ }
627
+ :global(.ebg-gray100) {
628
+ background-color: #F8F9FA;
629
+ }
630
+ :global(.ebg-gray200) {
631
+ background-color: #E9ECEF;
632
+ }
633
+ :global(.ebg-gray300) {
634
+ background-color: #DEE2E6;
635
+ }
636
+ :global(.ebg-gray400) {
637
+ background-color: #CED4DA;
638
+ }
639
+ :global(.ebg-gray500) {
640
+ background-color: #adb5bd;
641
+ }
642
+ :global(.ebg-gray600) {
643
+ background-color: #6C757D;
644
+ }
645
+ :global(.ebg-gray700) {
646
+ background-color: #495057;
647
+ }
648
+ :global(.ebg-gray800) {
649
+ background-color: #343A40;
650
+ }
651
+ :global(.ebg-gray900) {
652
+ background-color: #212529;
653
+ }
654
+ :global(.ebg-green100) {
655
+ background-color: #D1E7DD;
656
+ }
657
+ :global(.ebg-green200) {
658
+ background-color: #A3CFBB;
659
+ }
660
+ :global(.ebg-green300) {
661
+ background-color: #75B798;
662
+ }
663
+ :global(.ebg-green400) {
664
+ background-color: #479F76;
665
+ }
666
+ :global(.ebg-green500) {
667
+ background-color: #198754;
668
+ }
669
+ :global(.ebg-green600) {
670
+ background-color: #146C43;
671
+ }
672
+ :global(.ebg-green700) {
673
+ background-color: #0F5132;
674
+ }
675
+ :global(.ebg-green800) {
676
+ background-color: #0A3622;
677
+ }
678
+ :global(.ebg-green900) {
679
+ background-color: #051B11;
680
+ }
681
+ :global(.ebg-red100) {
682
+ background-color: #F8D7DA;
683
+ }
684
+ :global(.ebg-red200) {
685
+ background-color: #F1AEB5;
686
+ }
687
+ :global(.ebg-red300) {
688
+ background-color: #EA868F;
689
+ }
690
+ :global(.ebg-red400) {
691
+ background-color: #E35D6A;
692
+ }
693
+ :global(.ebg-red500) {
694
+ background-color: #DC3545;
695
+ }
696
+ :global(.ebg-red600) {
697
+ background-color: #B02A37;
698
+ }
699
+ :global(.ebg-red700) {
700
+ background-color: #842029;
701
+ }
702
+ :global(.ebg-red800) {
703
+ background-color: #58151C;
704
+ }
705
+ :global(.ebg-red900) {
706
+ background-color: #2C0B0E;
707
+ }
708
+ :global(.ebg-yellow100) {
709
+ background-color: #FFF3CD;
710
+ }
711
+ :global(.ebg-yellow200) {
712
+ background-color: #FFE69C;
713
+ }
714
+ :global(.ebg-yellow300) {
715
+ background-color: #FFDA6A;
716
+ }
717
+ :global(.ebg-yellow400) {
718
+ background-color: #FFCD39;
719
+ }
720
+ :global(.ebg-yellow500) {
721
+ background-color: #FFC107;
722
+ }
723
+ :global(.ebg-yellow600) {
724
+ background-color: #CC9A06;
725
+ }
726
+ :global(.ebg-yellow700) {
727
+ background-color: #997404;
728
+ }
729
+ :global(.ebg-yellow800) {
730
+ background-color: #664D03;
731
+ }
732
+ :global(.ebg-yellow900) {
733
+ background-color: #332701;
734
+ }
735
+ :global(.ebg-cyan100) {
736
+ background-color: #CFF4FC;
737
+ }
738
+ :global(.ebg-cyan200) {
739
+ background-color: #9EEAF9;
740
+ }
741
+ :global(.ebg-cyan300) {
742
+ background-color: #6EDFF6;
743
+ }
744
+ :global(.ebg-cyan400) {
745
+ background-color: #3DD5F3;
746
+ }
747
+ :global(.ebg-cyan500) {
748
+ background-color: #0DCAF0;
749
+ }
750
+ :global(.ebg-cyan600) {
751
+ background-color: #0AA2C0;
752
+ }
753
+ :global(.ebg-cyan700) {
754
+ background-color: #087990;
755
+ }
756
+ :global(.ebg-cyan800) {
757
+ background-color: #055160;
758
+ }
759
+ :global(.ebg-cyan900) {
760
+ background-color: #032830;
761
+ }
762
+ .etext-white {
763
+ color: #ffffff;
764
+ }
765
+ :global(.etext-dark) {
766
+ color: #000000;
767
+ }
768
+ :global(.etext-secondary) {
769
+ color: #3AC82E;
770
+ }
771
+ :global(.etext-secondaryDark) {
772
+ color: #00A855;
773
+ }
774
+ :global(.etext-secondaryLight) {
775
+ color: #CBFFC7;
776
+ }
777
+ :global(.etext-primary) {
778
+ color: #00AEE5;
779
+ }
780
+ :global(.etext-primaryDark) {
781
+ color: #007FD8;
782
+ }
783
+ :global(.etext-primaryLight) {
784
+ color: #CEF3FF;
785
+ }
786
+ :global(.etext-danger) {
787
+ color: #FE4747;
788
+ }
789
+ :global(.etext-dangerDark) {
790
+ color: #B02A37;
791
+ }
792
+ :global(.etext-dangerLight) {
793
+ color: #FE4747;
794
+ }
795
+ :global(.etext-info) {
796
+ color: #0DCAF0;
797
+ }
798
+ :global(.etext-infoDark) {
799
+ color: #087990;
800
+ }
801
+ :global(.etext-infoLight) {
802
+ color: #9EEAF9;
803
+ }
804
+ :global(.etext-success) {
805
+ color: #00A96B;
806
+ }
807
+ :global(.etext-successDark) {
808
+ color: #146C43;
809
+ }
810
+ :global(.etext-successLight) {
811
+ color: #D1E7DD;
812
+ }
813
+ :global(.etext-warning) {
814
+ color: #FFBA3A;
815
+ }
816
+ :global(.etext-warningDark) {
817
+ color: #997404;
818
+ }
819
+ :global(.etext-warningLight) {
820
+ color: #FFF3CD;
821
+ }
822
+ :global(.etext-gray100) {
823
+ color: #F8F9FA;
824
+ }
825
+ :global(.etext-gray200) {
826
+ color: #E9ECEF;
827
+ }
828
+ :global(.etext-gray300) {
829
+ color: #DEE2E6;
830
+ }
831
+ :global(.etext-gray400) {
832
+ color: #CED4DA;
833
+ }
834
+ :global(.etext-gray500) {
835
+ color: #adb5bd;
836
+ }
837
+ :global(.etext-gray600) {
838
+ color: #6C757D;
839
+ }
840
+ :global(.etext-gray700) {
841
+ color: #495057;
842
+ }
843
+ :global(.etext-gray800) {
844
+ color: #343A40;
845
+ }
846
+ :global(.etext-gray900) {
847
+ color: #212529;
848
+ }
849
+ :global(.etext-green100) {
850
+ color: #D1E7DD;
851
+ }
852
+ :global(.etext-green200) {
853
+ color: #A3CFBB;
854
+ }
855
+ :global(.etext-green300) {
856
+ color: #75B798;
857
+ }
858
+ :global(.etext-green400) {
859
+ color: #479F76;
860
+ }
861
+ :global(.etext-green500) {
862
+ color: #198754;
863
+ }
864
+ :global(.etext-green600) {
865
+ color: #146C43;
866
+ }
867
+ :global(.etext-green700) {
868
+ color: #0F5132;
869
+ }
870
+ :global(.etext-green800) {
871
+ color: #0A3622;
872
+ }
873
+ :global(.etext-green900) {
874
+ color: #051B11;
875
+ }
876
+ :global(.etext-red100) {
877
+ color: #F8D7DA;
878
+ }
879
+ :global(.etext-red200) {
880
+ color: #F1AEB5;
881
+ }
882
+ :global(.etext-red300) {
883
+ color: #EA868F;
884
+ }
885
+ :global(.etext-red400) {
886
+ color: #E35D6A;
887
+ }
888
+ :global(.etext-red500) {
889
+ color: #DC3545;
890
+ }
891
+ :global(.etext-red600) {
892
+ color: #B02A37;
893
+ }
894
+ :global(.etext-red700) {
895
+ color: #842029;
896
+ }
897
+ :global(.etext-red800) {
898
+ color: #58151C;
899
+ }
900
+ :global(.etext-red900) {
901
+ color: #2C0B0E;
902
+ }
903
+ :global(.etext-yellow100) {
904
+ color: #FFF3CD;
905
+ }
906
+ :global(.etext-yellow200) {
907
+ color: #FFE69C;
908
+ }
909
+ :global(.etext-yellow300) {
910
+ color: #FFDA6A;
911
+ }
912
+ :global(.etext-yellow400) {
913
+ color: #FFCD39;
914
+ }
915
+ :global(.etext-yellow500) {
916
+ color: #FFC107;
917
+ }
918
+ :global(.etext-yellow600) {
919
+ color: #CC9A06;
920
+ }
921
+ :global(.etext-yellow700) {
922
+ color: #997404;
923
+ }
924
+ :global(.etext-yellow800) {
925
+ color: #664D03;
926
+ }
927
+ :global(.etext-yellow900) {
928
+ color: #332701;
929
+ }
930
+ :global(.etext-cyan100) {
931
+ color: #CFF4FC;
932
+ }
933
+ :global(.etext-cyan200) {
934
+ color: #9EEAF9;
935
+ }
936
+ :global(.etext-cyan300) {
937
+ color: #6EDFF6;
938
+ }
939
+ :global(.etext-cyan400) {
940
+ color: #3DD5F3;
941
+ }
942
+ :global(.etext-cyan500) {
943
+ color: #0DCAF0;
944
+ }
945
+ :global(.etext-cyan600) {
946
+ color: #0AA2C0;
947
+ }
948
+ :global(.etext-cyan700) {
949
+ color: #087990;
950
+ }
951
+ :global(.etext-cyan800) {
952
+ color: #055160;
953
+ }
954
+ :global(.etext-cyan900) {
955
+ color: #032830;
956
+ }
957
+ :global(.eoutline-secondary) {
958
+ outline: 1px solid #3AC82E;
959
+ }
960
+ :global(.eoutline-secondaryDark) {
961
+ outline: 1px solid #00A855;
962
+ }
963
+ :global(.eoutline-secondaryLight) {
964
+ outline: 1px solid #CBFFC7;
965
+ }
966
+ :global(.eoutline-primary) {
967
+ outline: 1px solid #00AEE5;
968
+ }
969
+ :global(.eoutline-primaryDark) {
970
+ outline: 1px solid #007FD8;
971
+ }
972
+ :global(.eoutline-primaryLight) {
973
+ outline: 1px solid #CEF3FF;
974
+ }
975
+ :global(.eoutline-danger) {
976
+ outline: 1px solid #FE4747;
977
+ }
978
+ :global(.eoutline-dangerDark) {
979
+ outline: 1px solid #B02A37;
980
+ }
981
+ :global(.eoutline-dangerLight) {
982
+ outline: 1px solid #FE4747;
983
+ }
984
+ :global(.eoutline-success) {
985
+ outline: 1px solid #00A96B;
986
+ }
987
+ :global(.eoutline-successDark) {
988
+ outline: 1px solid #146C43;
989
+ }
990
+ :global(.eoutline-successLight) {
991
+ outline: 1px solid #D1E7DD;
992
+ }
993
+ :global(.eoutline-info) {
994
+ outline: 1px solid #0DCAF0;
995
+ }
996
+ :global(.eoutline-infoDark) {
997
+ outline: 1px solid #087990;
998
+ }
999
+ :global(.eoutline-infoLight) {
1000
+ outline: 1px solid #9EEAF9;
1001
+ }
1002
+ :global(.eoutline-warning) {
1003
+ outline: 1px solid #FFBA3A;
1004
+ }
1005
+ :global(.eoutline-warningDark) {
1006
+ outline: 1px solid #997404;
1007
+ }
1008
+ :global(.eoutline-warningLight) {
1009
+ outline: 1px solid #FFF3CD;
1010
+ }
1011
+ :global(.eradius) {
1012
+ border-radius: 4px;
1013
+ }
1014
+ :global(.eradius-low) {
1015
+ border-radius: 8px;
1016
+ }
1017
+ :global(.eradius-medium) {
1018
+ border-radius: 16px;
1019
+ }
1020
+ :global(.eradius-full) {
1021
+ border-radius: 50%;
1022
+ }
1023
+ .eshadow-non {
1024
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
1025
+ }
1026
+ .eshadow-low {
1027
+ box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
1028
+ }
1029
+ .eshadow-medium {
1030
+ box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
1031
+ }
1032
+ .eshadow-high {
1033
+ box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.1);
1034
+ }
1035
+ :global(.efs-small) {
1036
+ font-family: Roboto;
1037
+ font-size: 12px;
1038
+ font-style: normal;
1039
+ font-weight: 400;
1040
+ line-height: normal;
1041
+ }
1042
+ :global(.efs-normal) {
1043
+ font-family: Roboto;
1044
+ font-size: 16px;
1045
+ font-style: normal;
1046
+ font-weight: 400;
1047
+ line-height: 28px;
1048
+ }
1049
+ :global(.efs-strong) {
1050
+ font-family: Roboto;
1051
+ font-size: 17px;
1052
+ font-style: normal;
1053
+ font-weight: 700;
1054
+ line-height: 28px;
1055
+ }
1056
+ :global(.efs-h6) {
1057
+ font-family: Roboto;
1058
+ font-size: 16px;
1059
+ font-style: normal;
1060
+ font-weight: 700;
1061
+ line-height: normal;
1062
+ }
1063
+ :global(.efs-h5) {
1064
+ font-family: Roboto;
1065
+ font-size: 20px;
1066
+ font-style: normal;
1067
+ font-weight: 700;
1068
+ line-height: normal;
1069
+ }
1070
+ :global(.efs-h4) {
1071
+ font-family: Roboto;
1072
+ font-size: 24px;
1073
+ font-style: normal;
1074
+ font-weight: 700;
1075
+ line-height: normal;
1076
+ }
1077
+ :global(.efs-h3) {
1078
+ font-family: Roboto;
1079
+ font-size: 28px;
1080
+ font-style: normal;
1081
+ font-weight: 700;
1082
+ line-height: normal;
1083
+ }
1084
+ :global(.efs-h2) {
1085
+ font-family: Roboto;
1086
+ font-size: 32px;
1087
+ font-style: normal;
1088
+ font-weight: 700;
1089
+ line-height: normal;
1090
+ }
1091
+ :global(.efs-h1) {
1092
+ font-family: Roboto;
1093
+ font-size: 40px;
1094
+ font-style: normal;
1095
+ font-weight: 700;
1096
+ line-height: normal;
1097
+ letter-spacing: -0.8px;
1098
+ }
1099
+ :global(.efs-h4D) {
1100
+ font-family: Merriweather;
1101
+ font-size: 52px;
1102
+ font-style: normal;
1103
+ font-weight: 400;
1104
+ line-height: normal;
1105
+ }
1106
+ :global(.efs-h3D) {
1107
+ font-family: Merriweather;
1108
+ font-size: 58px;
1109
+ font-style: normal;
1110
+ font-weight: 400;
1111
+ line-height: normal;
1112
+ }
1113
+ :global(.efs-h2D) {
1114
+ font-family: Merriweather;
1115
+ font-size: 64px;
1116
+ font-style: normal;
1117
+ font-weight: 400;
1118
+ line-height: normal;
1119
+ letter-spacing: -1.28px;
1120
+ }
1121
+ :global(.efs-h1D) {
1122
+ font-family: Merriweather;
1123
+ font-size: 72px;
1124
+ font-style: normal;
1125
+ font-weight: 400;
1126
+ line-height: normal;
1127
+ }</style>