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 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
 
@@ -4,7 +4,7 @@ declare const __propDef: {
4
4
  props: {
5
5
  [x: string]: any;
6
6
  items?: SelectOptionType[] | undefined;
7
- value: string;
7
+ value: string | number;
8
8
  placeholder?: string | undefined;
9
9
  underline?: boolean | undefined;
10
10
  size?: "sm" | "md" | "lg" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.29.6",
3
+ "version": "0.29.7",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "index.js",
6
6
  "author": {
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;