flowbite-svelte 0.14.8 → 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 +7 -0
- package/dropdowns/dropdownStores.d.ts +2 -0
- package/dropdowns/dropdownStores.js +5 -4
- package/index.js +2 -2
- package/modals/modalStores.d.ts +2 -0
- package/modals/modalStores.js +5 -4
- package/package.json +1 -1
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.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
|
+
|
|
5
12
|
### [0.14.8](https://github.com/themesberg/flowbite-svelte/compare/v0.14.7...v0.14.8) (2022-04-19)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dropdownIdStore = void 0;
|
|
4
|
+
var store_1 = require("svelte/store");
|
|
5
|
+
exports.dropdownIdStore = (0, store_1.writable)('');
|
package/index.js
CHANGED
|
@@ -55,7 +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'
|
|
58
|
+
export { dropdownIdStore } from './dropdowns/dropdownStores.ts'
|
|
59
59
|
|
|
60
60
|
// Footers
|
|
61
61
|
export { default as SimpleFooter } from'./footer/SimpleFooter.svelte'
|
|
@@ -79,7 +79,7 @@ export { default as Toggle } from './forms/Toggle.svelte'
|
|
|
79
79
|
export { default as List } from'./list-group/List.svelte'
|
|
80
80
|
|
|
81
81
|
// Modals
|
|
82
|
-
export { modalIdStore } from './modals/modalStores'
|
|
82
|
+
export { modalIdStore } from './modals/modalStores.ts'
|
|
83
83
|
export { default as ExtraLargeModal } from'./modals/ExtraLargeModal.svelte'
|
|
84
84
|
export { default as LargeModal } from'./modals/LargeModal.svelte'
|
|
85
85
|
export { default as MediumModal } from'./modals/MediumModal.svelte'
|
package/modals/modalStores.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.modalIdStore = void 0;
|
|
4
|
+
var store_1 = require("svelte/store");
|
|
5
|
+
exports.modalIdStore = (0, store_1.writable)('');
|