flowbite-svelte 0.9.2 → 0.9.5

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 (75) hide show
  1. package/accordions/AccordionItem.svelte +1 -1
  2. package/accordions/AccordionItem.svelte.d.ts +1 -1
  3. package/auth/Confirm.svelte +23 -0
  4. package/auth/Confirm.svelte.d.ts +19 -0
  5. package/auth/ForgotPassword.svelte +57 -0
  6. package/auth/ForgotPassword.svelte.d.ts +21 -0
  7. package/auth/Login.svelte +128 -0
  8. package/auth/Login.svelte.d.ts +25 -0
  9. package/auth/Register.svelte +116 -0
  10. package/auth/Register.svelte.d.ts +25 -0
  11. package/auth/Reset.svelte +57 -0
  12. package/auth/Reset.svelte.d.ts +22 -0
  13. package/buttongroups/ButtonGroup.svelte +7 -7
  14. package/buttongroups/ButtonGroupOutline.svelte +7 -7
  15. package/buttons/Button.svelte +16 -15
  16. package/buttons/Button.svelte.d.ts +3 -2
  17. package/buttons/ColorShadowButton.svelte +2 -1
  18. package/buttons/ColorShadowButton.svelte.d.ts +2 -1
  19. package/buttons/GradientDuotoneButton.svelte +2 -1
  20. package/buttons/GradientDuotoneButton.svelte.d.ts +2 -1
  21. package/buttons/GradientMonochromeButton.svelte +2 -1
  22. package/buttons/GradientMonochromeButton.svelte.d.ts +2 -1
  23. package/buttons/GradientOutlineButton.svelte +2 -1
  24. package/buttons/GradientOutlineButton.svelte.d.ts +2 -1
  25. package/cards/Card.svelte +6 -7
  26. package/cards/Card.svelte.d.ts +5 -4
  27. package/cards/CtaCard.svelte +2 -2
  28. package/cards/EcommerceCard.svelte +1 -1
  29. package/cards/EcommerceCard.svelte.d.ts +1 -1
  30. package/cards/HorizontalCard.svelte +3 -3
  31. package/cards/HorizontalCard.svelte.d.ts +3 -3
  32. package/cards/InteractiveCard.svelte +6 -6
  33. package/cards/InteractiveCard.svelte.d.ts +2 -2
  34. package/cards/ListCard.svelte +42 -77
  35. package/cards/ListCard.svelte.d.ts +8 -40
  36. package/cards/SignInCard.svelte +114 -111
  37. package/cards/SignInCard.svelte.d.ts +9 -32
  38. package/dropdowns/DropdownDefault.svelte +84 -93
  39. package/dropdowns/DropdownDefault.svelte.d.ts +7 -35
  40. package/footer/LogoFooter.svelte +4 -4
  41. package/footer/SimpleFooter.svelte +3 -3
  42. package/footer/SitemapFooter.svelte +5 -5
  43. package/footer/SitemapFooter.svelte.d.ts +2 -2
  44. package/footer/SocialMediaFooter.svelte +59 -106
  45. package/footer/SocialMediaFooter.svelte.d.ts +9 -61
  46. package/index.d.ts +6 -1
  47. package/index.js +14 -0
  48. package/list-group/List.svelte +42 -74
  49. package/list-group/List.svelte.d.ts +7 -23
  50. package/modals/ExtraLargeModal.svelte +187 -191
  51. package/modals/ExtraLargeModal.svelte.d.ts +9 -27
  52. package/modals/LargeModal.svelte +188 -191
  53. package/modals/LargeModal.svelte.d.ts +9 -27
  54. package/modals/MediumModal.svelte +191 -200
  55. package/modals/MediumModal.svelte.d.ts +9 -27
  56. package/modals/ModalButton.svelte +40 -35
  57. package/modals/ModalButton.svelte.d.ts +7 -17
  58. package/modals/SignInModal.svelte +151 -160
  59. package/modals/SignInModal.svelte.d.ts +10 -24
  60. package/modals/SmallModal.svelte +188 -191
  61. package/modals/SmallModal.svelte.d.ts +9 -27
  62. package/modals/modalStores.d.ts +2 -1
  63. package/modals/modalStores.js +1 -2
  64. package/navbar/DropdownNavbar.svelte +21 -24
  65. package/navbar/DropdownNavbar.svelte.d.ts +7 -0
  66. package/navbar/Navbar.svelte +11 -14
  67. package/navbar/Navbar.svelte.d.ts +4 -0
  68. package/package.json +7 -3
  69. package/spinners/Spinner.svelte +1 -1
  70. package/spinners/Spinner.svelte.d.ts +1 -1
  71. package/spinners/SpinnerButton.svelte +1 -1
  72. package/tabs/DefaultTabs.svelte +2 -2
  73. package/tabs/InteractiveTabs.svelte +6 -6
  74. package/tabs/PillTabs.svelte +2 -2
  75. package/types.d.ts +25 -12
