@kayord/ui 0.9.18 → 0.9.20

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.
@@ -13,6 +13,7 @@
13
13
  // Workaround for https://github.com/sveltejs/svelte/issues/9305
14
14
  // Fixed in Svelte 5, but not backported to 4.x.
15
15
  export let readonly: $$Props["readonly"] = undefined;
16
+ export let tabindex: $$Props["tabindex"] = undefined;
16
17
  </script>
17
18
 
18
19
  <textarea
@@ -22,6 +23,7 @@
22
23
  )}
23
24
  bind:value
24
25
  {readonly}
26
+ {tabindex}
25
27
  on:blur
26
28
  on:change
27
29
  on:click
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kayord/ui",
3
3
  "private": false,
4
- "version": "0.9.18",
4
+ "version": "0.9.20",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -26,7 +26,7 @@
26
26
  "!dist/**/*.spec.*"
27
27
  ],
28
28
  "peerDependencies": {
29
- "lucide-svelte": "~0.401.0",
29
+ "lucide-svelte": ">= 0.400.0 < 1.0.0",
30
30
  "svelte": "^4.0.0 || ^5.0.0-next.1",
31
31
  "sveltekit-superforms": "^2.15.1",
32
32
  "zod": "^3.23.8"