flowbite-svelte 0.21.7 → 0.21.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 +7 -0
- package/index.d.ts +8 -0
- package/index.js +9 -0
- package/package.json +9 -1
- package/skeleton/CardPlaceholder.svelte +40 -0
- package/skeleton/CardPlaceholder.svelte.d.ts +19 -0
- package/skeleton/ImagePlaceholder.svelte +28 -0
- package/skeleton/ImagePlaceholder.svelte.d.ts +19 -0
- package/skeleton/ListPlaceholder.svelte +41 -0
- package/skeleton/ListPlaceholder.svelte.d.ts +19 -0
- package/skeleton/Skeleton.svelte +9 -0
- package/skeleton/Skeleton.svelte.d.ts +19 -0
- package/skeleton/TestimonialPlaceholder.svelte +21 -0
- package/skeleton/TestimonialPlaceholder.svelte.d.ts +19 -0
- package/skeleton/TextPlaceholder.svelte +33 -0
- package/skeleton/TextPlaceholder.svelte.d.ts +19 -0
- package/skeleton/VideoPlaceholder.svelte +16 -0
- package/skeleton/VideoPlaceholder.svelte.d.ts +19 -0
- package/skeleton/WidgetPlaceholder.svelte +17 -0
- package/skeleton/WidgetPlaceholder.svelte.d.ts +19 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.21.8](https://github.com/themesberg/flowbite-svelte/compare/v0.21.7...v0.21.8) (2022-07-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add skeleton components and page ([cf1f421](https://github.com/themesberg/flowbite-svelte/commit/cf1f421964a7122c77cf2b27615f4837ec3cf687))
|
|
11
|
+
|
|
5
12
|
### [0.21.7](https://github.com/themesberg/flowbite-svelte/compare/v0.21.6...v0.21.7) (2022-07-17)
|
|
6
13
|
|
|
7
14
|
|
package/index.d.ts
CHANGED
|
@@ -79,6 +79,14 @@ export { default as SidebarDropdownItem } from './sidebars/SidebarDropdownItem.s
|
|
|
79
79
|
export { default as SidebarDropdownWrapper } from './sidebars/SidebarDropdownWrapper.svelte';
|
|
80
80
|
export { default as SidebarGroup } from './sidebars/SidebarGroup.svelte';
|
|
81
81
|
export { default as SidebarWrapper } from './sidebars/SidebarWrapper.svelte';
|
|
82
|
+
export { default as CardPlaceholder } from './skeleton/CardPlaceholder.svelte';
|
|
83
|
+
export { default as ImagePlaceholder } from './skeleton/ImagePlaceholder.svelte';
|
|
84
|
+
export { default as ListPlaceholder } from './skeleton/ListPlaceholder.svelte';
|
|
85
|
+
export { default as Skeleton } from './skeleton/Skeleton.svelte';
|
|
86
|
+
export { default as TestimonialPlaceholder } from './skeleton/TestimonialPlaceholder.svelte';
|
|
87
|
+
export { default as TextPlaceholder } from './skeleton/TextPlaceholder.svelte';
|
|
88
|
+
export { default as VideoPlaceholder } from './skeleton/VideoPlaceholder.svelte';
|
|
89
|
+
export { default as WidgetPlaceholder } from './skeleton/WidgetPlaceholder.svelte';
|
|
82
90
|
export { default as Spinner } from './spinners/Spinner.svelte';
|
|
83
91
|
export { default as Table } from './tables/Table.svelte';
|
|
84
92
|
export { default as TableBody } from './tables/TableBody.svelte';
|
package/index.js
CHANGED
|
@@ -100,6 +100,15 @@ export { default as SidebarDropdownItem } from './sidebars/SidebarDropdownItem.s
|
|
|
100
100
|
export { default as SidebarDropdownWrapper } from './sidebars/SidebarDropdownWrapper.svelte';
|
|
101
101
|
export { default as SidebarGroup } from './sidebars/SidebarGroup.svelte';
|
|
102
102
|
export { default as SidebarWrapper } from './sidebars/SidebarWrapper.svelte';
|
|
103
|
+
// Skeleton
|
|
104
|
+
export { default as CardPlaceholder } from './skeleton/CardPlaceholder.svelte';
|
|
105
|
+
export { default as ImagePlaceholder } from './skeleton/ImagePlaceholder.svelte';
|
|
106
|
+
export { default as ListPlaceholder } from './skeleton/ListPlaceholder.svelte';
|
|
107
|
+
export { default as Skeleton } from './skeleton/Skeleton.svelte';
|
|
108
|
+
export { default as TestimonialPlaceholder } from './skeleton/TestimonialPlaceholder.svelte';
|
|
109
|
+
export { default as TextPlaceholder } from './skeleton/TextPlaceholder.svelte';
|
|
110
|
+
export { default as VideoPlaceholder } from './skeleton/VideoPlaceholder.svelte';
|
|
111
|
+
export { default as WidgetPlaceholder } from './skeleton/WidgetPlaceholder.svelte';
|
|
103
112
|
// Spin
|
|
104
113
|
export { default as Spinner } from './spinners/Spinner.svelte';
|
|
105
114
|
// Tables
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowbite-svelte",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.8",
|
|
4
4
|
"description": "Flowbite components for Svelte",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": {
|
|
@@ -188,6 +188,14 @@
|
|
|
188
188
|
"./sidebars/SidebarGroup.svelte": "./sidebars/SidebarGroup.svelte",
|
|
189
189
|
"./sidebars/SidebarItem.svelte": "./sidebars/SidebarItem.svelte",
|
|
190
190
|
"./sidebars/SidebarWrapper.svelte": "./sidebars/SidebarWrapper.svelte",
|
|
191
|
+
"./skeleton/CardPlaceholder.svelte": "./skeleton/CardPlaceholder.svelte",
|
|
192
|
+
"./skeleton/ImagePlaceholder.svelte": "./skeleton/ImagePlaceholder.svelte",
|
|
193
|
+
"./skeleton/ListPlaceholder.svelte": "./skeleton/ListPlaceholder.svelte",
|
|
194
|
+
"./skeleton/Skeleton.svelte": "./skeleton/Skeleton.svelte",
|
|
195
|
+
"./skeleton/TestimonialPlaceholder.svelte": "./skeleton/TestimonialPlaceholder.svelte",
|
|
196
|
+
"./skeleton/TextPlaceholder.svelte": "./skeleton/TextPlaceholder.svelte",
|
|
197
|
+
"./skeleton/VideoPlaceholder.svelte": "./skeleton/VideoPlaceholder.svelte",
|
|
198
|
+
"./skeleton/WidgetPlaceholder.svelte": "./skeleton/WidgetPlaceholder.svelte",
|
|
191
199
|
"./spinners/Spinner.svelte": "./spinners/Spinner.svelte",
|
|
192
200
|
"./tables/Table.svelte": "./tables/Table.svelte",
|
|
193
201
|
"./tables/TableBody.svelte": "./tables/TableBody.svelte",
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<div
|
|
2
|
+
role="status"
|
|
3
|
+
class="p-4 max-w-sm rounded border border-gray-200 shadow animate-pulse md:p-6 dark:border-gray-700"
|
|
4
|
+
>
|
|
5
|
+
<div class="flex justify-center items-center mb-4 h-48 bg-gray-300 rounded dark:bg-gray-700">
|
|
6
|
+
<svg
|
|
7
|
+
class="w-12 h-12 text-gray-200 dark:text-gray-600"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
viewBox="0 0 640 512"
|
|
12
|
+
><path
|
|
13
|
+
d="M480 80C480 35.82 515.8 0 560 0C604.2 0 640 35.82 640 80C640 124.2 604.2 160 560 160C515.8 160 480 124.2 480 80zM0 456.1C0 445.6 2.964 435.3 8.551 426.4L225.3 81.01C231.9 70.42 243.5 64 256 64C268.5 64 280.1 70.42 286.8 81.01L412.7 281.7L460.9 202.7C464.1 196.1 472.2 192 480 192C487.8 192 495 196.1 499.1 202.7L631.1 419.1C636.9 428.6 640 439.7 640 450.9C640 484.6 612.6 512 578.9 512H55.91C25.03 512 .0006 486.1 .0006 456.1L0 456.1z"
|
|
14
|
+
/></svg
|
|
15
|
+
>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-48 mb-4" />
|
|
18
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 mb-2.5" />
|
|
19
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 mb-2.5" />
|
|
20
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
21
|
+
<div class="flex items-center mt-4 space-x-3">
|
|
22
|
+
<svg
|
|
23
|
+
class="w-14 h-14 text-gray-200 dark:text-gray-700"
|
|
24
|
+
aria-hidden="true"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
viewBox="0 0 20 20"
|
|
27
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
+
><path
|
|
29
|
+
fill-rule="evenodd"
|
|
30
|
+
d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-6-3a2 2 0 11-4 0 2 2 0 014 0zm-2 4a5 5 0 00-4.546 2.916A5.986 5.986 0 0010 16a5.986 5.986 0 004.546-2.084A5 5 0 0010 11z"
|
|
31
|
+
clip-rule="evenodd"
|
|
32
|
+
/></svg
|
|
33
|
+
>
|
|
34
|
+
<div>
|
|
35
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-32 mb-2" />
|
|
36
|
+
<div class="w-48 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<span class="sr-only">Loading...</span>
|
|
40
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} CardPlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} CardPlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} CardPlaceholderSlots */
|
|
4
|
+
export default class CardPlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type CardPlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type CardPlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type CardPlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<div
|
|
2
|
+
role="status"
|
|
3
|
+
class="space-y-8 animate-pulse md:space-y-0 md:space-x-8 md:flex md:items-center"
|
|
4
|
+
>
|
|
5
|
+
<div
|
|
6
|
+
class="flex justify-center items-center w-full h-48 bg-gray-300 rounded sm:w-96 dark:bg-gray-700"
|
|
7
|
+
>
|
|
8
|
+
<svg
|
|
9
|
+
class="w-12 h-12 text-gray-200"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
aria-hidden="true"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
viewBox="0 0 640 512"
|
|
14
|
+
><path
|
|
15
|
+
d="M480 80C480 35.82 515.8 0 560 0C604.2 0 640 35.82 640 80C640 124.2 604.2 160 560 160C515.8 160 480 124.2 480 80zM0 456.1C0 445.6 2.964 435.3 8.551 426.4L225.3 81.01C231.9 70.42 243.5 64 256 64C268.5 64 280.1 70.42 286.8 81.01L412.7 281.7L460.9 202.7C464.1 196.1 472.2 192 480 192C487.8 192 495 196.1 499.1 202.7L631.1 419.1C636.9 428.6 640 439.7 640 450.9C640 484.6 612.6 512 578.9 512H55.91C25.03 512 .0006 486.1 .0006 456.1L0 456.1z"
|
|
16
|
+
/></svg
|
|
17
|
+
>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="w-full">
|
|
20
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-48 mb-4" />
|
|
21
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[480px] mb-2.5" />
|
|
22
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 mb-2.5" />
|
|
23
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[440px] mb-2.5" />
|
|
24
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[460px] mb-2.5" />
|
|
25
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[360px]" />
|
|
26
|
+
</div>
|
|
27
|
+
<span class="sr-only">Loading...</span>
|
|
28
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} ImagePlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} ImagePlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} ImagePlaceholderSlots */
|
|
4
|
+
export default class ImagePlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type ImagePlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type ImagePlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type ImagePlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<div
|
|
2
|
+
role="status"
|
|
3
|
+
class="p-4 space-y-4 max-w-md rounded border border-gray-200 divide-y divide-gray-200 shadow animate-pulse dark:divide-gray-700 md:p-6 dark:border-gray-700"
|
|
4
|
+
>
|
|
5
|
+
<div class="flex justify-between items-center">
|
|
6
|
+
<div>
|
|
7
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24 mb-2.5" />
|
|
8
|
+
<div class="w-32 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
9
|
+
</div>
|
|
10
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-700 w-12" />
|
|
11
|
+
</div>
|
|
12
|
+
<div class="flex justify-between items-center pt-4">
|
|
13
|
+
<div>
|
|
14
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24 mb-2.5" />
|
|
15
|
+
<div class="w-32 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
16
|
+
</div>
|
|
17
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-700 w-12" />
|
|
18
|
+
</div>
|
|
19
|
+
<div class="flex justify-between items-center pt-4">
|
|
20
|
+
<div>
|
|
21
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24 mb-2.5" />
|
|
22
|
+
<div class="w-32 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
23
|
+
</div>
|
|
24
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-700 w-12" />
|
|
25
|
+
</div>
|
|
26
|
+
<div class="flex justify-between items-center pt-4">
|
|
27
|
+
<div>
|
|
28
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24 mb-2.5" />
|
|
29
|
+
<div class="w-32 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
30
|
+
</div>
|
|
31
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-700 w-12" />
|
|
32
|
+
</div>
|
|
33
|
+
<div class="flex justify-between items-center pt-4">
|
|
34
|
+
<div>
|
|
35
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24 mb-2.5" />
|
|
36
|
+
<div class="w-32 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
37
|
+
</div>
|
|
38
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-700 w-12" />
|
|
39
|
+
</div>
|
|
40
|
+
<span class="sr-only">Loading...</span>
|
|
41
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} ListPlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} ListPlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} ListPlaceholderSlots */
|
|
4
|
+
export default class ListPlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type ListPlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type ListPlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type ListPlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<div role="status" class="max-w-sm animate-pulse">
|
|
2
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-48 mb-4" />
|
|
3
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[360px] mb-2.5" />
|
|
4
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 mb-2.5" />
|
|
5
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[330px] mb-2.5" />
|
|
6
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[300px] mb-2.5" />
|
|
7
|
+
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[360px]" />
|
|
8
|
+
<span class="sr-only">Loading...</span>
|
|
9
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} SkeletonProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} SkeletonEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} SkeletonSlots */
|
|
4
|
+
export default class Skeleton extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type SkeletonProps = typeof __propDef.props;
|
|
9
|
+
export type SkeletonEvents = typeof __propDef.events;
|
|
10
|
+
export type SkeletonSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<div role="status" class="animate-pulse">
|
|
2
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-700 max-w-[640px] mb-2.5 mx-auto" />
|
|
3
|
+
<div class="h-2.5 mx-auto bg-gray-300 rounded-full dark:bg-gray-700 max-w-[540px]" />
|
|
4
|
+
<div class="flex justify-center items-center mt-4">
|
|
5
|
+
<svg
|
|
6
|
+
class="mr-2 w-10 h-10 text-gray-200 dark:text-gray-700"
|
|
7
|
+
aria-hidden="true"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
viewBox="0 0 20 20"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
><path
|
|
12
|
+
fill-rule="evenodd"
|
|
13
|
+
d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-6-3a2 2 0 11-4 0 2 2 0 014 0zm-2 4a5 5 0 00-4.546 2.916A5.986 5.986 0 0010 16a5.986 5.986 0 004.546-2.084A5 5 0 0010 11z"
|
|
14
|
+
clip-rule="evenodd"
|
|
15
|
+
/></svg
|
|
16
|
+
>
|
|
17
|
+
<div class="w-20 h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 mr-3" />
|
|
18
|
+
<div class="w-24 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
19
|
+
</div>
|
|
20
|
+
<span class="sr-only">Loading...</span>
|
|
21
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} TestimonialPlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} TestimonialPlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} TestimonialPlaceholderSlots */
|
|
4
|
+
export default class TestimonialPlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type TestimonialPlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type TestimonialPlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type TestimonialPlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<div role="status" class="space-y-2.5 animate-pulse max-w-lg">
|
|
2
|
+
<div class="flex items-center space-x-2 w-full">
|
|
3
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-32" />
|
|
4
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24" />
|
|
5
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
6
|
+
</div>
|
|
7
|
+
<div class="flex items-center w-full space-x-2 max-w-[480px]">
|
|
8
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-full" />
|
|
9
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
10
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24" />
|
|
11
|
+
</div>
|
|
12
|
+
<div class="flex items-center w-full space-x-2 max-w-[400px]">
|
|
13
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
14
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-80" />
|
|
15
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
16
|
+
</div>
|
|
17
|
+
<div class="flex items-center w-full space-x-2 max-w-[480px]">
|
|
18
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-full" />
|
|
19
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
20
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24" />
|
|
21
|
+
</div>
|
|
22
|
+
<div class="flex items-center w-full space-x-2 max-w-[440px]">
|
|
23
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-32" />
|
|
24
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-24" />
|
|
25
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-full" />
|
|
26
|
+
</div>
|
|
27
|
+
<div class="flex items-center w-full space-x-2 max-w-[360px]">
|
|
28
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
29
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-80" />
|
|
30
|
+
<div class="h-2.5 bg-gray-300 rounded-full dark:bg-gray-600 w-full" />
|
|
31
|
+
</div>
|
|
32
|
+
<span class="sr-only">Loading...</span>
|
|
33
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} TextPlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} TextPlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} TextPlaceholderSlots */
|
|
4
|
+
export default class TextPlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type TextPlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type TextPlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type TextPlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<div
|
|
2
|
+
role="status"
|
|
3
|
+
class="flex justify-center items-center max-w-sm h-56 bg-gray-300 rounded-lg animate-pulse dark:bg-gray-700"
|
|
4
|
+
>
|
|
5
|
+
<svg
|
|
6
|
+
class="w-12 h-12 text-gray-200 dark:text-gray-600"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
aria-hidden="true"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
viewBox="0 0 384 512"
|
|
11
|
+
><path
|
|
12
|
+
d="M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"
|
|
13
|
+
/></svg
|
|
14
|
+
>
|
|
15
|
+
<span class="sr-only">Loading...</span>
|
|
16
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} VideoPlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} VideoPlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} VideoPlaceholderSlots */
|
|
4
|
+
export default class VideoPlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type VideoPlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type VideoPlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type VideoPlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<div
|
|
2
|
+
role="status"
|
|
3
|
+
class="p-4 max-w-sm rounded border border-gray-200 shadow animate-pulse md:p-6 dark:border-gray-700"
|
|
4
|
+
>
|
|
5
|
+
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-32 mb-2.5" />
|
|
6
|
+
<div class="mb-10 w-48 h-2 bg-gray-200 rounded-full dark:bg-gray-700" />
|
|
7
|
+
<div class="flex items-baseline mt-4 space-x-6">
|
|
8
|
+
<div class="w-full h-72 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
9
|
+
<div class="w-full h-56 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
10
|
+
<div class="w-full h-72 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
11
|
+
<div class="w-full h-64 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
12
|
+
<div class="w-full h-80 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
13
|
+
<div class="w-full h-72 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
14
|
+
<div class="w-full h-80 bg-gray-200 rounded-t-lg dark:bg-gray-700" />
|
|
15
|
+
</div>
|
|
16
|
+
<span class="sr-only">Loading...</span>
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} WidgetPlaceholderProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} WidgetPlaceholderEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} WidgetPlaceholderSlots */
|
|
4
|
+
export default class WidgetPlaceholder extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type WidgetPlaceholderProps = typeof __propDef.props;
|
|
9
|
+
export type WidgetPlaceholderEvents = typeof __propDef.events;
|
|
10
|
+
export type WidgetPlaceholderSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|