@@ -1,110 +1,63 @@
1
- <script>
2
- export let site = {
3
- link: "/",
4
- name: "Flowbite Svelte",
5
- img: "/images/mkdir-logo.png",
6
- };
7
- export let links = [
8
- {
9
- parent: "RESOURCES",
10
- children: [
11
- { name: "Flowbite-Svelte", link: "/" },
12
- {
13
- name: "Flowbite",
14
- link: "/",
15
- },
16
- ],
17
- },
18
- {
19
- parent: "FOLLOW US",
20
- children: [
21
- { name: "Github", link: "/" },
22
- {
23
- name: "Flowbite",
24
- link: "/",
25
- },
26
- ],
27
- },
28
- {
29
- parent: "LEGAL",
30
- children: [
31
- { name: "Privacy Policy", link: "/" },
32
- {
33
- name: "Terms & Conditions",
34
- link: "/",
35
- },
36
- ],
37
- },
38
- ];
39
- export let socialMedia = [
40
- {
41
- link: "/",
42
- icon: "",
43
- },
44
- ];
45
- export let footerClass = "p-4 bg-white sm:p-6 dark:bg-gray-800";
46
- export let divClass = "md:flex md:justify-between";
47
- export let divClass2 = "mb-6 md:mb-0";
48
- export let siteLinkClass = "flex items-center";
49
- export let siteNameSpanClass =
50
- "self-center text-2xl font-semibold whitespace-nowrap dark:text-white";
51
- export let imgClass = "mr-3 h-8";
52
- export let linksDivClass = "grid grid-cols-2 gap-8 sm:gap-6 sm:grid-cols-3";
53
- export let parentClass =
54
- "mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white";
55
- export let ulClass = "text-gray-600 dark:text-gray-400";
56
- export let linkClass = "hover:underline";
57
- export let hrClass =
58
- "my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8";
59
- export let copyrightDivClass = "sm:flex sm:items-center sm:justify-between";
60
- export let copyrightClass =
61
- "text-sm text-gray-500 sm:text-center dark:text-gray-400";
62
- export let socialMediaDivClass =
63
- "flex mt-4 space-x-6 sm:justify-center sm:mt-0";
64
- export let socialMediaLinkClass =
65
- "text-gray-500 hover:text-gray-900 dark:hover:text-white";
66
- export let iconClass = "h-5 w-5 mr-2";
67
- export let copyrightYear = "© 2022";
68
- export let allRightsReserved = "All Rights Reserved.";
1
+ <script >export let site;
2
+ export let links;
3
+ export let socialMedia;
4
+ export let footerClass = 'p-4 bg-white sm:p-6 dark:bg-gray-800';
5
+ export let divClass = 'md:flex md:justify-between';
6
+ export let divClass2 = 'mb-6 md:mb-0';
7
+ export let siteLinkClass = 'flex items-center';
8
+ export let siteNameSpanClass = 'self-center text-2xl font-semibold whitespace-nowrap dark:text-white';
9
+ export let imgClass = 'mr-3 h-8';
10
+ export let linksDivClass = 'grid grid-cols-2 gap-8 sm:gap-6 sm:grid-cols-3';
11
+ export let parentClass = 'mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white';
12
+ export let ulClass = 'text-gray-600 dark:text-gray-400';
13
+ export let linkClass = 'hover:underline';
14
+ export let hrClass = 'my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8';
15
+ export let copyrightDivClass = 'sm:flex sm:items-center sm:justify-between';
16
+ export let copyrightClass = 'text-sm text-gray-500 sm:text-center dark:text-gray-400';
17
+ export let socialMediaDivClass = 'flex mt-4 space-x-6 sm:justify-center sm:mt-0';
18
+ export let socialMediaLinkClass = 'text-gray-500 hover:text-gray-900 dark:hover:text-white';
19
+ export let iconClass = 'h-5 w-5 mr-2';
20
+ export let copyrightYear = '© 2022';
21
+ export let allRightsReserved = 'All Rights Reserved.';
69
22
  </script>
