@enki-tek/fms-web-components 0.0.40 → 0.0.41

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