Skip to content

Commit

Permalink
v0.46.10
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Jun 26, 2024
1 parent 5910827 commit ddb09b3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .changeset/olive-jeans-shout.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.10

### Patch Changes

- fix: Checkbox for group ([`59108274dd1acdbad37a5fdb26d7ff93c9bf8de5`](https://github.com/themesberg/flowbite-svelte/commit/59108274dd1acdbad37a5fdb26d7ff93c9bf8de5))

## 0.46.9

### 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.9",
"version": "0.46.10",
"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.41.0",
"flowbite-svelte": "^0.46.9",
"flowbite-svelte": "^0.46.10",
"flowbite-svelte-blocks": "^1.1.3",
"flowbite-svelte-icons": "^1.6.1",
"mdsvex": "^0.11.2",
Expand Down
8 changes: 5 additions & 3 deletions src/lib/forms/Checkbox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@
@component
[Go to docs](https://flowbite-svelte.com/)
## Props
@prop export let name: string;
@prop export let name: string | undefined = undefined;
@prop export let color: FormColorType = 'primary';
@prop export let custom: boolean = false;
@prop export let inline: boolean = false;
@prop export let group: CheckboxItem[];
@prop export let choices: CheckboxItem[];
@prop export let group: string[] = [];
@prop export let choices: CheckboxItem[] = [];
@prop export let value: string | number = 'on';
@prop export let checked: boolean | undefined = undefined;
@prop export let spacing: string = $$slots.default ? 'me-2' : '';
@prop export let groupLabelClass: string = '';
@prop export let groupInputClass: strixng = '';
-->
2 changes: 1 addition & 1 deletion src/routes/component-data/Checkbox.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"Checkbox","slots":[],"events":["on:keyup","on:keydown","on:keypress","on:focus","on:blur","on:click","on:mouseover","on:mouseenter","on:mouseleave","on:paste","on:change"],"props":[["name","string | undefined","undefined"],["color","FormColorType","'primary'"],["custom","boolean","false"],["inline","boolean","false"],["group","CheckboxItem[]","[]"],["choices","CheckboxItem[]","[]"],["value","string | number","'on'"],["checked","boolean | undefined","undefined"],["spacing","string","$$slots.default ? 'me-2' : ''"]]}
{"name":"Checkbox","slots":[],"events":["on:keyup","on:keydown","on:keypress","on:focus","on:blur","on:click","on:mouseover","on:mouseenter","on:mouseleave","on:paste","on:change"],"props":[["name","string | undefined","undefined"],["color","FormColorType","'primary'"],["custom","boolean","false"],["inline","boolean","false"],["group","string[]","[]"],["choices","CheckboxItem[]","[]"],["value","string | number","'on'"],["checked","boolean | undefined","undefined"],["spacing","string","$$slots.default ? 'me-2' : ''"],["groupLabelClass","string","''"],["groupInputClass","strixng","''"]]}

0 comments on commit ddb09b3

Please sign in to comment.