@enki-tek/fms-web-components 0.0.2 → 0.0.4

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