@enki-tek/fms-web-components 0.0.37 → 0.0.39

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