Skip to content

Commit

Permalink
v0.46.5
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Jun 23, 2024
1 parent e882562 commit 433324a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.46.5

### Patch Changes

- fix: Select component update value

## 0.46.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flowbite-svelte",
"version": "0.46.4",
"version": "0.46.5",
"description": "Flowbite components for Svelte",
"main": "dist/index.js",
"packageManager": "[email protected]",
Expand Down Expand Up @@ -49,7 +49,7 @@
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.40.0",
"flowbite-svelte": "^0.46.4",
"flowbite-svelte": "^0.46.5",
"flowbite-svelte-blocks": "^1.1.3",
"flowbite-svelte-icons": "^1.6.1",
"mdsvex": "^0.11.2",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/forms/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
[Go to docs](https://flowbite-svelte.com/)
## Props
@prop export let items: SelectOptionType<any>[] = [];
@prop export let value: any = undefined;
@prop export let value: any = '';
@prop export let placeholder: string = 'Choose option ...';
@prop export let underline: boolean = false;
@prop export let size: 'sm' | 'md' | 'lg' = 'md';
Expand Down
2 changes: 1 addition & 1 deletion src/routes/component-data/Select.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"Select","slots":[],"events":["on:change","on:contextmenu","on:input"],"props":[["items","SelectOptionType<any>[]","[]"],["value","any","undefined"],["placeholder","string","'Choose option ...'"],["underline","boolean","false"],["size","'sm' | 'md' | 'lg'","'md'"],["defaultClass","string","'text-gray-900 disabled:text-gray-400 bg-gray-50 border border-gray-300 rounded-lg focus:ring-primary-500 focus:border-primary-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:disabled:text-gray-500 dark:focus:ring-primary-500 dark:focus:border-primary-500'"],["underlineClass","string","'text-gray-500 disabled:text-gray-400 bg-transparent border-0 border-b-2 border-gray-200 appearance-none dark:text-gray-400 dark:disabled:text-gray-500 dark:border-gray-700 focus:outline-none focus:ring-0 focus:border-gray-200 peer'"]]}
{"name":"Select","slots":[],"events":["on:change","on:contextmenu","on:input"],"props":[["items","SelectOptionType<any>[]","[]"],["value","any","''"],["placeholder","string","'Choose option ...'"],["underline","boolean","false"],["size","'sm' | 'md' | 'lg'","'md'"],["defaultClass","string","'text-gray-900 disabled:text-gray-400 bg-gray-50 border border-gray-300 rounded-lg focus:ring-primary-500 focus:border-primary-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:disabled:text-gray-500 dark:focus:ring-primary-500 dark:focus:border-primary-500'"],["underlineClass","string","'text-gray-500 disabled:text-gray-400 bg-transparent border-0 border-b-2 border-gray-200 appearance-none dark:text-gray-400 dark:disabled:text-gray-500 dark:border-gray-700 focus:outline-none focus:ring-0 focus:border-gray-200 peer'"]]}

0 comments on commit 433324a

Please sign in to comment.