flowbite-svelte 0.14.4 → 0.14.7
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 +23 -0
- package/README.md +6 -1
- package/index.js +2 -1
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.14.7](https://github.com/themesberg/flowbite-svelte/compare/v0.14.6...v0.14.7) (2022-04-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add default as to dropdown and modal Stores ([4fc6ee0](https://github.com/themesberg/flowbite-svelte/commit/4fc6ee0f754f5db15c6345c61b016aff4bc92ac7))
|
|
11
|
+
* update package.json and clean up lib/index ([e37a45e](https://github.com/themesberg/flowbite-svelte/commit/e37a45e81f07f7f98f4ef7c7b569e203bf63582a))
|
|
12
|
+
|
|
13
|
+
### [0.14.6](https://github.com/themesberg/flowbite-svelte/compare/v0.14.5...v0.14.6) (2022-04-19)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* export dropdownStores in index.js ([f4b7f6c](https://github.com/themesberg/flowbite-svelte/commit/f4b7f6c6e5fcc118e5279ed61e017477c657fa0b))
|
|
19
|
+
|
|
20
|
+
### [0.14.5](https://github.com/themesberg/flowbite-svelte/compare/v0.14.4...v0.14.5) (2022-04-19)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* export dropdownIdStore in index.js ([4c897d9](https://github.com/themesberg/flowbite-svelte/commit/4c897d973a88e7d1863e28c49a1675110649252f))
|
|
26
|
+
* update test for /buttons/setup page ([90daabb](https://github.com/themesberg/flowbite-svelte/commit/90daabbad3d921e5938c990f3099bd268df4aebf))
|
|
27
|
+
|
|
5
28
|
### [0.14.4](https://github.com/shinokada/flowbite-svelte/compare/v0.14.3...v0.14.4) (2022-04-19)
|
|
6
29
|
|
|
7
30
|
|
package/README.md
CHANGED
|
@@ -63,7 +63,8 @@
|
|
|
63
63
|
|
|
64
64
|
## Carousel components
|
|
65
65
|
|
|
66
|
-
- [Carousel](https://flowbite-svelte.vercel.app/carousels)
|
|
66
|
+
- [Carousel](https://flowbite-svelte.vercel.app/carousels/default)
|
|
67
|
+
- [Carousel with transition](https://flowbite-svelte.vercel.app/carousels/transition)
|
|
67
68
|
|
|
68
69
|
## Dark mode components
|
|
69
70
|
|
|
@@ -112,6 +113,10 @@
|
|
|
112
113
|
|
|
113
114
|
- [Pagination](https://flowbite-svelte.vercel.app/paginations)
|
|
114
115
|
|
|
116
|
+
## Progress bar
|
|
117
|
+
|
|
118
|
+
- [Probress bar](https://flowbite-svelte.vercel.app/progressbars)
|
|
119
|
+
|
|
115
120
|
## Sidebar components
|
|
116
121
|
|
|
117
122
|
- [Sidebar](https://flowbite-svelte.vercel.app/sidebars)
|
package/index.js
CHANGED
|
@@ -55,6 +55,7 @@ export { default as DarkMode } from'./darkmode/DarkMode.svelte'
|
|
|
55
55
|
// Dropdown
|
|
56
56
|
export { default as Dropdown } from './dropdowns/DropdownDefault.svelte'
|
|
57
57
|
export { default as ImgDropdown } from './dropdowns/ImgDropdown.svelte'
|
|
58
|
+
export { default as dropdownIdStore } from './dropdowns/dropdownStores'
|
|
58
59
|
|
|
59
60
|
// Footers
|
|
60
61
|
export { default as SimpleFooter } from'./footer/SimpleFooter.svelte'
|
|
@@ -78,7 +79,7 @@ export { default as Toggle } from './forms/Toggle.svelte'
|
|
|
78
79
|
export { default as List } from'./list-group/List.svelte'
|
|
79
80
|
|
|
80
81
|
// Modals
|
|
81
|
-
export { modalIdStore } from'./modals/modalStores'
|
|
82
|
+
export { default as modalIdStore } from './modals/modalStores'
|
|
82
83
|
export { default as ExtraLargeModal } from'./modals/ExtraLargeModal.svelte'
|
|
83
84
|
export { default as LargeModal } from'./modals/LargeModal.svelte'
|
|
84
85
|
export { default as MediumModal } from'./modals/MediumModal.svelte'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowbite-svelte",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.7",
|
|
4
4
|
"description": "Flowbite components for Svelte",
|
|
5
5
|
"main": "./package/index.js",
|
|
6
6
|
"author": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "https://blog.codewithshin.com"
|
|
10
10
|
},
|
|
11
11
|
"bugs": "https://github.com/themesberg/flowbite-svelte/issues",
|
|
12
|
-
"homepage": "https://
|
|
12
|
+
"homepage": "https://flowbite-svelte.com/",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@codewithshin/svelte-sidebar": "^0.4.8",
|
|
@@ -50,10 +50,13 @@
|
|
|
50
50
|
"alert",
|
|
51
51
|
"avatar",
|
|
52
52
|
"badges",
|
|
53
|
+
"breadcrumbs",
|
|
53
54
|
"button-groups",
|
|
54
55
|
"buttons",
|
|
55
56
|
"cards",
|
|
57
|
+
"carousel",
|
|
56
58
|
"darkmode",
|
|
59
|
+
"dropdown",
|
|
57
60
|
"footer",
|
|
58
61
|
"forms",
|
|
59
62
|
"list group",
|
|
@@ -71,7 +74,7 @@
|
|
|
71
74
|
],
|
|
72
75
|
"repository": {
|
|
73
76
|
"type": "git",
|
|
74
|
-
"url": "https://github.com/
|
|
77
|
+
"url": "https://github.com/themesberg/flowbite-svelte"
|
|
75
78
|
},
|
|
76
79
|
"dependencies": {
|
|
77
80
|
"@codewithshin/svelte-heroicons": "^1.1.3",
|