70
23
 
71
24
  <footer class={footerClass}>
72
- <div class={divClass}>
73
- <div class={divClass2}>
74
- <a href={site.link} class={siteLinkClass}>
75
- <img src={site.img} class={imgClass} alt={site.name} />
76
- <span class={siteNameSpanClass}>{site.name}</span>
77
- </a>
78
- </div>
79
- <div class={linksDivClass}>
80
- {#each links as { parent, children }}
81
- <div>
82
- <h2 class={parentClass}>
83
- {parent}
84
- </h2>
85
- <ul class={ulClass}>
86
- {#each children as { name, link }}
87
- <li class="mb-4">
88
- <a href={link} class={linkClass}>{name}</a>
89
- </li>
90
- {/each}
91
- </ul>
92
- </div>
93
- {/each}
94
- </div>
95
- </div>
96
- <hr class={hrClass} />
97
- <div class={copyrightDivClass}>
98
- <span class={copyrightClass}
99
- >{copyrightYear}
100
- <a href={site.link} class="hover:underline">{site.name}</a>. {allRightsReserved}
101
- </span>
102
- <div class={socialMediaDivClass}>
103
- {#each socialMedia as { link, icon }}
104
- <a href={link} class={socialMediaLinkClass}>
105
- <svelte:component this={icon} className={iconClass} />
106
- </a>
107
- {/each}
108
- </div>
109
- </div>
25
+ <div class={divClass}>
26
+ <div class={divClass2}>
27
+ <a href={site.href} class={siteLinkClass}>
28
+ <img src={site.img} class={imgClass} alt={site.name} />
29
+ <span class={siteNameSpanClass}>{site.name}</span>
30
+ </a>
31
+ </div>
32
+ <div class={linksDivClass}>
33
+ {#each links as { parent, children }}
34
+ <div>
35
+ <h2 class={parentClass}>
36
+ {parent}
37
+ </h2>
38
+ <ul class={ulClass}>
39
+ {#each children as { name, href }}
40
+ <li class="mb-4">
41
+ <a {href} class={linkClass}>{name}</a>
42
+ </li>
43
+ {/each}
44
+ </ul>
45
+ </div>
46
+ {/each}
47
+ </div>
48
+ </div>
49
+ <hr class={hrClass} />
50
+ <div class={copyrightDivClass}>
51
+ <span class={copyrightClass}
52
+ >{copyrightYear}
53
+ <a href={site.href} class="hover:underline">{site.name}</a>. {allRightsReserved}
54
+ </span>
55
+ <div class={socialMediaDivClass}>
56
+ {#each socialMedia as { href, icon }}
57
+ <a {href} class={socialMediaLinkClass}>
58
+ <svelte:component this={icon} className={iconClass} />
59
+ </a>
60
+ {/each}
61
+ </div>
62
+ </div>
110
63
  </footer>
@@ -1,67 +1,10 @@
1
- /** @typedef {typeof __propDef.props} SocialMediaFooterProps */
2
- /** @typedef {typeof __propDef.events} SocialMediaFooterEvents */
3
- /** @typedef {typeof __propDef.slots} SocialMediaFooterSlots */
4
- export default class SocialMediaFooter extends SvelteComponentTyped<{
5
- site?: {
6
- link: string;
7
- name: string;
8
- img: string;
9
- };
10
- links?: {
11
- parent: string;
12
- children: {
13
- name: string;
14
- link: string;
15
- }[];
16
- }[];
17
- socialMedia?: {
18
- link: string;
19
- icon: string;
20
- }[];
21
- footerClass?: string;
22
- divClass?: string;
23
- divClass2?: string;
24
- siteLinkClass?: string;
25
- siteNameSpanClass?: string;
26
- imgClass?: string;
27
- linksDivClass?: string;
28
- parentClass?: string;
29
- ulClass?: string;
30
- linkClass?: string;
31
- hrClass?: string;
32
- copyrightDivClass?: string;
33
- copyrightClass?: string;
34
- socialMediaDivClass?: string;
35
- socialMediaLinkClass?: string;
36
- iconClass?: string;
37
- copyrightYear?: string;
38
- allRightsReserved?: string;
39
- }, {
40
- [evt: string]: CustomEvent<any>;
41
- }, {}> {
42
- }
43
- export type SocialMediaFooterProps = typeof __propDef.props;
44
- export type SocialMediaFooterEvents = typeof __propDef.events;
45
- export type SocialMediaFooterSlots = typeof __propDef.slots;
46
1
  import { SvelteComponentTyped } from "svelte";
2
+ import type { SocialMediaLinkType, SocialMediaType, SiteType } from '../types';
47
3
  declare const __propDef: {
48
4
  props: {
49
- site?: {
50
- link: string;
51
- name: string;
52
- img: string;
53
- };
54
- links?: {
55
- parent: string;
56
- children: {
57
- name: string;
58
- link: string;
59
- }[];
60
- }[];
61
- socialMedia?: {
62
- link: string;
63
- icon: string;
64
- }[];
5
+ site: SiteType;
6
+ links: SocialMediaLinkType[];
7
+ socialMedia: SocialMediaType[];
65
8
  footerClass?: string;
66
9
  divClass?: string;
67
10
  divClass2?: string;
@@ -86,4 +29,9 @@ declare const __propDef: {
86
29
  };
87
30
  slots: {};
88
31
  };
32
+ export declare type SocialMediaFooterProps = typeof __propDef.props;
33
+ export declare type SocialMediaFooterEvents = typeof __propDef.events;
34
+ export declare type SocialMediaFooterSlots = typeof __propDef.slots;
35
+ export default class SocialMediaFooter extends SvelteComponentTyped<SocialMediaFooterProps, SocialMediaFooterEvents, SocialMediaFooterSlots> {
36
+ }
89
37
  export {};
package/index.d.ts CHANGED
@@ -3,6 +3,11 @@ import AccordionItem from "./accordions/AccordionItem.svelte";
3
3
  import Alert from "./alerts/Alert.svelte";
4
4
  import BorderAlert from "./alerts/BorderAlert.svelte";
5
5
  import InfoAlert from "./alerts/InfoAlert.svelte";
6
+ import Confirm from "./auth/Confirm.svelte";
7
+ import ForgotPassword from "./auth/ForgotPassword.svelte";
8
+ import Login from "./auth/Login.svelte";
9
+ import Register from "./auth/Register.svelte";
10
+ import Reset from "./auth/Reset.svelte";
6
11
  import Badge from "./badges/Badge.svelte";
7
12
  import BadgeIcon from "./badges/BadgeIcon.svelte";
8
13
  import BadgeLink from "./badges/BadgeLink.svelte";
@@ -43,4 +48,4 @@ import DefaultTabs from "./tabs/DefaultTabs.svelte";
43
48
  import PillTabs from "./tabs/PillTabs.svelte";
44
49
  import Tooltip from "./tooltips/Tooltip.svelte";
45
50
  import LightTooltip from "./tooltips/LightTooltip.svelte";
46
- export { Accordion, AccordionItem, Alert, BorderAlert, InfoAlert, Badge, BadgeIcon, BadgeLink, Button, ColorShadowButton, GradientDuotoneButton, GradientMonochromeButton, GradientOutlineButton, ButtonGroup, ButtonGroupOutline, Card, HorizontalCard, InteractiveCard, ListCard, CtaCard, EcommerceCard, SignInCard, DarkMode, Dropdown, SimpleFooter, LogoFooter, SocialMediaFooter, SitemapFooter, List, modalIdStore, ExtraLargeModal, LargeModal, MediumModal, ModalButton, SignInModal, SmallModal, Navbar, DropdownNavbar, Spinner, SpinnerButton, InteractiveTabs, DefaultTabs, PillTabs, Tooltip, LightTooltip };
51
+ export { Accordion, AccordionItem, Alert, BorderAlert, InfoAlert, Confirm, ForgotPassword, Login, Register, Reset, Badge, BadgeIcon, BadgeLink, Button, ColorShadowButton, GradientDuotoneButton, GradientMonochromeButton, GradientOutlineButton, ButtonGroup, ButtonGroupOutline, Card, HorizontalCard, InteractiveCard, ListCard, CtaCard, EcommerceCard, SignInCard, DarkMode, Dropdown, SimpleFooter, LogoFooter, SocialMediaFooter, SitemapFooter, List, modalIdStore, ExtraLargeModal, LargeModal, MediumModal, ModalButton, SignInModal, SmallModal, Navbar, DropdownNavbar, Spinner, SpinnerButton, InteractiveTabs, DefaultTabs, PillTabs, Tooltip, LightTooltip };
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ // Accordion
1
2
  import Accordion from './accordions/AccordionDefault.svelte'
2
3
  import AccordionItem from './accordions/AccordionItem.svelte'
3
4
 
@@ -6,6 +7,13 @@ import Alert from './alerts/Alert.svelte'
6
7
  import BorderAlert from './alerts/BorderAlert.svelte'
7
8
  import InfoAlert from './alerts/InfoAlert.svelte'
8
9
 
10
+ // Auth
11
+ import Confirm from './auth/Confirm.svelte'
12
+ import ForgotPassword from './auth/ForgotPassword.svelte'
13
+ import Login from './auth/Login.svelte'
14
+ import Register from './auth/Register.svelte'
15
+ import Reset from './auth/Reset.svelte'
16
+
9
17
  // Badges
10
18
  import Badge from './badges/Badge.svelte'
11
19
  import BadgeIcon from './badges/BadgeIcon.svelte'
@@ -80,6 +88,12 @@ export {
80
88
  Alert,
81
89
  BorderAlert,
82
90
  InfoAlert,
91
+ // auth
92
+ Confirm,
93
+ ForgotPassword,
94
+ Login,
95
+ Register,
96
+ Reset,
83
97
  // Badges
84
98
  Badge,
85
99
  BadgeIcon,
@@ -1,79 +1,47 @@
1
- <script>
2
- export let lists = [
3
- {
4
- title: "Profile",
5
- icon: "",
6
- link: "/profile",
7
- rel: "",
8
- },
9
- {
10
- title: "Settings",
11
- icon: "",
12
- link: "/settings",
13
- rel: "",
14
- },
15
- {
16
- title: "Messages",
17
- icon: "",
18
- link: "/message",
19
- rel: "",
20
- },
21
- {
22
- title: "Download",
23
- icon: "",
24
- link: "/download",
25
- rel: "",
26
- },
27
- ];
28
- // let len = count($lists);
29
- // top rounded-t-lg border-b border-gray-200
30
- // middle border-b border-gray-200
31
- // bottom rounded-b-lg
32
- const common =
33
- "inline-flex relative items-center py-2 px-4 w-full text-sm font-medium hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:ring-2 focus:ring-blue-700 focus:text-blue-700 dark:border-gray-600 dark:hover:bg-gray-600 dark:hover:text-white dark:focus:ring-gray-500 dark:focus:text-white";
34
- const topClass = `${common} rounded-t-lg border-b border-gray-200`;
35
- const bottomClass = `${common} rounded-b-lg`;
36
- const middleClass = `${common} border-b border-gray-200`;
37
- let listClass;
1
+ <script >export let lists;
2
+ const common = 'inline-flex relative items-center py-2 px-4 w-full text-sm font-medium hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:ring-2 focus:ring-blue-700 focus:text-blue-700 dark:border-gray-600 dark:hover:bg-gray-600 dark:hover:text-white dark:focus:ring-gray-500 dark:focus:text-white';
3
+ const topClass = `${common} rounded-t-lg border-b border-gray-200`;
4
+ const bottomClass = `${common} rounded-b-lg`;
5
+ const middleClass = `${common} border-b border-gray-200`;
38
6
  </script>
39
7
 
40
8
  <div
41
- class="w-48 text-gray-900 bg-white rounded-lg border border-gray-200 dark:bg-gray-700 dark:border-gray-600 dark:text-white"
9
+ class="w-48 text-gray-900 bg-white rounded-lg border border-gray-200 dark:bg-gray-700 dark:border-gray-600 dark:text-white"
42
10
  >
43
- {#each lists as { title, icon, link, rel }, i}
44
- {#if i === 0}
45
- <button type="button" class={topClass}>
46
- {#if icon}
47
- <svelte:component this={icon} className="h-4 w-4 mr-2" />
48
- {/if}
49
- {#if link}
50
- <a href={link} {rel}>{title}</a>
51
- {:else}
52
- {title} here
53
- {/if}
54
- </button>
55
- {:else if i === lists.length - 1}
56
- <button type="button" class={bottomClass}>
57
- {#if icon}
58
- <svelte:component this={icon} className="h-4 w-4 mr-2" />
59
- {/if}
60
- {#if link}
61
- <a href={link} {rel}>{title}</a>
62
- {:else}
63
- {title}
64
- {/if}
65
- </button>
66
- {:else}
67
- <button type="button" class={middleClass}>
68
- {#if icon}
69
- <svelte:component this={icon} className="h-4 w-4 mr-2" />
70
- {/if}
71
- {#if link}
72
- <a href={link} {rel}>{title}</a>
73
- {:else}
74
- {title}
75
- {/if}
76
- </button>
77
- {/if}
78
- {/each}
11
+ {#each lists as { name, icon, href, rel }, i}
12
+ {#if i === 0}
13
+ <button type="button" class={topClass}>
14
+ {#if icon}
15
+ <svelte:component this={icon} className="h-4 w-4 mr-2" />
16
+ {/if}
17
+ {#if href}
18
+ <a {href} {rel}>{name}</a>
19
+ {:else}
20
+ {name} here
21
+ {/if}
22
+ </button>
23
+ {:else if i === lists.length - 1}
24
+ <button type="button" class={bottomClass}>
25
+ {#if icon}
26
+ <svelte:component this={icon} className="h-4 w-4 mr-2" />
27
+ {/if}
28
+ {#if href}
29
+ <a {href} {rel}>{name}</a>
30
+ {:else}
31
+ {name}
32
+ {/if}
33
+ </button>
34
+ {:else}
35
+ <button type="button" class={middleClass}>
36
+ {#if icon}
37
+ <svelte:component this={icon} className="h-4 w-4 mr-2" />
38
+ {/if}
39
+ {#if href}
40
+ <a {href} {rel}>{name}</a>
41
+ {:else}
42
+ {name}
43
+ {/if}
44
+ </button>
45
+ {/if}
46
+ {/each}
79
47
  </div>
@@ -1,33 +1,17 @@
1
- /** @typedef {typeof __propDef.props} ListProps */
2
- /** @typedef {typeof __propDef.events} ListEvents */
3
- /** @typedef {typeof __propDef.slots} ListSlots */
4
- export default class List extends SvelteComponentTyped<{
5
- lists?: {
6
- title: string;
7
- icon: string;
8
- link: string;
9
- rel: string;
10
- }[];
11
- }, {
12
- [evt: string]: CustomEvent<any>;
13
- }, {}> {
14
- }
15
- export type ListProps = typeof __propDef.props;
16
- export type ListEvents = typeof __propDef.events;
17
- export type ListSlots = typeof __propDef.slots;
18
1
  import { SvelteComponentTyped } from "svelte";
2
+ import type { ButtonGroupType } from '../types';
19
3
  declare const __propDef: {
20
4
  props: {
21
- lists?: {
22
- title: string;
23
- icon: string;
24
- link: string;
25
- rel: string;
26
- }[];
5
+ lists: ButtonGroupType[];
27
6
  };
28
7
  events: {
29
8
  [evt: string]: CustomEvent<any>;
30
9
  };
31
10
  slots: {};
32
11
  };
12
+ export declare type ListProps = typeof __propDef.props;
13
+ export declare type ListEvents = typeof __propDef.events;
14
+ export declare type ListSlots = typeof __propDef.slots;
15
+ export default class List extends SvelteComponentTyped<ListProps, ListEvents, ListSlots> {
16
+ }
33
17
  export {};