@enki-tek/fms-web-components 0.0.2 → 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 (105) hide show
  1. package/app.scss +1 -1
  2. package/components/Accordion/Accordion.scss +30 -0
  3. package/components/Accordion/Accordion.stories.d.ts +20 -0
  4. package/components/Accordion/Accordion.stories.js +30 -0
  5. package/components/Accordion/Accordion.svelte +617 -0
  6. package/components/Accordion/Accordion.svelte.d.ts +17 -0
  7. package/components/Alert/Alert.scss +25 -0
  8. package/components/Alert/Alert.stories.d.ts +54 -0
  9. package/components/Alert/Alert.stories.js +46 -0
  10. package/components/Alert/Alert.svelte +29 -0
  11. package/components/Alert/Alert.svelte.d.ts +19 -0
  12. package/components/Badge/Badge.scss +8 -0
  13. package/components/Badge/Badge.stories.d.ts +75 -0
  14. package/components/Badge/Badge.stories.js +55 -0
  15. package/components/Badge/Badge.svelte +587 -0
  16. package/components/Badge/Badge.svelte.d.ts +17 -0
  17. package/components/Badge/BadgeConfig.d.ts +10 -0
  18. package/components/Badge/BadgeConfig.js +34 -0
  19. package/components/Breadcrumb/Breadcrumb.scss +26 -0
  20. package/components/Breadcrumb/Breadcrumb.stories.d.ts +23 -0
  21. package/components/Breadcrumb/Breadcrumb.stories.js +20 -0
  22. package/components/Breadcrumb/Breadcrumb.svelte +603 -0
  23. package/components/Breadcrumb/Breadcrumb.svelte.d.ts +16 -0
  24. package/components/Button/Button.scss +706 -0
  25. package/components/Button/Button.stories.d.ts +96 -27
  26. package/components/Button/Button.stories.js +99 -38
  27. package/components/Button/Button.svelte +1125 -10
  28. package/components/Button/Button.svelte.d.ts +43 -9
  29. package/components/Button/buttonConfig.d.ts +38 -0
  30. package/components/Button/buttonConfig.js +203 -0
  31. package/components/Card/Card.scss +39 -0
  32. package/components/Card/Card.stories.d.ts +59 -0
  33. package/components/Card/Card.stories.js +42 -0
  34. package/components/Card/Card.svelte +123 -0
  35. package/components/Card/Card.svelte.d.ts +51 -0
  36. package/components/CheckBox/Checkbox.scss +32 -0
  37. package/components/CheckBox/Checkbox.stories.d.ts +94 -0
  38. package/components/CheckBox/Checkbox.stories.js +51 -0
  39. package/components/CheckBox/Checkbox.svelte +614 -0
  40. package/components/CheckBox/Checkbox.svelte.d.ts +31 -0
  41. package/components/Dropdown/Dropdown.scss +72 -0
  42. package/components/Dropdown/Dropdown.stories.d.ts +29 -0
  43. package/components/Dropdown/Dropdown.stories.js +19 -0
  44. package/components/Dropdown/Dropdown.svelte +646 -0
  45. package/components/Dropdown/Dropdown.svelte.d.ts +17 -0
  46. package/components/Header/Header.scss +54 -0
  47. package/components/Header/Header.stories.d.ts +28 -0
  48. package/components/Header/Header.stories.js +28 -0
  49. package/components/Header/Header.svelte +667 -0
  50. package/components/Header/Header.svelte.d.ts +27 -0
  51. package/components/Icon/Icon.scss +0 -0
  52. package/components/Icon/Icon.stories.d.ts +21 -0
  53. package/components/Icon/Icon.stories.js +18 -0
  54. package/components/Icon/Icon.svelte +7 -0
  55. package/components/Icon/Icon.svelte.d.ts +23 -0
  56. package/components/ModalWindow/Modal.scss +28 -0
  57. package/components/ModalWindow/Modal.stories.d.ts +29 -0
  58. package/components/ModalWindow/Modal.stories.js +20 -0
  59. package/components/ModalWindow/Modal.svelte +641 -0
  60. package/components/ModalWindow/Modal.svelte.d.ts +23 -0
  61. package/components/Pagination/Pagination.scss +83 -0
  62. package/components/Pagination/Pagination.stories.d.ts +29 -0
  63. package/components/Pagination/Pagination.stories.js +18 -0
  64. package/components/Pagination/Pagination.svelte +702 -0
  65. package/components/Pagination/Pagination.svelte.d.ts +18 -0
  66. package/components/RadioButton/RadioButton.scss +28 -0
  67. package/components/RadioButton/RadioButton.stories.d.ts +35 -0
  68. package/components/RadioButton/RadioButton.stories.js +25 -0
  69. package/components/RadioButton/RadioButton.svelte +616 -0
  70. package/components/RadioButton/RadioButton.svelte.d.ts +41 -0
  71. package/components/Sidebar/Sidebar.scss +87 -0
  72. package/components/Sidebar/Sidebar.stories.d.ts +28 -0
  73. package/components/Sidebar/Sidebar.stories.js +27 -0
  74. package/components/Sidebar/Sidebar.svelte +144 -0
  75. package/components/Sidebar/Sidebar.svelte.d.ts +31 -0
  76. package/components/Switches/Switch.scss +12 -0
  77. package/components/Switches/Switch.stories.d.ts +87 -0
  78. package/components/Switches/Switch.stories.js +50 -0
  79. package/components/Switches/Switch.svelte +595 -0
  80. package/components/Switches/Switch.svelte.d.ts +29 -0
  81. package/components/Tab/Tab.scss +30 -0
  82. package/components/Tab/Tab.stories.d.ts +23 -0
  83. package/components/Tab/Tab.stories.js +19 -0
  84. package/components/Tab/Tab.svelte +615 -0
  85. package/components/Tab/Tab.svelte.d.ts +19 -0
  86. package/components/Table/Table.scss +38 -0
  87. package/components/Table/Table.stories.d.ts +28 -0
  88. package/components/Table/Table.stories.js +21 -0
  89. package/components/Table/Table.svelte +137 -0
  90. package/components/Table/Table.svelte.d.ts +35 -0
  91. package/components/Tooltip/Tooltip.scss +29 -0
  92. package/components/Tooltip/Tooltip.stories.d.ts +40 -0
  93. package/components/Tooltip/Tooltip.stories.js +24 -0
  94. package/components/Tooltip/Tooltip.svelte +622 -0
  95. package/components/Tooltip/Tooltip.svelte.d.ts +21 -0
  96. package/components/common.scss +789 -0
  97. package/components/textField/TextField.scss +34 -0
  98. package/components/textField/TextField.stories.d.ts +85 -0
  99. package/components/textField/TextField.stories.js +32 -0
  100. package/components/textField/TextField.svelte +607 -0
  101. package/components/textField/TextField.svelte.d.ts +33 -0
  102. package/components/variable.scss +134 -0
  103. package/index.d.ts +17 -1
  104. package/index.js +17 -1
  105. package/package.json +60 -1
