flowbite-svelte 0.29.6 → 0.29.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 +7 -0
- package/forms/Select.svelte.d.ts +1 -1
- package/package.json +1 -1
- package/types.d.ts +2 -2
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.29.7](https://github.com/themesberg/flowbite-svelte/compare/v0.29.6...v0.29.7) (2022-12-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* select types ([#508](https://github.com/themesberg/flowbite-svelte/issues/508)) ([3ea30a9](https://github.com/themesberg/flowbite-svelte/commit/3ea30a9d336187f36f63f559fbef3b0a7dde5f23))
|
|
11
|
+
|
|
5
12
|
### [0.29.6](https://github.com/themesberg/flowbite-svelte/compare/v0.29.5...v0.29.6) (2022-12-26)
|
|
6
13
|
|
|
7
14
|
|
package/forms/Select.svelte.d.ts
CHANGED
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -139,8 +139,8 @@ export type ReviewType = {
|
|
|
139
139
|
item3: string | undefined;
|
|
140
140
|
};
|
|
141
141
|
export type SelectOptionType = {
|
|
142
|
-
name: string;
|
|
143
|
-
value: string;
|
|
142
|
+
name: string | number;
|
|
143
|
+
value: string | number;
|
|
144
144
|
};
|
|
145
145
|
export type SidebarType = {
|
|
146
146
|
id: number;
|