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