flowbite-svelte 0.14.6 → 0.14.9
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 +22 -0
- package/index.js +2 -3
- package/package.json +2 -2
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.14.9](https://github.com/themesberg/flowbite-svelte/compare/v0.14.8...v0.14.9) (2022-04-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* change js to ts and add ts in index.js ([7b3bb20](https://github.com/themesberg/flowbite-svelte/commit/7b3bb206f2db09efc3e6c4d3d85117a1d6946a4e))
|
|
11
|
+
|
|
12
|
+
### [0.14.8](https://github.com/themesberg/flowbite-svelte/compare/v0.14.7...v0.14.8) (2022-04-19)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* change ts to js for svelte/store files ([625b285](https://github.com/themesberg/flowbite-svelte/commit/625b285c9ed4bc807774c20b9385fe8d8c59c6c5))
|
|
18
|
+
|
|
19
|
+
### [0.14.7](https://github.com/themesberg/flowbite-svelte/compare/v0.14.6...v0.14.7) (2022-04-19)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* add default as to dropdown and modal Stores ([4fc6ee0](https://github.com/themesberg/flowbite-svelte/commit/4fc6ee0f754f5db15c6345c61b016aff4bc92ac7))
|
|
25
|
+
* update package.json and clean up lib/index ([e37a45e](https://github.com/themesberg/flowbite-svelte/commit/e37a45e81f07f7f98f4ef7c7b569e203bf63582a))
|
|
26
|
+
|
|
5
27
|
### [0.14.6](https://github.com/themesberg/flowbite-svelte/compare/v0.14.5...v0.14.6) (2022-04-19)
|
|
6
28
|
|
|
7
29
|
|
package/index.js
CHANGED
|
@@ -55,8 +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 { dropdownIdStore } from './dropdowns/dropdownStores'
|
|
59
|
-
// export { modalIdStore } from'./modals/modalStores'
|
|
58
|
+
export { dropdownIdStore } from './dropdowns/dropdownStores.ts'
|
|
60
59
|
|
|
61
60
|
// Footers
|
|
62
61
|
export { default as SimpleFooter } from'./footer/SimpleFooter.svelte'
|
|
@@ -80,7 +79,7 @@ export { default as Toggle } from './forms/Toggle.svelte'
|
|
|
80
79
|
export { default as List } from'./list-group/List.svelte'
|
|
81
80
|
|
|
82
81
|
// Modals
|
|
83
|
-
export { modalIdStore } from './modals/modalStores'
|
|
82
|
+
export { modalIdStore } from './modals/modalStores.ts'
|
|
84
83
|
export { default as ExtraLargeModal } from'./modals/ExtraLargeModal.svelte'
|
|
85
84
|
export { default as LargeModal } from'./modals/LargeModal.svelte'
|
|
86
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.9",
|
|
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",
|