flowbite-svelte 0.25.17 → 0.25.20
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 +24 -0
- package/breadcrumbs/Breadcrumb.svelte +4 -1
- package/breadcrumbs/Breadcrumb.svelte.d.ts +2 -0
- package/breadcrumbs/BreadcrumbItem.svelte +43 -35
- package/breadcrumbs/BreadcrumbItem.svelte.d.ts +5 -5
- package/carousels/Carousel.svelte +39 -22
- package/carousels/Carousel.svelte.d.ts +4 -5
- package/carousels/CarouselTransition.svelte +39 -23
- package/carousels/CarouselTransition.svelte.d.ts +4 -5
- package/index.d.ts +0 -12
- package/index.js +0 -13
- package/package.json +1 -13
- package/toasts/Toast.svelte +2 -1
- package/typography/Hr.svelte +8 -10
- package/typography/Hr.svelte.d.ts +6 -8
- package/icons/CodeBracket.svelte +0 -38
- package/icons/CodeBracket.svelte.d.ts +0 -22
- package/icons/Envelope.svelte +0 -37
- package/icons/Envelope.svelte.d.ts +0 -22
- package/icons/FaceSmile.svelte +0 -38
- package/icons/FaceSmile.svelte.d.ts +0 -22
- package/icons/Figma.svelte +0 -34
- package/icons/Figma.svelte.d.ts +0 -19
- package/icons/Home.svelte +0 -37
- package/icons/Home.svelte.d.ts +0 -22
- package/icons/Map.svelte +0 -38
- package/icons/Map.svelte.d.ts +0 -22
- package/icons/MapPin.svelte +0 -37
- package/icons/MapPin.svelte.d.ts +0 -22
- package/icons/PaperAirplane.svelte +0 -37
- package/icons/PaperAirplane.svelte.d.ts +0 -22
- package/icons/PaperClip.svelte +0 -38
- package/icons/PaperClip.svelte.d.ts +0 -22
- package/icons/Photo.svelte +0 -38
- package/icons/Photo.svelte.d.ts +0 -22
- package/icons/QrCode.svelte +0 -37
- package/icons/QrCode.svelte.d.ts +0 -22
- package/icons/QuoteLeft.svelte +0 -17
- package/icons/QuoteLeft.svelte.d.ts +0 -18
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
declare const __propDef: {
|
|
3
|
-
props: {
|
|
4
|
-
[x: string]: any;
|
|
5
|
-
size?: string;
|
|
6
|
-
color?: string;
|
|
7
|
-
};
|
|
8
|
-
events: {
|
|
9
|
-
[evt: string]: CustomEvent<any>;
|
|
10
|
-
};
|
|
11
|
-
slots: {};
|
|
12
|
-
};
|
|
13
|
-
export declare type QuoteLeftProps = typeof __propDef.props;
|
|
14
|
-
export declare type QuoteLeftEvents = typeof __propDef.events;
|
|
15
|
-
export declare type QuoteLeftSlots = typeof __propDef.slots;
|
|
16
|
-
export default class QuoteLeft extends SvelteComponentTyped<QuoteLeftProps, QuoteLeftEvents, QuoteLeftSlots> {
|
|
17
|
-
}
|
|
18
|
-
export {};
|