flowbite-svelte 0.13.5 → 0.13.8

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.13.8](https://github.com/shinokada/flowbite-svelte/compare/v0.13.7...v0.13.8) (2022-04-14)
6
+
7
+
8
+ ### Features
9
+
10
+ * add carousel components ([846a99d](https://github.com/shinokada/flowbite-svelte/commit/846a99dde2f45246493fac99790c220da257eefd))
11
+
12
+ ### [0.13.7](https://github.com/shinokada/flowbite-svelte/compare/v0.13.6...v0.13.7) (2022-04-13)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * remove SvelteKit app/stores page and session from Navbar ([09428df](https://github.com/shinokada/flowbite-svelte/commit/09428df9f46b16b07595ed16c08697c61c0099a5))
18
+
19
+ ### [0.13.6](https://github.com/shinokada/flowbite-svelte/compare/v0.13.5...v0.13.6) (2022-04-13)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * create new props files ([0a6fd33](https://github.com/shinokada/flowbite-svelte/commit/0a6fd334321bbedd2eecebb5e4f2456ddb19fd3b))
25
+ * remove SvelteKit app session and page ([7eaa3db](https://github.com/shinokada/flowbite-svelte/commit/7eaa3dbfc7f0e2fcf5ef6be4045843fc92b354a5))
26
+
5
27
  ### [0.13.5](https://github.com/shinokada/flowbite-svelte/compare/v0.13.4...v0.13.5) (2022-04-12)
6
28
 
7
29
 
@@ -0,0 +1,6 @@
1
+ <script >export let caption = '';
2
+ </script>
3
+
4
+ <div class="h-10 bg-gray-300 dark:bg-gray-700 dark:text-white p-2 my-2 text-center">
5
+ <p id="caption" class="text-gray-900 dark:text-white">{caption}</p>
6
+ </div>
@@ -0,0 +1,16 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ caption?: string;
5
+ };
6
+ events: {
7
+ [evt: string]: CustomEvent<any>;
8
+ };
9
+ slots: {};
10
+ };
11
+ export declare type CaptionProps = typeof __propDef.props;
12
+ export declare type CaptionEvents = typeof __propDef.events;
13
+ export declare type CaptionSlots = typeof __propDef.slots;
14
+ export default class Caption extends SvelteComponentTyped<CaptionProps, CaptionEvents, CaptionSlots> {
15
+ }
16
+ export {};
@@ -0,0 +1,73 @@
1
+ <script >// import { images } from './imageData.js';
2
+ import Slide from './Slide.svelte';
3
+ import Thumbnail from './Thumbnail.svelte';
4
+ import Caption from './Caption.svelte';
5
+ import Indicator from './Indicator.svelte';
6
+ export let showIndicators = true;
7
+ export let showCaptions = true;
8
+ export let showThumbs = true;
9
+ export let images;
10
+ export let slideControls = true;
11
+ let imageShowingIndex = 0;
12
+ $: console.log(imageShowingIndex);
13
+ $: image = images[imageShowingIndex];
14
+ const nextSlide = () => {
15
+ if (imageShowingIndex === images.length - 1) {
16
+ imageShowingIndex = 0;
17
+ }
18
+ else {
19
+ imageShowingIndex += 1;
20
+ }
21
+ };
22
+ const prevSlide = () => {
23
+ if (imageShowingIndex === 0) {
24
+ imageShowingIndex = images.length - 1;
25
+ }
26
+ else {
27
+ imageShowingIndex -= 1;
28
+ }
29
+ };
30
+ const goToSlide = (number) => (imageShowingIndex = number);
31
+ let thumbWidth = 100 / images.length;
32
+ </script>
33
+
34
+ <div id="default-carousel" class="relative">
35
+ <div class="overflow-hidden relative h-56 rounded-lg sm:h-64 xl:h-80 2xl:h-96">
36
+ <Slide image={image.imgurl} altTag={image.name} attr={image.attribution} />
37
+ </div>
38
+ {#if showIndicators}
39
+ <!-- Slider indicators -->
40
+ <div class="flex absolute bottom-5 left-1/2 z-30 space-x-3 -translate-x-1/2">
41
+ {#each images as { id, imgurl, name, attribution }}
42
+ <Indicator {name} selected={imageShowingIndex === id} on:click={() => goToSlide(id)} />
43
+ {/each}
44
+ </div>
45
+ {/if}
46
+ {#if slideControls}
47
+ <!-- Slider controls -->
48
+ <button on:click={prevSlide} type="button" class="flex absolute top-0 left-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none" data-carousel-prev>
49
+ <span class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
50
+ <svg class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-300" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" /></svg>
51
+ <span class="hidden">Previous</span>
52
+ </span>
53
+ </button>
54
+ <button on:click={nextSlide} type="button" class="flex absolute top-0 right-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none" data-carousel-next>
55
+ <span class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none">
56
+ <svg class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-300" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" /></svg>
57
+ <span class="hidden">Next</span>
58
+ </span>
59
+ </button>
60
+ {/if}
61
+ </div>
62
+
63
+ {#if showCaptions}
64
+ <Caption caption={images[imageShowingIndex].name} />
65
+ {/if}
66
+
67
+ {#if showThumbs}
68
+ <div class="flex flex-row justify-center bg-gray-100">
69
+ {#each images as { id, imgurl, name, attribution }}
70
+ <Thumbnail {thumbWidth} thumbImg={imgurl} altTag={name} titleLink={attribution} {id} selected={imageShowingIndex === id} on:click={() => goToSlide(id)} />
71
+ {/each}
72
+ </div>
73
+ {/if}
@@ -0,0 +1,20 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ showIndicators?: boolean;
5
+ showCaptions?: boolean;
6
+ showThumbs?: boolean;
7
+ images: any[];
8
+ slideControls?: boolean;
9
+ };
10
+ events: {
11
+ [evt: string]: CustomEvent<any>;
12
+ };
13
+ slots: {};
14
+ };
15
+ export declare type CarouselProps = typeof __propDef.props;
16
+ export declare type CarouselEvents = typeof __propDef.events;
17
+ export declare type CarouselSlots = typeof __propDef.slots;
18
+ export default class Carousel extends SvelteComponentTyped<CarouselProps, CarouselEvents, CarouselSlots> {
19
+ }
20
+ export {};
@@ -0,0 +1,10 @@
1
+ <script >export let name = '';
2
+ export let selected = false;
3
+ </script>
4
+
5
+ <button type="button" class="w-3 h-3 rounded-full bg-gray-100 hover:bg-gray-300 opacity-60" class:active={selected} aria-label={name} on:click />
6
+
7
+ <style>
8
+ .active {
9
+ opacity: 1;
10
+ }</style>
@@ -0,0 +1,19 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ name?: string;
5
+ selected?: boolean;
6
+ };
7
+ events: {
8
+ click: MouseEvent;
9
+ } & {
10
+ [evt: string]: CustomEvent<any>;
11
+ };
12
+ slots: {};
13
+ };
14
+ export declare type IndicatorProps = typeof __propDef.props;
15
+ export declare type IndicatorEvents = typeof __propDef.events;
16
+ export declare type IndicatorSlots = typeof __propDef.slots;
17
+ export default class Indicator extends SvelteComponentTyped<IndicatorProps, IndicatorEvents, IndicatorSlots> {
18
+ }
19
+ export {};
@@ -0,0 +1,8 @@
1
+ <script >export let image = '';
2
+ export let altTag = '';
3
+ export let attr = '';
4
+ </script>
5
+
6
+ <div class="duration-700 ease-in-out">
7
+ <img src={image} alt={altTag} title={attr} />
8
+ </div>
@@ -0,0 +1,18 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ image?: string;
5
+ altTag?: string;
6
+ attr?: string;
7
+ };
8
+ events: {
9
+ [evt: string]: CustomEvent<any>;
10
+ };
11
+ slots: {};
12
+ };
13
+ export declare type SlideProps = typeof __propDef.props;
14
+ export declare type SlideEvents = typeof __propDef.events;
15
+ export declare type SlideSlots = typeof __propDef.slots;
16
+ export default class Slide extends SvelteComponentTyped<SlideProps, SlideEvents, SlideSlots> {
17
+ }
18
+ export {};
@@ -0,0 +1,14 @@
1
+ <script >export let thumbImg = '';
2
+ export let altTag = '';
3
+ export let titleLink = '';
4
+ export let id;
5
+ export let thumbWidth;
6
+ export let selected = false;
7
+ </script>
8
+
9
+ <img class="opacity-40" class:active={selected} id={id.toString()} src={thumbImg} alt={altTag} title="Image from {titleLink}" on:click width="{thumbWidth}%" />
10
+
11
+ <style>
12
+ .active {
13
+ opacity: 1;
14
+ }</style>
@@ -0,0 +1,23 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ thumbImg?: string;
5
+ altTag?: string;
6
+ titleLink?: string;
7
+ id: number;
8
+ thumbWidth: number;
9
+ selected?: boolean;
10
+ };
11
+ events: {
12
+ click: MouseEvent;
13
+ } & {
14
+ [evt: string]: CustomEvent<any>;
15
+ };
16
+ slots: {};
17
+ };
18
+ export declare type ThumbnailProps = typeof __propDef.props;
19
+ export declare type ThumbnailEvents = typeof __propDef.events;
20
+ export declare type ThumbnailSlots = typeof __propDef.slots;
21
+ export default class Thumbnail extends SvelteComponentTyped<ThumbnailProps, ThumbnailEvents, ThumbnailSlots> {
22
+ }
23
+ export {};
package/index.d.ts CHANGED
@@ -26,6 +26,7 @@ export { default as ListCard } from "./cards/ListCard.svelte";
26
26
  export { default as CtaCard } from "./cards/CtaCard.svelte";
27
27
  export { default as EcommerceCard } from "./cards/EcommerceCard.svelte";
28
28
  export { default as SignInCard } from "./cards/SignInCard.svelte";
29
+ export { default as Carousel } from "./carousels/Carousel.svelte";
29
30
  export { default as DarkMode } from "./darkmode/DarkMode.svelte";
30
31
  export { default as Dropdown } from "./dropdowns/DropdownDefault.svelte";
31
32
  export { default as SimpleFooter } from "./footer/SimpleFooter.svelte";
package/index.js CHANGED
@@ -42,6 +42,9 @@ export { default as CtaCard } from'./cards/CtaCard.svelte'
42
42
  export { default as EcommerceCard } from'./cards/EcommerceCard.svelte'
43
43
  export { default as SignInCard } from'./cards/SignInCard.svelte'
44
44
 
45
+ // Carousels
46
+ export { default as Carousel } from './carousels/Carousel.svelte'
47
+
45
48
  // Dark mode
46
49
  export { default as DarkMode } from'./darkmode/DarkMode.svelte'
47
50
 
@@ -1,11 +1,17 @@
1
- <script >import { page, session } from '$app/stores';
1
+ <script >import { onMount } from 'svelte';
2
2
  import NavDropdown from './NavDropdown.svelte';
3
+ export let user = '';
4
+ let pathname = '';
5
+ onMount(() => {
6
+ pathname = window.location.pathname;
7
+ // console.log('pathname', pathname);
8
+ });
3
9
  let barHidden = true;
4
10
  const handleClickbtn = () => {
5
11
  barHidden = !barHidden;
6
12
  };
7
13
  export let sitename = 'Svelte Flow';
8
- export let logo = '/images/mkdir-logo.png';
14
+ export let logo = '/images/flowbite-svelte-logo-30.png';
9
15
  export let alt;
10
16
  export let textsize = 'text-sm';
11
17
  export let menus;
@@ -20,36 +26,36 @@ export let liButtonClass = `flex justify-between items-center py-2 pr-4 pl-3 w-f
20
26
  </script>
21
27
 
22
28
  <nav class={navClass}>
23
- <div class={navDivClass}>
24
- <a href="/" class="flex">
25
- <img src={logo} {alt} />
26
- <span class={spanClass}>{sitename}</span>
27
- </a>
28
- <button on:click={handleClickbtn} type="button" class={buttonClass} aria-controls="mobile-menu-2" aria-expanded="false">
29
- <span class="sr-only">Open main menu</span>
30
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd" /></svg>
31
- <svg class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>
32
- </button>
33
- <div class="w-full md:block md:w-auto" class:hidden={barHidden} id="mobile-menu">
34
- <ul class="flex flex-col mt-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium">
35
- {#each menus as { name, href, rel, child }}
36
- {#if child}
37
- <NavDropdown {liButtonClass} {dropdownDiv} {name} {child} {rel} {dropdownLinkClassWithChild} />
38
- {:else}
39
- <li>
40
- <a class:active={$page.url.pathname === href} {href} {rel} class={dropdownLinkClassWithoutChild}>{name}</a>
41
- </li>
42
- {/if}
43
- {/each}
44
- </ul>
45
- {#if $session['user']}
46
- <slot name="user" />
47
- {/if}
48
- </div>
49
- </div>
29
+ <div class={navDivClass}>
30
+ <a href="/" class="flex">
31
+ <img src={logo} {alt} />
32
+ <span class={spanClass}>{sitename}</span>
33
+ </a>
34
+ <button on:click={handleClickbtn} type="button" class={buttonClass} aria-controls="mobile-menu-2" aria-expanded="false">
35
+ <span class="sr-only">Open main menu</span>
36
+ <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd" /></svg>
37
+ <svg class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>
38
+ </button>
39
+ <div class="w-full md:block md:w-auto" class:hidden={barHidden} id="mobile-menu">
40
+ <ul class="flex flex-col mt-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium">
41
+ {#each menus as { name, href, rel, child }}
42
+ {#if child}
43
+ <NavDropdown {liButtonClass} {dropdownDiv} {name} {child} {rel} {dropdownLinkClassWithChild} />
44
+ {:else}
45
+ <li>
46
+ <a class:active={pathname === href} {href} {rel} class={dropdownLinkClassWithoutChild}>{name}</a>
47
+ </li>
48
+ {/if}
49
+ {/each}
50
+ </ul>
51
+ {#if user}
52
+ <slot name="user" />
53
+ {/if}
54
+ </div>
55
+ </div>
50
56
  </nav>
51
57
 
52
58
  <style>
53
- #mobile-menu .active {
54
- color: #fab534;
55
- }</style>
59
+ #mobile-menu .active {
60
+ color: #fab534;
61
+ }</style>
@@ -2,6 +2,7 @@ import { SvelteComponentTyped } from "svelte";
2
2
  import type { NavbarType } from '../types';
3
3
  declare const __propDef: {
4
4
  props: {
5
+ user?: string;
5
6
  sitename?: string;
6
7
  logo?: string;
7
8
  alt: string;
@@ -1,6 +1,12 @@
1
- <script >import { page, session } from '$app/stores';
2
- export let name = 'Svelte Flow';
3
- export let logo = '/images/mkdir-logo.png';
1
+ <script >import { onMount } from 'svelte';
2
+ export let user = '';
3
+ let pathname = '';
4
+ onMount(() => {
5
+ pathname = window.location.pathname;
6
+ // console.log('pathname', pathname);
7
+ });
8
+ export let siteName = 'Svelte Flow';
9
+ export let logo = '/images/flowbite-svelte-logo-30.png';
4
10
  export let alt = 'Svelte Flow';
5
11
  export let textsize = 'text-sm';
6
12
  let barHidden = true;
@@ -16,32 +22,32 @@ export let liLinkClass = `block py-2 pr-4 pl-3 text-gray-700 border-b border-gr
16
22
  </script>
17
23
 
18
24
  <nav class={navClass}>
19
- <div class={navDivClass}>
20
- <a href="/" class="flex">
21
- <img src={logo} {alt} />
22
- <span class={spanClass}>{name}</span>
23
- </a>
24
- <button on:click={handleClickbtn} type="button" class={buttonClass} aria-controls="mobile-menu-2" aria-expanded="false">
25
- <span class="sr-only">Open main menu</span>
26
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd" /></svg>
27
- <svg class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>
28
- </button>
29
- <div class:hidden={barHidden} class="hidden w-full md:block md:w-auto" id="mobile-menu">
30
- <ul class="flex flex-col mt-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium">
31
- {#each menus as { name, href, rel }}
32
- <li>
33
- <a class:active={$page.url.pathname === href} {href} {rel} class={liLinkClass}>{name}</a>
34
- </li>
35
- {/each}
36
- </ul>
37
- {#if $session['user']}
38
- <slot name="user" />
39
- {/if}
40
- </div>
41
- </div>
25
+ <div class={navDivClass}>
26
+ <a href="/" class="flex">
27
+ <img src={logo} {alt} />
28
+ <span class={spanClass}>{siteName}</span>
29
+ </a>
30
+ <button on:click={handleClickbtn} type="button" class={buttonClass} aria-controls="mobile-menu-2" aria-expanded="false">
31
+ <span class="sr-only">Open main menu</span>
32
+ <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd" /></svg>
33
+ <svg class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>
34
+ </button>
35
+ <div class:hidden={barHidden} class="hidden w-full md:block md:w-auto" id="mobile-menu">
36
+ <ul class="flex flex-col mt-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium">
37
+ {#each menus as { name, href, rel }}
38
+ <li>
39
+ <a class:active={pathname === href} {href} {rel} class={liLinkClass}>{name}</a>
40
+ </li>
41
+ {/each}
42
+ </ul>
43
+ {#if user}
44
+ <slot name="user" />
45
+ {/if}
46
+ </div>
47
+ </div>
42
48
  </nav>
43
49
 
44
50
  <style>
45
- #mobile-menu .active {
46
- color: #fab534;
47
- }</style>
51
+ #mobile-menu .active {
52
+ color: #fab534;
53
+ }</style>
@@ -2,7 +2,8 @@ import { SvelteComponentTyped } from "svelte";
2
2
  import type { LinkType } from '../types';
3
3
  declare const __propDef: {
4
4
  props: {
5
- name?: string;
5
+ user?: string;
6
+ siteName?: string;
6
7
  logo?: string;
7
8
  alt?: string;
8
9
  textsize?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.13.5",
3
+ "version": "0.13.8",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "./package/index.js",
6
6
  "author": {
@@ -108,6 +108,11 @@
108
108
  "./cards/InteractiveCard.svelte": "./cards/InteractiveCard.svelte",
109
109
  "./cards/ListCard.svelte": "./cards/ListCard.svelte",
110
110
  "./cards/SignInCard.svelte": "./cards/SignInCard.svelte",
111
+ "./carousels/Caption.svelte": "./carousels/Caption.svelte",
112
+ "./carousels/Carousel.svelte": "./carousels/Carousel.svelte",
113
+ "./carousels/Indicator.svelte": "./carousels/Indicator.svelte",
114
+ "./carousels/Slide.svelte": "./carousels/Slide.svelte",
115
+ "./carousels/Thumbnail.svelte": "./carousels/Thumbnail.svelte",
111
116
  "./darkmode/DarkMode.svelte": "./darkmode/DarkMode.svelte",
112
117
  "./dropdowns/DropdownDefault.svelte": "./dropdowns/DropdownDefault.svelte",
113
118
  "./footer/LogoFooter.svelte": "./footer/LogoFooter.svelte",