@@ -0,0 +1,28 @@
1
+ @import './../variable.scss';
2
+ @import './../common.scss';
3
+
4
+ :global(.custom-radio .form-check-label) {
5
+ @extend %efs-normal;
6
+ color: $gray-800;
7
+ }
8
+
9
+ %common-radio {
10
+ font-family: $bodyFonts;
11
+ }
12
+
13
+ :global(.custom-radio .form-check-input) {
14
+ background-color: $white;
15
+ border-color: $gray-500;
16
+ padding: 8px;
17
+ @extend %common-radio;
18
+ }
19
+
20
+ :global(.custom-radio .form-check-input:checked) {
21
+ background-color: $secondary;
22
+ border-color: $secondary !important;
23
+ @extend %common-radio;
24
+ }
25
+
26
+ :global(.custom-radio .form-check-input:focus) {
27
+ box-shadow: 0 0 0 .25rem $box-shadow-green;
28
+ }
@@ -0,0 +1,35 @@
1
+ declare namespace _default {
2
+ export const title: string;
3
+ export { RadioButton as component };
4
+ export const tags: string[];
5
+ export namespace argTypes {
6
+ namespace options {
7
+ namespace control {
8
+ const type: string;
9
+ }
10
+ }
11
+ namespace size {
12
+ export namespace control_1 {
13
+ const type_1: string;
14
+ export { type_1 as type };
15
+ }
16
+ export { control_1 as control };
17
+ const options_1: string[];
18
+ export { options_1 as options };
19
+ }
20
+ }
21
+ }
22
+ export default _default;
23
+ export namespace Default {
24
+ namespace args {
25
+ const options_2: {
26
+ value: string;
27
+ label: string;
28
+ disabled: boolean;
29
+ }[];
30
+ export { options_2 as options };
31
+ const size_1: string;
32
+ export { size_1 as size };
33
+ }
34
+ }
35
+ import RadioButton from "./RadioButton.svelte";
@@ -0,0 +1,25 @@
1
+ import RadioButton from "./RadioButton.svelte";
2
+
3
+ export default {
4
+ title: 'FMS/RadioButton',
5
+ component: RadioButton,
6
+ tags: ['autodocs'],
7
+ argTypes: {
8
+ options: { control: { type: 'object' } },
9
+ size: {
10
+ control: { type: 'select'},
11
+ options: ['sm', 'md', 'lg']
12
+ }
13
+ }
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ options: [
19
+ { value: 'option1', label: 'apple', disabled: false },
20
+ { value: 'option2', label: 'orange', disabled: false },
21
+ { value: 'option3', label: 'mango', disabled: true }
22
+ ],
23
+ size: 'sm'
24
+ }
25
+ }
@@ -0,0 +1,616 @@
1
+ <script>
2
+ import { Input } from 'sveltestrap';
3
+ export let size = 'md';
4
+ // options is an array with object properties: value, label, disabled
5
+ export let options =[
6
+ { value:1, label:'Apple'},
7
+ { value:2, label:'orange'},
8
+ { value:3, label:'pinapple',disabled:true}
9
+ ]
10
+ let selected = options[0].value;
11
+ </script>
12
+
13
+ {#each options as { value, label, disabled }}
14
+ <Input
15
+ type="radio"
16
+ class={`custom-radio form-check-inline form-control-${size}`}
17
+ value={value}
18
+ bind:group={selected}
19
+ disabled={disabled}
20
+ label={label.charAt(0).toUpperCase() + label.slice(1)}
21
+ />
22
+ {/each}
23
+
24
+ <style>@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
25
+ @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");
26
+ @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");
27
+ @import url(https://fonts.googleapis.com/icon?family=Material+Icons);
28
+ @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");
29
+ @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");
30
+ :global(.custom-radio .form-check-label) {
31
+ font-family: Roboto;
32
+ font-size: 16px;
33
+ font-style: normal;
34
+ font-weight: 400;
35
+ line-height: 28px;
36
+ }
37
+ :global(.ebg-none) {
38
+ background-color: #ffffff !important;
39
+ }
40
+ :global(.ebg-white) {
41
+ background-color: #ffffff;
42
+ }
43
+ :global(.ebg-secondary, .eactive-secondary:active, .ehover-secondary:hover) {
44
+ background-color: #3AC82E !important;
45
+ }
46
+ :global(.ebg-secondaryDark, .eactive-secondaryDark:active, .ehover-secondaryDark:hover) {
47
+ background-color: #00A855;
48
+ }
49
+ :global(.ebg-secondaryLight, .eactive-secondaryLight:active, .ehover-secondaryLight:hover) {
50
+ background-color: #CBFFC7;
51
+ }
52
+ :global(.ebg-primary) {
53
+ background-color: #00AEE5;
54
+ }
55
+ :global(.ebg-primaryDark) {
56
+ background-color: #007FD8;
57
+ }
58
+ :global(.ebg-primaryLight) {
59
+ background-color: #CEF3FF;
60
+ }
61
+ :global(.ebg-danger) {
62
+ background-color: #FE4747;
63
+ }
64
+ :global(.ebg-dangerDark) {
65
+ background-color: #B02A37;
66
+ }
67
+ :global(.ebg-dangerLight) {
68
+ background-color: #FE4747;
69
+ }
70
+ :global(.ebg-warning) {
71
+ background-color: #FFBA3A;
72
+ }
73
+ :global(.ebg-warningDark) {
74
+ background-color: #997404;
75
+ color: #ffffff !important;
76
+ }
77
+ :global(.ebg-warningLight) {
78
+ background-color: #FFF3CD;
79
+ }
80
+ :global(.ebg-info) {
81
+ background-color: #0DCAF0;
82
+ }
83
+ :global(.ebg-infoDark) {
84
+ background-color: #087990;
85
+ }
86
+ :global(.ebg-infoLight) {
87
+ background-color: #9EEAF9;
88
+ }
89
+ :global(.ebg-success) {
90
+ background-color: #00A96B;
91
+ }
92
+ :global(.ebg-successDark) {
93
+ background-color: #146C43;
94
+ }
95
+ :global(.ebg-successLight) {
96
+ background-color: #D1E7DD;
97
+ }
98
+ :global(.ebg-gray100) {
99
+ background-color: #F8F9FA;
100
+ }
101
+ :global(.ebg-gray200) {
102
+ background-color: #E9ECEF;
103
+ }
104
+ :global(.ebg-gray300) {
105
+ background-color: #DEE2E6;
106
+ }
107
+ :global(.ebg-gray400) {
108
+ background-color: #CED4DA;
109
+ }
110
+ :global(.ebg-gray500) {
111
+ background-color: #adb5bd;
112
+ }
113
+ :global(.ebg-gray600) {
114
+ background-color: #6C757D;
115
+ }
116
+ :global(.ebg-gray700) {
117
+ background-color: #495057;
118
+ }
119
+ :global(.ebg-gray800) {
120
+ background-color: #343A40;
121
+ }
122
+ :global(.ebg-gray900) {
123
+ background-color: #212529;
124
+ }
125
+ :global(.ebg-green100) {
126
+ background-color: #D1E7DD;
127
+ }
128
+ :global(.ebg-green200) {
129
+ background-color: #A3CFBB;
130
+ }
131
+ :global(.ebg-green300) {
132
+ background-color: #75B798;
133
+ }
134
+ :global(.ebg-green400) {
135
+ background-color: #479F76;
136
+ }
137
+ :global(.ebg-green500) {
138
+ background-color: #198754;
139
+ }
140
+ :global(.ebg-green600) {
141
+ background-color: #146C43;
142
+ }
143
+ :global(.ebg-green700) {
144
+ background-color: #0F5132;
145
+ }
146
+ :global(.ebg-green800) {
147
+ background-color: #0A3622;
148
+ }
149
+ :global(.ebg-green900) {
150
+ background-color: #051B11;
151
+ }
152
+ :global(.ebg-red100) {
153
+ background-color: #F8D7DA;
154
+ }
155
+ :global(.ebg-red200) {
156
+ background-color: #F1AEB5;
157
+ }
158
+ :global(.ebg-red300) {
159
+ background-color: #EA868F;
160
+ }
161
+ :global(.ebg-red400) {
162
+ background-color: #E35D6A;
163
+ }
164
+ :global(.ebg-red500) {
165
+ background-color: #DC3545;
166
+ }
167
+ :global(.ebg-red600) {
168
+ background-color: #B02A37;
169
+ }
170
+ :global(.ebg-red700) {
171
+ background-color: #842029;
172
+ }
173
+ :global(.ebg-red800) {
174
+ background-color: #58151C;
175
+ }
176
+ :global(.ebg-red900) {
177
+ background-color: #2C0B0E;
178
+ }
179
+ :global(.ebg-yellow100) {
180
+ background-color: #FFF3CD;
181
+ }
182
+ :global(.ebg-yellow200) {
183
+ background-color: #FFE69C;
184
+ }
185
+ :global(.ebg-yellow300) {
186
+ background-color: #FFDA6A;
187
+ }
188
+ :global(.ebg-yellow400) {
189
+ background-color: #FFCD39;
190
+ }
191
+ :global(.ebg-yellow500) {
192
+ background-color: #FFC107;
193
+ }
194
+ :global(.ebg-yellow600) {
195
+ background-color: #CC9A06;
196
+ }
197
+ :global(.ebg-yellow700) {
198
+ background-color: #997404;
199
+ }
200
+ :global(.ebg-yellow800) {
201
+ background-color: #664D03;
202
+ }
203
+ :global(.ebg-yellow900) {
204
+ background-color: #332701;
205
+ }
206
+ :global(.ebg-cyan100) {
207
+ background-color: #CFF4FC;
208
+ }
209
+ :global(.ebg-cyan200) {
210
+ background-color: #9EEAF9;
211
+ }
212
+ :global(.ebg-cyan300) {
213
+ background-color: #6EDFF6;
214
+ }
215
+ :global(.ebg-cyan400) {
216
+ background-color: #3DD5F3;
217
+ }
218
+ :global(.ebg-cyan500) {
219
+ background-color: #0DCAF0;
220
+ }
221
+ :global(.ebg-cyan600) {
222
+ background-color: #0AA2C0;
223
+ }
224
+ :global(.ebg-cyan700) {
225
+ background-color: #087990;
226
+ }
227
+ :global(.ebg-cyan800) {
228
+ background-color: #055160;
229
+ }
230
+ :global(.ebg-cyan900) {
231
+ background-color: #032830;
232
+ }
233
+ .etext-white {
234
+ color: #ffffff;
235
+ }
236
+ :global(.etext-dark) {
237
+ color: #000000;
238
+ }
239
+ :global(.etext-secondary) {
240
+ color: #3AC82E;
241
+ }
242
+ :global(.etext-secondaryDark) {
243
+ color: #00A855;
244
+ }
245
+ :global(.etext-secondaryLight) {
246
+ color: #CBFFC7;
247
+ }
248
+ :global(.etext-primary) {
249
+ color: #00AEE5;
250
+ }
251
+ :global(.etext-primaryDark) {
252
+ color: #007FD8;
253
+ }
254
+ :global(.etext-primaryLight) {
255
+ color: #CEF3FF;
256
+ }
257
+ :global(.etext-danger) {
258
+ color: #FE4747;
259
+ }
260
+ :global(.etext-dangerDark) {
261
+ color: #B02A37;
262
+ }
263
+ :global(.etext-dangerLight) {
264
+ color: #FE4747;
265
+ }
266
+ :global(.etext-info) {
267
+ color: #0DCAF0;
268
+ }
269
+ :global(.etext-infoDark) {
270
+ color: #087990;
271
+ }
272
+ :global(.etext-infoLight) {
273
+ color: #9EEAF9;
274
+ }
275
+ :global(.etext-success) {
276
+ color: #00A96B;
277
+ }
278
+ :global(.etext-successDark) {
279
+ color: #146C43;
280
+ }
281
+ :global(.etext-successLight) {
282
+ color: #D1E7DD;
283
+ }
284
+ :global(.etext-warning) {
285
+ color: #FFBA3A;
286
+ }
287
+ :global(.etext-warningDark) {
288
+ color: #997404;
289
+ }
290
+ :global(.etext-warningLight) {
291
+ color: #FFF3CD;
292
+ }
293
+ :global(.etext-gray100) {
294
+ color: #F8F9FA;
295
+ }
296
+ :global(.etext-gray200) {
297
+ color: #E9ECEF;
298
+ }
299
+ :global(.etext-gray300) {
300
+ color: #DEE2E6;
301
+ }
302
+ :global(.etext-gray400) {
303
+ color: #CED4DA;
304
+ }
305
+ :global(.etext-gray500) {
306
+ color: #adb5bd;
307
+ }
308
+ :global(.etext-gray600) {
309
+ color: #6C757D;
310
+ }
311
+ :global(.etext-gray700) {
312
+ color: #495057;
313
+ }
314
+ :global(.etext-gray800) {
315
+ color: #343A40;
316
+ }
317
+ :global(.etext-gray900) {
318
+ color: #212529;
319
+ }
320
+ :global(.etext-green100) {
321
+ color: #D1E7DD;
322
+ }
323
+ :global(.etext-green200) {
324
+ color: #A3CFBB;
325
+ }
326
+ :global(.etext-green300) {
327
+ color: #75B798;
328
+ }
329
+ :global(.etext-green400) {
330
+ color: #479F76;
331
+ }
332
+ :global(.etext-green500) {
333
+ color: #198754;
334
+ }
335
+ :global(.etext-green600) {
336
+ color: #146C43;
337
+ }
338
+ :global(.etext-green700) {
339
+ color: #0F5132;
340
+ }
341
+ :global(.etext-green800) {
342
+ color: #0A3622;
343
+ }
344
+ :global(.etext-green900) {
345
+ color: #051B11;
346
+ }
347
+ :global(.etext-red100) {
348
+ color: #F8D7DA;
349
+ }
350
+ :global(.etext-red200) {
351
+ color: #F1AEB5;
352
+ }
353
+ :global(.etext-red300) {
354
+ color: #EA868F;
355
+ }
356
+ :global(.etext-red400) {
357
+ color: #E35D6A;
358
+ }
359
+ :global(.etext-red500) {
360
+ color: #DC3545;
361
+ }
362
+ :global(.etext-red600) {
363
+ color: #B02A37;
364
+ }
365
+ :global(.etext-red700) {
366
+ color: #842029;
367
+ }
368
+ :global(.etext-red800) {
369
+ color: #58151C;
370
+ }
371
+ :global(.etext-red900) {
372
+ color: #2C0B0E;
373
+ }
374
+ :global(.etext-yellow100) {
375
+ color: #FFF3CD;
376
+ }
377
+ :global(.etext-yellow200) {
378
+ color: #FFE69C;
379
+ }
380
+ :global(.etext-yellow300) {
381
+ color: #FFDA6A;
382
+ }
383
+ :global(.etext-yellow400) {
384
+ color: #FFCD39;
385
+ }
386
+ :global(.etext-yellow500) {
387
+ color: #FFC107;
388
+ }
389
+ :global(.etext-yellow600) {
390
+ color: #CC9A06;
391
+ }
392
+ :global(.etext-yellow700) {
393
+ color: #997404;
394
+ }
395
+ :global(.etext-yellow800) {
396
+ color: #664D03;
397
+ }
398
+ :global(.etext-yellow900) {
399
+ color: #332701;
400
+ }
401
+ :global(.etext-cyan100) {
402
+ color: #CFF4FC;
403
+ }
404
+ :global(.etext-cyan200) {
405
+ color: #9EEAF9;
406
+ }
407
+ :global(.etext-cyan300) {
408
+ color: #6EDFF6;
409
+ }
410
+ :global(.etext-cyan400) {
411
+ color: #3DD5F3;
412
+ }
413
+ :global(.etext-cyan500) {
414
+ color: #0DCAF0;
415
+ }
416
+ :global(.etext-cyan600) {
417
+ color: #0AA2C0;
418
+ }
419
+ :global(.etext-cyan700) {
420
+ color: #087990;
421
+ }
422
+ :global(.etext-cyan800) {
423
+ color: #055160;
424
+ }
425
+ :global(.etext-cyan900) {
426
+ color: #032830;
427
+ }
428
+ :global(.eoutline-secondary) {
429
+ outline: 1px solid #3AC82E;
430
+ }
431
+ :global(.eoutline-secondaryDark) {
432
+ outline: 1px solid #00A855;
433
+ }
434
+ :global(.eoutline-secondaryLight) {
435
+ outline: 1px solid #CBFFC7;
436
+ }
437
+ :global(.eoutline-primary) {
438
+ outline: 1px solid #00AEE5;
439
+ }
440
+ :global(.eoutline-primaryDark) {
441
+ outline: 1px solid #007FD8;
442
+ }
443
+ :global(.eoutline-primaryLight) {
444
+ outline: 1px solid #CEF3FF;
445
+ }
446
+ :global(.eoutline-danger) {
447
+ outline: 1px solid #FE4747;
448
+ }
449
+ :global(.eoutline-dangerDark) {
450
+ outline: 1px solid #B02A37;
451
+ }
452
+ :global(.eoutline-dangerLight) {
453
+ outline: 1px solid #FE4747;
454
+ }
455
+ :global(.eoutline-success) {
456
+ outline: 1px solid #00A96B;
457
+ }
458
+ :global(.eoutline-successDark) {
459
+ outline: 1px solid #146C43;
460
+ }
461
+ :global(.eoutline-successLight) {
462
+ outline: 1px solid #D1E7DD;
463
+ }
464
+ :global(.eoutline-info) {
465
+ outline: 1px solid #0DCAF0;
466
+ }
467
+ :global(.eoutline-infoDark) {
468
+ outline: 1px solid #087990;
469
+ }
470
+ :global(.eoutline-infoLight) {
471
+ outline: 1px solid #9EEAF9;
472
+ }
473
+ :global(.eoutline-warning) {
474
+ outline: 1px solid #FFBA3A;
475
+ }
476
+ :global(.eoutline-warningDark) {
477
+ outline: 1px solid #997404;
478
+ }
479
+ :global(.eoutline-warningLight) {
480
+ outline: 1px solid #FFF3CD;
481
+ }
482
+ :global(.eradius) {
483
+ border-radius: 4px;
484
+ }
485
+ :global(.eradius-low) {
486
+ border-radius: 8px;
487
+ }
488
+ :global(.eradius-medium) {
489
+ border-radius: 16px;
490
+ }
491
+ :global(.eradius-full) {
492
+ border-radius: 50%;
493
+ }
494
+ .eshadow-non {
495
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
496
+ }
497
+ .eshadow-low {
498
+ box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
499
+ }
500
+ .eshadow-medium {
501
+ box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
502
+ }
503
+ .eshadow-high {
504
+ box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.1);
505
+ }
506
+ :global(.efs-small) {
507
+ font-family: Roboto;
508
+ font-size: 12px;
509
+ font-style: normal;
510
+ font-weight: 400;
511
+ line-height: normal;
512
+ }
513
+ :global(.efs-normal) {
514
+ font-family: Roboto;
515
+ font-size: 16px;
516
+ font-style: normal;
517
+ font-weight: 400;
518
+ line-height: 28px;
519
+ }
520
+ :global(.efs-strong) {
521
+ font-family: Roboto;
522
+ font-size: 17px;
523
+ font-style: normal;
524
+ font-weight: 700;
525
+ line-height: 28px;
526
+ }
527
+ :global(.efs-h6) {
528
+ font-family: Roboto;
529
+ font-size: 16px;
530
+ font-style: normal;
531
+ font-weight: 700;
532
+ line-height: normal;
533
+ }
534
+ :global(.efs-h5) {
535
+ font-family: Roboto;
536
+ font-size: 20px;
537
+ font-style: normal;
538
+ font-weight: 700;
539
+ line-height: normal;
540
+ }
541
+ :global(.efs-h4) {
542
+ font-family: Roboto;
543
+ font-size: 24px;
544
+ font-style: normal;
545
+ font-weight: 700;
546
+ line-height: normal;
547
+ }
548
+ :global(.efs-h3) {
549
+ font-family: Roboto;
550
+ font-size: 28px;
551
+ font-style: normal;
552
+ font-weight: 700;
553
+ line-height: normal;
554
+ }
555
+ :global(.efs-h2) {
556
+ font-family: Roboto;
557
+ font-size: 32px;
558
+ font-style: normal;
559
+ font-weight: 700;
560
+ line-height: normal;
561
+ }
562
+ :global(.efs-h1) {
563
+ font-family: Roboto;
564
+ font-size: 40px;
565
+ font-style: normal;
566
+ font-weight: 700;
567
+ line-height: normal;
568
+ letter-spacing: -0.8px;
569
+ }
570
+ :global(.efs-h4D) {
571
+ font-family: Merriweather;
572
+ font-size: 52px;
573
+ font-style: normal;
574
+ font-weight: 400;
575
+ line-height: normal;
576
+ }
577
+ :global(.efs-h3D) {
578
+ font-family: Merriweather;
579
+ font-size: 58px;
580
+ font-style: normal;
581
+ font-weight: 400;
582
+ line-height: normal;
583
+ }
584
+ :global(.efs-h2D) {
585
+ font-family: Merriweather;
586
+ font-size: 64px;
587
+ font-style: normal;
588
+ font-weight: 400;
589
+ line-height: normal;
590
+ letter-spacing: -1.28px;
591
+ }
592
+ :global(.efs-h1D) {
593
+ font-family: Merriweather;
594
+ font-size: 72px;
595
+ font-style: normal;
596
+ font-weight: 400;
597
+ line-height: normal;
598
+ }
599
+ :global(.custom-radio .form-check-label) {
600
+ color: #343A40;
601
+ }
602
+ :global(.custom-radio .form-check-input:checked), :global(.custom-radio .form-check-input) {
603
+ font-family: Roboto;
604
+ }
605
+ :global(.custom-radio .form-check-input) {
606
+ background-color: #ffffff;
607
+ border-color: #adb5bd;
608
+ padding: 8px;
609
+ }
610
+ :global(.custom-radio .form-check-input:checked) {
611
+ background-color: #3AC82E;
612
+ border-color: #3AC82E !important;
613
+ }
614
+ :global(.custom-radio .form-check-input:focus) {
615
+ box-shadow: 0 0 0 0.25rem rgba(11, 235, 49, 0.25);
616
+ }</style>