Skip to content

Commit

Permalink
v0.46.22
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Sep 30, 2024
1 parent cbdc231 commit 61b7aa0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .changeset/sharp-pans-tie.md

This file was deleted.

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.22

### Patch Changes

- fix: omit size from Toggle ([`cbdc23136d7cbd57338fee3ae57fd0b347fcedd6`](https://github.com/themesberg/flowbite-svelte/commit/cbdc23136d7cbd57338fee3ae57fd0b347fcedd6))

## 0.46.21

### 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.21",
"version": "0.46.22",
"description": "Flowbite components for Svelte",
"main": "dist/index.js",
"packageManager": "[email protected]",
Expand Down Expand Up @@ -51,7 +51,7 @@
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.1",
"flowbite-svelte": "^0.46.21",
"flowbite-svelte": "^0.46.22",
"flowbite-svelte-blocks": "^1.1.3",
"flowbite-svelte-icons": "^1.6.1",
"mdsvex": "^0.12.3",
Expand Down
1 change: 0 additions & 1 deletion src/lib/forms/Checkbox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
@component
[Go to docs](https://flowbite-svelte.com/)
## Props
@prop export let name: $$Props['name'] = undefined;
@prop export let color: NonNullable<$$Props['color']> = 'primary';
@prop export let custom: NonNullable<$$Props['custom']> = false;
@prop export let inline: NonNullable<$$Props['inline']> = false;
Expand Down
1 change: 0 additions & 1 deletion src/routes/component-data/Checkbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"slots": [],
"events": ["keyup", "keydown", "keypress", "focus", "blur", "click", "mouseover", "mouseenter", "mouseleave", "paste", "change"],
"props": [
["// name?", "string", ""],
["color?", "FormColorType", ""],
["custom?", "boolean", ""],
["inline?", "boolean", ""],
Expand Down
2 changes: 1 addition & 1 deletion src/routes/component-data/Select.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"slots": [],
"events": ["change", "contextmenu", "input"],
"props": [
["items", "SelectOptionType<any>[]", "[]"],
["items?", "SelectOptionType<any>[]", "[]"],
["value?", "any", "''"],
["placeholder?", "string", "'Choose option ...'"],
["underline?", "boolean", "false"],
Expand Down

0 comments on commit 61b7aa0

Please sign in to comment.