Skip to content

Commit 3c44356

Browse files
committed
v1.5.4
1 parent e708529 commit 3c44356

File tree

238 files changed

+361
-316
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+361
-316
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flowbite-svelte",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "Flowbite components for Svelte",
55
"main": "dist/index.js",
66
"author": {

src/lib/forms/input-addon/InputAddon.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
@component
4040
[Go to docs](https://flowbite-svelte.com/)
4141
## Type
42-
[InputAddonProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L778)
42+
[InputAddonProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L783)
4343
## Props
4444
@prop children
4545
@prop class: className

src/lib/forms/input-field/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
<div class={cn(combo(), comboClass)}>
203203
{#each filteredSuggestions as item, i}
204204
<button type="button" class="w-full px-3 py-2 text-left {i === selectedIndex ? 'bg-gray-100 dark:bg-gray-700' : 'hover:bg-gray-50 dark:hover:bg-gray-700'} focus:outline-none" onclick={() => selectItem(item)} onmouseenter={() => (selectedIndex = i)}>
205-
<p class={cn(comboItem(),comboItemClass)}>{item}</p>
205+
<p class={cn(comboItem(), comboItemClass)}>{item}</p>
206206
</button>
207207
{/each}
208208
</div>

src/lib/forms/label/Label.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@component
2020
[Go to docs](https://flowbite-svelte.com/)
2121
## Type
22-
[LabelProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L784)
22+
[LabelProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L789)
2323
## Props
2424
@prop children
2525
@prop color = "gray"

src/lib/forms/range/Range.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@component
1414
[Go to docs](https://flowbite-svelte.com/)
1515
## Type
16-
[RangeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L812)
16+
[RangeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L817)
1717
## Props
1818
@prop value = $bindable()
1919
@prop appearance = "none"

src/lib/forms/search/Search.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
@component
3737
[Go to docs](https://flowbite-svelte.com/)
3838
## Type
39-
[SearchProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L818)
39+
[SearchProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L823)
4040
## Props
4141
@prop children
4242
@prop inputClass

src/lib/forms/tags/Tags.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
@component
6666
[Go to docs](https://flowbite-svelte.com/)
6767
## Type
68-
[TagsProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L862)
68+
[TagsProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L867)
6969
## Props
7070
@prop value = $bindable([])
7171
@prop itemClass

src/lib/forms/textarea/Textarea.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
@component
4949
[Go to docs](https://flowbite-svelte.com/)
5050
## Type
51-
[TextareaProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L908)
51+
[TextareaProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L913)
5252
## Props
5353
@prop header
5454
@prop footer

src/lib/forms/timepicker/Timepicker.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
@component
221221
[Go to docs](https://flowbite-svelte.com/)
222222
## Type
223-
[TimepickerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L880)
223+
[TimepickerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L885)
224224
## Props
225225
@prop id = "time"
226226
@prop endId = "end-time"

0 commit comments

Comments
 (0)