flowbite-svelte 1.13.14 → 1.13.16
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/dist/forms/tags/Tags.svelte +2 -2
- package/package.json +17 -11
|
@@ -158,11 +158,11 @@
|
|
|
158
158
|
<span class={spanCls({ class: clsx(theme?.span, styling.span) })}>
|
|
159
159
|
{tag}
|
|
160
160
|
</span>
|
|
161
|
-
<CloseButton disabled size={closeBtnSize} class={close({ class: clsx(theme?.close, styling.close) })} onclick={() => deleteField(index)} />
|
|
161
|
+
<CloseButton {disabled} size={closeBtnSize} class={close({ class: clsx(theme?.close, styling.close) })} onclick={() => deleteField(index)} />
|
|
162
162
|
</div>
|
|
163
163
|
{/each}
|
|
164
164
|
<div class="relative w-full" bind:this={inputContainer}>
|
|
165
|
-
<input {...inputProps} disabled bind:this={inputElement} onkeydown={handleKeys} oninput={handleInput} bind:value={contents} placeholder={value.length === 0 ? placeholder : ""} type="text" autocomplete="off" class={inputCls({ class: clsx(styling.input) })} />
|
|
165
|
+
<input {...inputProps} {disabled} bind:this={inputElement} onkeydown={handleKeys} oninput={handleInput} bind:value={contents} placeholder={value.length === 0 ? placeholder : ""} type="text" autocomplete="off" class={inputCls({ class: clsx(styling.input) })} />
|
|
166
166
|
{#if availableTags.length > 0 && contents.trim() !== ""}
|
|
167
167
|
{@const filteredSuggestions = availableTags.filter((tag) => tag.toLowerCase().includes(contents.trim().toLowerCase()) && (!unique || !value.some((t) => t.toLowerCase() === tag.toLowerCase())))}
|
|
168
168
|
{#if filteredSuggestions.length > 0}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowbite-svelte",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.16",
|
|
4
4
|
"description": "Flowbite components for Svelte",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": {
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@changesets/cli": "^2.29.7",
|
|
16
|
-
"@docsearch/css": "^4.0
|
|
17
|
-
"@docsearch/js": "^4.0
|
|
18
|
-
"@eslint/compat": "^1.
|
|
16
|
+
"@docsearch/css": "^4.1.0",
|
|
17
|
+
"@docsearch/js": "^4.1.0",
|
|
18
|
+
"@eslint/compat": "^1.4.0",
|
|
19
19
|
"@eslint/js": "^9.36.0",
|
|
20
20
|
"@flowbite-svelte-plugins/chart": "^0.2.4",
|
|
21
21
|
"@flowbite-svelte-plugins/datatable": "^0.4.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@sveltejs/adapter-auto": "^6.1.0",
|
|
26
26
|
"@sveltejs/adapter-vercel": "^5.10.2",
|
|
27
27
|
"@sveltejs/enhanced-img": "0.6.1",
|
|
28
|
-
"@sveltejs/kit": "^2.
|
|
28
|
+
"@sveltejs/kit": "^2.43.1",
|
|
29
29
|
"@sveltejs/package": "^2.5.3",
|
|
30
30
|
"@sveltejs/vite-plugin-svelte": "^6.2.0",
|
|
31
31
|
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"deepmerge": "^4.3.1",
|
|
39
39
|
"eslint": "^9.36.0",
|
|
40
40
|
"eslint-config-prettier": "^10.1.8",
|
|
41
|
-
"eslint-plugin-svelte": "^3.12.
|
|
41
|
+
"eslint-plugin-svelte": "^3.12.4",
|
|
42
42
|
"flowbite-svelte-admin-dashboard": "^2.0.0",
|
|
43
43
|
"flowbite-svelte-blocks": "^2.1.0",
|
|
44
44
|
"flowbite-svelte-icons": "^3.0.0",
|
|
@@ -61,17 +61,18 @@
|
|
|
61
61
|
"satori": "^0.18.3",
|
|
62
62
|
"satori-html": "^0.3.2",
|
|
63
63
|
"simple-datatables": "^10.0.0",
|
|
64
|
-
"
|
|
65
|
-
"svelte
|
|
64
|
+
"super-sitemap": "^1.0.5",
|
|
65
|
+
"svelte": "^5.39.4",
|
|
66
|
+
"svelte-check": "^4.3.2",
|
|
66
67
|
"svelte-doc-llm": "^0.4.1",
|
|
67
|
-
"svelte-lib-helpers": "^0.4.
|
|
68
|
+
"svelte-lib-helpers": "^0.4.31",
|
|
68
69
|
"svelte-meta-tags": "^4.4.1",
|
|
69
70
|
"svelte-rune-highlight": "^0.7.1",
|
|
70
71
|
"tailwindcss": "^4.1.13",
|
|
71
72
|
"tsx": "^4.20.5",
|
|
72
73
|
"typescript": "^5.9.2",
|
|
73
|
-
"typescript-eslint": "^8.44.
|
|
74
|
-
"vite": "^7.1.
|
|
74
|
+
"typescript-eslint": "^8.44.1",
|
|
75
|
+
"vite": "^7.1.7",
|
|
75
76
|
"vite-plugin-devtools-json": "^1.0.0",
|
|
76
77
|
"vitest": "^3.2.4"
|
|
77
78
|
},
|
|
@@ -144,6 +145,11 @@
|
|
|
144
145
|
"types": "./dist/index.d.ts",
|
|
145
146
|
"svelte": "./dist/index.js"
|
|
146
147
|
},
|
|
148
|
+
"./types": {
|
|
149
|
+
"types": "./dist/types.d.ts",
|
|
150
|
+
"import": "./dist/types.js",
|
|
151
|
+
"default": "./dist/types.js"
|
|
152
|
+
},
|
|
147
153
|
"./Accordion.svelte": {
|
|
148
154
|
"types": "./dist/accordion/Accordion.svelte.d.ts",
|
|
149
155
|
"svelte": "./dist/accordion/Accordion.svelte"
|