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

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