UNPKG

55.6 kBJavaScriptView Raw
1export const manifest = {
2 name: 'card',
3 slots: [
4 {
5 description: 'Slot for default card content',
6 name: 'default'
7 },
8 {
9 description: 'Slot for card header content',
10 name: 'header'
11 },
12 {
13 description: 'Slot for card footer content',
14 name: 'footer'
15 },
16 {
17 description: 'Slot for card image',
18 name: 'image'
19 }
20 ],
21 props: [
22 {
23 name: 'color',
24 type: [
25 'primary',
26 'success',
27 'light',
28 'dark',
29 'info',
30 'success',
31 'warning',
32 'danger'
33 ],
34 default: 'light',
35 description: 'The color variant of the card'
36 },
37 {
38 name: 'size',
39 type: [
40 'sm',
41 'md',
42 'lg'
43 ],
44 default: 'md',
45 description: 'The size variant of the card'
46 }
47 ],
48 css: {
49 selector: '.card',
50 defaults: {
51 size: 'md',
52 color: 'light'
53 },
54 variables: [
55 {
56 name: 'background',
57 type: 'color',
58 value: 'color(\'white\')',
59 description: 'The background of the card component'
60 },
61 {
62 name: 'border-top-color',
63 type: 'color',
64 value: 'color(\'light\')',
65 description: 'The border top color of the card component'
66 },
67 {
68 name: 'border-right-color',
69 type: 'color',
70 value: 'color(\'light\')',
71 description: 'The border right color of the card component'
72 },
73 {
74 name: 'border-bottom-color',
75 type: 'color',
76 value: 'color(\'light\')',
77 description: 'The border bottom color of the card component'
78 },
79 {
80 name: 'border-left-color',
81 type: 'color',
82 value: 'color(\'light\')',
83 description: 'The border left color of the card component'
84 },
85 {
86 name: 'border-color',
87 type: '',
88 value: 'var(----border-top-color) var(----border-right-color) var(----border-bottom-color) var(----border-left-color)',
89 description: 'The border color of the card component'
90 },
91 {
92 name: 'border-style',
93 type: '',
94 value: 'var(--border-style)',
95 description: 'The border style of the card component'
96 },
97 {
98 name: 'border-top-width',
99 type: '',
100 value: 'var(--border-top-width)',
101 description: 'The border top width of the card component'
102 },
103 {
104 name: 'border-right-width',
105 type: '',
106 value: 'var(--border-right-width)',
107 description: 'The border right width of the card component'
108 },
109 {
110 name: 'border-bottom-width',
111 type: '',
112 value: 'var(--border-bottom-width)',
113 description: 'The border bottom width of the card component'
114 },
115 {
116 name: 'border-left-width',
117 type: '',
118 value: 'var(--border-left-width)',
119 description: 'The border left width of the card component'
120 },
121 {
122 name: 'border-width',
123 type: '',
124 value: 'var(----border-top-width) var(----border-right-width) var(----border-bottom-width) var(----border-left-width)',
125 description: 'The border width of the card component'
126 },
127 {
128 name: 'border-top-left-radius',
129 type: 'size',
130 value: 'var(--border-top-left-radius)',
131 description: 'The border top left radius of the card component'
132 },
133 {
134 name: 'border-top-right-radius',
135 type: 'size',
136 value: 'var(--border-top-right-radius)',
137 description: 'The border top right radius of the card component'
138 },
139 {
140 name: 'border-bottom-right-radius',
141 type: 'size',
142 value: 'var(--border-bottom-right-radius)',
143 description: 'The border bottom right radius of the card component'
144 },
145 {
146 name: 'border-bottom-left-radius',
147 type: 'size',
148 value: 'var(--border-bottom-left-radius)',
149 description: 'The border bottom left radius of the card component'
150 },
151 {
152 name: 'border-radius',
153 type: '',
154 value: 'var(----border-top-left-radius) var(----border-top-right-radius) var(----border-bottom-right-radius) var(----border-bottom-left-radius)',
155 description: 'The border radius of the card component'
156 },
157 {
158 name: 'box-shadow-offset-x',
159 type: '',
160 value: 'var(--box-shadow-offset-x)',
161 description: 'The box shadow horizontal offset of the card component'
162 },
163 {
164 name: 'box-shadow-offset-y',
165 type: '',
166 value: 'var(--box-shadow-offset-y)',
167 description: 'The box shadow vertical offset of the card component'
168 },
169 {
170 name: 'box-shadow-blur-radius',
171 type: '',
172 value: 'var(--box-shadow-blur-radius)',
173 description: 'The box shadow blur radius of the card component'
174 },
175 {
176 name: 'box-shadow-spread-radius',
177 type: '',
178 value: 'var(--box-shadow-spread-radius)',
179 description: 'The box shadow spread radius of the card component'
180 },
181 {
182 name: 'box-shadow-color',
183 type: '',
184 value: 'var(--box-shadow-color)',
185 description: 'The box shadow spread radius of the card component'
186 },
187 {
188 name: 'box-shadow',
189 type: '',
190 value: 'var(----box-shadow-offset-x) var(----box-shadow-offset-y) var(----box-shadow-blur-radius) var(----box-shadow-spread-radius) var(----box-shadow-color)',
191 description: 'The box shadow of the card component'
192 },
193 {
194 name: 'color',
195 type: 'color',
196 value: 'contrast-color($color-light)',
197 description: 'The color of the card component'
198 },
199 {
200 name: 'font-size',
201 type: 'size',
202 value: 'font-size()',
203 description: 'The font size of the card component'
204 },
205 {
206 name: 'font-weight',
207 type: '',
208 value: 'font-weight(\'normal\')',
209 description: 'The font weight of the card component'
210 },
211 {
212 name: 'line-height',
213 type: '',
214 value: 'var(--line-height)',
215 description: 'The line height of the card component'
216 },
217 {
218 name: 'padding-top',
219 type: 'size',
220 value: 'var(--padding-top)',
221 description: 'The padding top of the card component'
222 },
223 {
224 name: 'padding-right',
225 type: 'size',
226 value: 'var(--padding-right)',
227 description: 'The padding right of the card component'
228 },
229 {
230 name: 'padding-bottom',
231 type: 'size',
232 value: 'var(--padding-bottom)',
233 description: 'The padding bottom of the card component'
234 },
235 {
236 name: 'padding-left',
237 type: 'size',
238 value: 'var(--padding-left)',
239 description: 'The padding left of the card component'
240 },
241 {
242 name: 'padding',
243 type: '',
244 value: 'var(----padding-top) var(----padding-right) var(----padding-bottom) var(----padding-left)',
245 description: 'The padding of the card component'
246 },
247 {
248 name: 'header--background',
249 type: 'color',
250 value: 'color(\'light-25\')',
251 description: 'The background of the modal component header'
252 },
253 {
254 name: 'header--border-color',
255 type: '',
256 value: 'var(----border-color)',
257 description: 'The border color of the modal component header'
258 },
259 {
260 name: 'header--border-style',
261 type: '',
262 value: 'var(----border-style)',
263 description: 'The border style of the modal component header'
264 },
265 {
266 name: 'header--border-top-width',
267 type: '',
268 value: 'var(----border-top-width)',
269 description: 'The border top width of the modal component header'
270 },
271 {
272 name: 'header--border-right-width',
273 type: '',
274 value: 'var(----border-right-width)',
275 description: 'The border right width of the modal component header'
276 },
277 {
278 name: 'header--border-bottom-width',
279 type: '',
280 value: 'var(----border-bottom-width)',
281 description: 'The border bottom width of the modal component header'
282 },
283 {
284 name: 'header--border-left-width',
285 type: '',
286 value: 'var(----border-left-width)',
287 description: 'The border left width of the modal component header'
288 },
289 {
290 name: 'header--border-width',
291 type: '',
292 value: 'var(----header--border-top-width) var(----header--border-right-width) var(----header--border-bottom-width) var(----header--border-left-width)',
293 description: 'The border width of the modal component header'
294 },
295 {
296 name: 'header--color',
297 type: '',
298 value: 'var(----color)',
299 description: 'The color of the modal component header'
300 },
301 {
302 name: 'header--padding-top',
303 type: '',
304 value: 'var(----padding-top)',
305 description: 'The padding top of the modal component header'
306 },
307 {
308 name: 'header--padding-right',
309 type: '',
310 value: 'var(----padding-right)',
311 description: 'The padding right of the modal component header'
312 },
313 {
314 name: 'header--padding-bottom',
315 type: 'size',
316 value: 'var(----padding-bottom)',
317 description: 'The padding bottom of the modal component header'
318 },
319 {
320 name: 'header--padding-left',
321 type: 'size',
322 value: 'var(----padding-left)',
323 description: 'The padding left of the modal component header'
324 },
325 {
326 name: 'header--padding',
327 type: '',
328 value: 'var(----header--padding-top) var(----header--padding-right) var(----header--padding-bottom) var(----header--padding-left)',
329 description: 'The padding of the modal component header'
330 },
331 {
332 name: 'body--background',
333 type: '',
334 value: 'var(----background)',
335 description: 'The background of the modal component body'
336 },
337 {
338 name: 'body--border-color',
339 type: '',
340 value: 'var(----border-color)',
341 description: 'The border color of the modal component body'
342 },
343 {
344 name: 'body--border-style',
345 type: '',
346 value: 'var(----border-style)',
347 description: 'The border style of the modal component body'
348 },
349 {
350 name: 'body--border-top-width',
351 type: '',
352 value: 'var(----border-top-width)',
353 description: 'The border top width of the modal component body'
354 },
355 {
356 name: 'body--border-right-width',
357 type: '',
358 value: 'var(----border-right-width)',
359 description: 'The border right width of the modal component body'
360 },
361 {
362 name: 'body--border-bottom-width',
363 type: '',
364 value: 'var(----border-bottom-width)',
365 description: 'The border bottom width of the modal component body'
366 },
367 {
368 name: 'body--border-left-width',
369 type: '',
370 value: 'var(----border-left-width)',
371 description: 'The border left width of the modal component body'
372 },
373 {
374 name: 'body--border-width',
375 type: '',
376 value: 'var(----body--border-top-width) var(----body--border-right-width) var(----body--border-bottom-width) var(----body--border-left-width)',
377 description: 'The border width of the modal component body'
378 },
379 {
380 name: 'body--color',
381 type: '',
382 value: 'var(----color)',
383 description: 'The color of the modal component body'
384 },
385 {
386 name: 'body--padding-top',
387 type: '',
388 value: 'var(----padding-top)',
389 description: 'The padding top of the modal component body'
390 },
391 {
392 name: 'body--padding-right',
393 type: '',
394 value: 'var(----padding-right)',
395 description: 'The padding right of the modal component body'
396 },
397 {
398 name: 'body--padding-bottom',
399 type: 'size',
400 value: 'var(----padding-bottom)',
401 description: 'The padding bottom of the modal component body'
402 },
403 {
404 name: 'body--padding-left',
405 type: 'size',
406 value: 'var(----padding-left)',
407 description: 'The padding left of the modal component body'
408 },
409 {
410 name: 'body--padding',
411 type: '',
412 value: 'var(----body--padding-top) var(----body--padding-right) var(----body--padding-bottom) var(----body--padding-left)',
413 description: 'The padding of the modal component body'
414 },
415 {
416 name: 'footer--background',
417 type: 'color',
418 value: 'color(\'light-25\')',
419 description: 'The background of the modal component footer'
420 },
421 {
422 name: 'footer--border-color',
423 type: '',
424 value: 'var(----border-color)',
425 description: 'The border color of the modal component footer'
426 },
427 {
428 name: 'footer--border-style',
429 type: '',
430 value: 'var(----border-style)',
431 description: 'The border style of the modal component footer'
432 },
433 {
434 name: 'footer--border-top-width',
435 type: '',
436 value: 'var(----border-top-width)',
437 description: 'The border top width of the modal component footer'
438 },
439 {
440 name: 'footer--border-right-width',
441 type: '',
442 value: 'var(----border-right-width)',
443 description: 'The border right width of the modal component footer'
444 },
445 {
446 name: 'footer--border-bottom-width',
447 type: '',
448 value: 'var(----border-bottom-width)',
449 description: 'The border bottom width of the modal component footer'
450 },
451 {
452 name: 'footer--border-left-width',
453 type: '',
454 value: 'var(----border-left-width)',
455 description: 'The border left width of the modal component footer'
456 },
457 {
458 name: 'footer--border-width',
459 type: '',
460 value: 'var(----footer--border-top-width) var(----footer--border-right-width) var(----footer--border-bottom-width) var(----footer--border-left-width)',
461 description: 'The border width of the modal component footer'
462 },
463 {
464 name: 'footer--color',
465 type: '',
466 value: 'var(----color)',
467 description: 'The color of the modal component footer'
468 },
469 {
470 name: 'footer--padding-top',
471 type: '',
472 value: 'var(----padding-top)',
473 description: 'The padding top of the modal component footer'
474 },
475 {
476 name: 'footer--padding-right',
477 type: '',
478 value: 'var(----padding-right)',
479 description: 'The padding right of the modal component footer'
480 },
481 {
482 name: 'footer--padding-bottom',
483 type: 'size',
484 value: 'var(----padding-bottom)',
485 description: 'The padding bottom of the modal component footer'
486 },
487 {
488 name: 'footer--padding-left',
489 type: 'size',
490 value: 'var(----padding-left)',
491 description: 'The padding left of the modal component footer'
492 },
493 {
494 name: 'footer--padding',
495 type: '',
496 value: 'var(----footer--padding-top) var(----footer--padding-right) var(----footer--padding-bottom) var(----footer--padding-left)',
497 description: 'The padding of the modal component footer'
498 }
499 ],
500 variants: [
501 {
502 name: 'primary',
503 type: 'variant',
504 description: 'Variables for the primary color variant',
505 variables: [
506 {
507 name: 'background',
508 type: '',
509 value: 'color(\'primary\')',
510 description: 'The background of the card component, for the primary color variant'
511 },
512 {
513 name: 'border-top-color',
514 type: '',
515 value: 'color(\'primary-60\')',
516 description: 'The border top color of the card component, for the primary color variant'
517 },
518 {
519 name: 'border-right-color',
520 type: '',
521 value: 'color(\'primary-60\')',
522 description: 'The border right color of the card component, for the primary color variant'
523 },
524 {
525 name: 'border-bottom-color',
526 type: '',
527 value: 'color(\'primary-60\')',
528 description: 'The border bottom color of the card component, for the primary color variant'
529 },
530 {
531 name: 'border-left-color',
532 type: '',
533 value: 'color(\'primary-60\')',
534 description: 'The border left color of the card component, for the primary color variant'
535 },
536 {
537 name: 'color',
538 type: '',
539 value: 'contrast-color($color-primary)',
540 description: 'The color of the card component, for the primary color variant'
541 },
542 {
543 name: 'header--background',
544 type: '',
545 value: 'color(\'primary-55\')',
546 description: 'The background of the modal component header, for the primary color variant'
547 },
548 {
549 name: 'footer--background',
550 type: '',
551 value: 'color(\'primary-55\')',
552 description: 'The background of the modal component footer, for the primary color variant'
553 }
554 ]
555 },
556 {
557 name: 'secondary',
558 type: 'variant',
559 description: 'Variables for the secondary color variant',
560 variables: [
561 {
562 name: 'background',
563 type: '',
564 value: 'color(\'secondary\')',
565 description: 'The background of the card component, for the secondary color variant'
566 },
567 {
568 name: 'border-top-color',
569 type: '',
570 value: 'color(\'secondary-60\')',
571 description: 'The border top color of the card component, for the secondary color variant'
572 },
573 {
574 name: 'border-right-color',
575 type: '',
576 value: 'color(\'secondary-60\')',
577 description: 'The border right color of the card component, for the secondary color variant'
578 },
579 {
580 name: 'border-bottom-color',
581 type: '',
582 value: 'color(\'secondary-60\')',
583 description: 'The border bottom color of the card component, for the secondary color variant'
584 },
585 {
586 name: 'border-left-color',
587 type: '',
588 value: 'color(\'secondary-60\')',
589 description: 'The border left color of the card component, for the secondary color variant'
590 },
591 {
592 name: 'color',
593 type: '',
594 value: 'contrast-color($color-secondary)',
595 description: 'The color of the card component, for the secondary color variant'
596 },
597 {
598 name: 'header--background',
599 type: '',
600 value: 'color(\'secondary-55\')',
601 description: 'The background of the modal component header, for the secondary color variant'
602 },
603 {
604 name: 'footer--background',
605 type: '',
606 value: 'color(\'secondary-55\')',
607 description: 'The background of the modal component footer, for the secondary color variant'
608 }
609 ]
610 },
611 {
612 name: 'light',
613 type: 'variant',
614 description: 'Variables for the light color variant',
615 variables: [
616 {
617 name: 'background',
618 type: '',
619 value: 'color(\'white\')',
620 description: 'The background of the card component, for the light color variant'
621 },
622 {
623 name: 'border-top-color',
624 type: '',
625 value: 'color(\'light\')',
626 description: 'The border top color of the card component, for the light color variant'
627 },
628 {
629 name: 'border-right-color',
630 type: '',
631 value: 'color(\'light\')',
632 description: 'The border right color of the card component, for the light color variant'
633 },
634 {
635 name: 'border-bottom-color',
636 type: '',
637 value: 'color(\'light\')',
638 description: 'The border bottom color of the card component, for the light color variant'
639 },
640 {
641 name: 'border-left-color',
642 type: '',
643 value: 'color(\'light\')',
644 description: 'The border left color of the card component, for the light color variant'
645 },
646 {
647 name: 'color',
648 type: '',
649 value: 'contrast-color($color-light)',
650 description: 'The color of the card component, for the light color variant'
651 },
652 {
653 name: 'header--background',
654 type: '',
655 value: 'color(\'light-25\')',
656 description: 'The background of the modal component header, for the light color variant'
657 },
658 {
659 name: 'footer--background',
660 type: '',
661 value: 'color(\'light-25\')',
662 description: 'The background of the modal component footer, for the light color variant'
663 }
664 ]
665 },
666 {
667 name: 'dark',
668 type: 'variant',
669 description: 'Variables for the dark color variant',
670 variables: [
671 {
672 name: 'background',
673 type: '',
674 value: 'color(\'dark\')',
675 description: 'The background of the card component, for the dark color variant'
676 },
677 {
678 name: 'border-top-color',
679 type: '',
680 value: 'color(\'dark-60\')',
681 description: 'The border top color of the card component, for the dark color variant'
682 },
683 {
684 name: 'border-right-color',
685 type: '',
686 value: 'color(\'dark-60\')',
687 description: 'The border right color of the card component, for the dark color variant'
688 },
689 {
690 name: 'border-bottom-color',
691 type: '',
692 value: 'color(\'dark-60\')',
693 description: 'The border bottom color of the card component, for the dark color variant'
694 },
695 {
696 name: 'border-left-color',
697 type: '',
698 value: 'color(\'dark-60\')',
699 description: 'The border left color of the card component, for the dark color variant'
700 },
701 {
702 name: 'color',
703 type: '',
704 value: 'contrast-color($color-dark)',
705 description: 'The color of the card component, for the dark color variant'
706 },
707 {
708 name: 'header--background',
709 type: '',
710 value: 'color(\'dark-55\')',
711 description: 'The background of the modal component header, for the dark color variant'
712 },
713 {
714 name: 'footer--background',
715 type: '',
716 value: 'color(\'dark-55\')',
717 description: 'The background of the modal component footer, for the dark color variant'
718 }
719 ]
720 },
721 {
722 name: 'info',
723 type: 'variant',
724 description: 'Variables for the info color variant',
725 variables: [
726 {
727 name: 'background',
728 type: '',
729 value: 'color(\'info\')',
730 description: 'The background of the card component, for the info color variant'
731 },
732 {
733 name: 'border-top-color',
734 type: '',
735 value: 'color(\'info-60\')',
736 description: 'The border top color of the card component, for the info color variant'
737 },
738 {
739 name: 'border-right-color',
740 type: '',
741 value: 'color(\'info-60\')',
742 description: 'The border right color of the card component, for the info color variant'
743 },
744 {
745 name: 'border-bottom-color',
746 type: '',
747 value: 'color(\'info-60\')',
748 description: 'The border bottom color of the card component, for the info color variant'
749 },
750 {
751 name: 'border-left-color',
752 type: '',
753 value: 'color(\'info-60\')',
754 description: 'The border left color of the card component, for the info color variant'
755 },
756 {
757 name: 'color',
758 type: '',
759 value: 'contrast-color($color-info)',
760 description: 'The color of the card component, for the info color variant'
761 },
762 {
763 name: 'header--background',
764 type: '',
765 value: 'color(\'info-55\')',
766 description: 'The background of the modal component header, for the info color variant'
767 },
768 {
769 name: 'footer--background',
770 type: '',
771 value: 'color(\'info-55\')',
772 description: 'The background of the modal component footer, for the info color variant'
773 }
774 ]
775 },
776 {
777 name: 'success',
778 type: 'variant',
779 description: 'Variables for the success color variant',
780 variables: [
781 {
782 name: 'background',
783 type: '',
784 value: 'color(\'success\')',
785 description: 'The background of the card component, for the success color variant'
786 },
787 {
788 name: 'border-top-color',
789 type: '',
790 value: 'color(\'success-60\')',
791 description: 'The border top color of the card component, for the success color variant'
792 },
793 {
794 name: 'border-right-color',
795 type: '',
796 value: 'color(\'success-60\')',
797 description: 'The border right color of the card component, for the success color variant'
798 },
799 {
800 name: 'border-bottom-color',
801 type: '',
802 value: 'color(\'success-60\')',
803 description: 'The border bottom color of the card component, for the success color variant'
804 },
805 {
806 name: 'border-left-color',
807 type: '',
808 value: 'color(\'success-60\')',
809 description: 'The border left color of the card component, for the success color variant'
810 },
811 {
812 name: 'color',
813 type: '',
814 value: 'contrast-color($color-success)',
815 description: 'The color of the card component, for the success color variant'
816 },
817 {
818 name: 'header--background',
819 type: '',
820 value: 'color(\'success-55\')',
821 description: 'The background of the modal component header, for the success color variant'
822 },
823 {
824 name: 'footer--background',
825 type: '',
826 value: 'color(\'success-55\')',
827 description: 'The background of the modal component footer, for the success color variant'
828 }
829 ]
830 },
831 {
832 name: 'warning',
833 type: 'variant',
834 description: 'Variables for the warning color variant',
835 variables: [
836 {
837 name: 'background',
838 type: '',
839 value: 'color(\'warning\')',
840 description: 'The background of the card component, for the warning color variant'
841 },
842 {
843 name: 'border-top-color',
844 type: '',
845 value: 'color(\'warning-60\')',
846 description: 'The border top color of the card component, for the warning color variant'
847 },
848 {
849 name: 'border-right-color',
850 type: '',
851 value: 'color(\'warning-60\')',
852 description: 'The border right color of the card component, for the warning color variant'
853 },
854 {
855 name: 'border-bottom-color',
856 type: '',
857 value: 'color(\'warning-60\')',
858 description: 'The border bottom color of the card component, for the warning color variant'
859 },
860 {
861 name: 'border-left-color',
862 type: '',
863 value: 'color(\'warning-60\')',
864 description: 'The border left color of the card component, for the warning color variant'
865 },
866 {
867 name: 'color',
868 type: '',
869 value: 'contrast-color($color-warning)',
870 description: 'The color of the card component, for the warning color variant'
871 },
872 {
873 name: 'header--background',
874 type: '',
875 value: 'color(\'warning-55\')',
876 description: 'The background of the modal component header, for the warning color variant'
877 },
878 {
879 name: 'footer--background',
880 type: '',
881 value: 'color(\'warning-55\')',
882 description: 'The background of the modal component footer, for the warning color variant'
883 }
884 ]
885 },
886 {
887 name: 'danger',
888 type: 'variant',
889 description: 'Variables for the danger color variant',
890 variables: [
891 {
892 name: 'background',
893 type: '',
894 value: 'color(\'danger\')',
895 description: 'The background of the card component, for the danger color variant'
896 },
897 {
898 name: 'border-top-color',
899 type: '',
900 value: 'color(\'danger-60\')',
901 description: 'The border top color of the card component, for the danger color variant'
902 },
903 {
904 name: 'border-right-color',
905 type: '',
906 value: 'color(\'danger-60\')',
907 description: 'The border right color of the card component, for the danger color variant'
908 },
909 {
910 name: 'border-bottom-color',
911 type: '',
912 value: 'color(\'danger-60\')',
913 description: 'The border bottom color of the card component, for the danger color variant'
914 },
915 {
916 name: 'border-left-color',
917 type: '',
918 value: 'color(\'danger-60\')',
919 description: 'The border left color of the card component, for the danger color variant'
920 },
921 {
922 name: 'color',
923 type: '',
924 value: 'contrast-color($color-danger)',
925 description: 'The color of the card component, for the danger color variant'
926 },
927 {
928 name: 'header--background',
929 type: '',
930 value: 'color(\'danger-55\')',
931 description: 'The background of the modal component header, for the danger color variant'
932 },
933 {
934 name: 'footer--background',
935 type: '',
936 value: 'color(\'danger-55\')',
937 description: 'The background of the modal component footer, for the danger color variant'
938 }
939 ]
940 },
941 {
942 name: 'sm',
943 type: 'variant',
944 description: 'Variables for the sm size variant',
945 variables: [
946 {
947 name: 'border-top-left-radius',
948 type: '',
949 value: 'calc(#{var(--border-top-left-radius)} * #{size-multiplier(\'sm\')})',
950 description: 'The border top left radius of the card component, for the sm size variant'
951 },
952 {
953 name: 'border-top-right-radius',
954 type: '',
955 value: 'calc(#{var(--border-top-right-radius)} * #{size-multiplier(\'sm\')})',
956 description: 'The border top right radius of the card component, for the sm size variant'
957 },
958 {
959 name: 'border-bottom-right-radius',
960 type: '',
961 value: 'calc(#{var(--border-bottom-right-radius)} * #{size-multiplier(\'sm\')})',
962 description: 'The border bottom right radius of the card component, for the sm size variant'
963 },
964 {
965 name: 'border-bottom-left-radius',
966 type: '',
967 value: 'calc(#{var(--border-bottom-left-radius)} * #{size-multiplier(\'sm\')})',
968 description: 'The border bottom left radius of the card component, for the sm size variant'
969 },
970 {
971 name: 'font-size',
972 type: '',
973 value: 'calc(#{font-size()} * #{size-multiplier(\'sm\')})',
974 description: 'The font size of the card component, for the sm size variant'
975 },
976 {
977 name: 'padding-top',
978 type: '',
979 value: 'calc(#{var(--padding-top)} * #{size-multiplier(\'sm\')})',
980 description: 'The padding top of the card component, for the sm size variant'
981 },
982 {
983 name: 'padding-right',
984 type: '',
985 value: 'calc(#{var(--padding-right)} * #{size-multiplier(\'sm\')})',
986 description: 'The padding right of the card component, for the sm size variant'
987 },
988 {
989 name: 'padding-bottom',
990 type: '',
991 value: 'calc(#{var(--padding-bottom)} * #{size-multiplier(\'sm\')})',
992 description: 'The padding bottom of the card component, for the sm size variant'
993 },
994 {
995 name: 'padding-left',
996 type: '',
997 value: 'calc(#{var(--padding-left)} * #{size-multiplier(\'sm\')})',
998 description: 'The padding left of the card component, for the sm size variant'
999 },
1000 {
1001 name: 'header--padding-bottom',
1002 type: '',
1003 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'sm\')})',
1004 description: 'The padding bottom of the modal component header, for the sm size variant'
1005 },
1006 {
1007 name: 'header--padding-left',
1008 type: '',
1009 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'sm\')})',
1010 description: 'The padding left of the modal component header, for the sm size variant'
1011 },
1012 {
1013 name: 'body--padding-bottom',
1014 type: '',
1015 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'sm\')})',
1016 description: 'The padding bottom of the modal component body, for the sm size variant'
1017 },
1018 {
1019 name: 'body--padding-left',
1020 type: '',
1021 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'sm\')})',
1022 description: 'The padding left of the modal component body, for the sm size variant'
1023 },
1024 {
1025 name: 'footer--padding-bottom',
1026 type: '',
1027 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'sm\')})',
1028 description: 'The padding bottom of the modal component footer, for the sm size variant'
1029 },
1030 {
1031 name: 'footer--padding-left',
1032 type: '',
1033 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'sm\')})',
1034 description: 'The padding left of the modal component footer, for the sm size variant'
1035 }
1036 ]
1037 },
1038 {
1039 name: 'md',
1040 type: 'variant',
1041 description: 'Variables for the md size variant',
1042 variables: [
1043 {
1044 name: 'border-top-left-radius',
1045 type: '',
1046 value: 'calc(#{var(--border-top-left-radius)} * #{size-multiplier(\'md\')})',
1047 description: 'The border top left radius of the card component, for the md size variant'
1048 },
1049 {
1050 name: 'border-top-right-radius',
1051 type: '',
1052 value: 'calc(#{var(--border-top-right-radius)} * #{size-multiplier(\'md\')})',
1053 description: 'The border top right radius of the card component, for the md size variant'
1054 },
1055 {
1056 name: 'border-bottom-right-radius',
1057 type: '',
1058 value: 'calc(#{var(--border-bottom-right-radius)} * #{size-multiplier(\'md\')})',
1059 description: 'The border bottom right radius of the card component, for the md size variant'
1060 },
1061 {
1062 name: 'border-bottom-left-radius',
1063 type: '',
1064 value: 'calc(#{var(--border-bottom-left-radius)} * #{size-multiplier(\'md\')})',
1065 description: 'The border bottom left radius of the card component, for the md size variant'
1066 },
1067 {
1068 name: 'font-size',
1069 type: '',
1070 value: 'calc(#{font-size()} * #{size-multiplier(\'md\')})',
1071 description: 'The font size of the card component, for the md size variant'
1072 },
1073 {
1074 name: 'padding-top',
1075 type: '',
1076 value: 'calc(#{var(--padding-top)} * #{size-multiplier(\'md\')})',
1077 description: 'The padding top of the card component, for the md size variant'
1078 },
1079 {
1080 name: 'padding-right',
1081 type: '',
1082 value: 'calc(#{var(--padding-right)} * #{size-multiplier(\'md\')})',
1083 description: 'The padding right of the card component, for the md size variant'
1084 },
1085 {
1086 name: 'padding-bottom',
1087 type: '',
1088 value: 'calc(#{var(--padding-bottom)} * #{size-multiplier(\'md\')})',
1089 description: 'The padding bottom of the card component, for the md size variant'
1090 },
1091 {
1092 name: 'padding-left',
1093 type: '',
1094 value: 'calc(#{var(--padding-left)} * #{size-multiplier(\'md\')})',
1095 description: 'The padding left of the card component, for the md size variant'
1096 },
1097 {
1098 name: 'header--padding-bottom',
1099 type: '',
1100 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'md\')})',
1101 description: 'The padding bottom of the modal component header, for the md size variant'
1102 },
1103 {
1104 name: 'header--padding-left',
1105 type: '',
1106 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'md\')})',
1107 description: 'The padding left of the modal component header, for the md size variant'
1108 },
1109 {
1110 name: 'body--padding-bottom',
1111 type: '',
1112 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'md\')})',
1113 description: 'The padding bottom of the modal component body, for the md size variant'
1114 },
1115 {
1116 name: 'body--padding-left',
1117 type: '',
1118 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'md\')})',
1119 description: 'The padding left of the modal component body, for the md size variant'
1120 },
1121 {
1122 name: 'footer--padding-bottom',
1123 type: '',
1124 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'md\')})',
1125 description: 'The padding bottom of the modal component footer, for the md size variant'
1126 },
1127 {
1128 name: 'footer--padding-left',
1129 type: '',
1130 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'md\')})',
1131 description: 'The padding left of the modal component footer, for the md size variant'
1132 }
1133 ]
1134 },
1135 {
1136 name: 'lg',
1137 type: 'variant',
1138 description: 'Variables for the lg size variant',
1139 variables: [
1140 {
1141 name: 'border-top-left-radius',
1142 type: '',
1143 value: 'calc(#{var(--border-top-left-radius)} * #{size-multiplier(\'lg\')})',
1144 description: 'The border top left radius of the card component, for the lg size variant'
1145 },
1146 {
1147 name: 'border-top-right-radius',
1148 type: '',
1149 value: 'calc(#{var(--border-top-right-radius)} * #{size-multiplier(\'lg\')})',
1150 description: 'The border top right radius of the card component, for the lg size variant'
1151 },
1152 {
1153 name: 'border-bottom-right-radius',
1154 type: '',
1155 value: 'calc(#{var(--border-bottom-right-radius)} * #{size-multiplier(\'lg\')})',
1156 description: 'The border bottom right radius of the card component, for the lg size variant'
1157 },
1158 {
1159 name: 'border-bottom-left-radius',
1160 type: '',
1161 value: 'calc(#{var(--border-bottom-left-radius)} * #{size-multiplier(\'lg\')})',
1162 description: 'The border bottom left radius of the card component, for the lg size variant'
1163 },
1164 {
1165 name: 'font-size',
1166 type: '',
1167 value: 'calc(#{font-size()} * #{size-multiplier(\'lg\')})',
1168 description: 'The font size of the card component, for the lg size variant'
1169 },
1170 {
1171 name: 'padding-top',
1172 type: '',
1173 value: 'calc(#{var(--padding-top)} * #{size-multiplier(\'lg\')})',
1174 description: 'The padding top of the card component, for the lg size variant'
1175 },
1176 {
1177 name: 'padding-right',
1178 type: '',
1179 value: 'calc(#{var(--padding-right)} * #{size-multiplier(\'lg\')})',
1180 description: 'The padding right of the card component, for the lg size variant'
1181 },
1182 {
1183 name: 'padding-bottom',
1184 type: '',
1185 value: 'calc(#{var(--padding-bottom)} * #{size-multiplier(\'lg\')})',
1186 description: 'The padding bottom of the card component, for the lg size variant'
1187 },
1188 {
1189 name: 'padding-left',
1190 type: '',
1191 value: 'calc(#{var(--padding-left)} * #{size-multiplier(\'lg\')})',
1192 description: 'The padding left of the card component, for the lg size variant'
1193 },
1194 {
1195 name: 'header--padding-bottom',
1196 type: '',
1197 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'lg\')})',
1198 description: 'The padding bottom of the modal component header, for the lg size variant'
1199 },
1200 {
1201 name: 'header--padding-left',
1202 type: '',
1203 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'lg\')})',
1204 description: 'The padding left of the modal component header, for the lg size variant'
1205 },
1206 {
1207 name: 'body--padding-bottom',
1208 type: '',
1209 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'lg\')})',
1210 description: 'The padding bottom of the modal component body, for the lg size variant'
1211 },
1212 {
1213 name: 'body--padding-left',
1214 type: '',
1215 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'lg\')})',
1216 description: 'The padding left of the modal component body, for the lg size variant'
1217 },
1218 {
1219 name: 'footer--padding-bottom',
1220 type: '',
1221 value: 'calc(#{var(----padding-bottom)} * #{size-multiplier(\'lg\')})',
1222 description: 'The padding bottom of the modal component footer, for the lg size variant'
1223 },
1224 {
1225 name: 'footer--padding-left',
1226 type: '',
1227 value: 'calc(#{var(----padding-left)} * #{size-multiplier(\'lg\')})',
1228 description: 'The padding left of the modal component footer, for the lg size variant'
1229 }
1230 ]
1231 }
1232 ]
1233 },
1234 events: []
1235};
1236export default manifest;
1237//# sourceMappingURL=manifest.mjs.map
\No newline at end of file