@r2digisolutions/ui 0.21.1 → 0.21.3

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.
@@ -18,12 +18,12 @@
18
18
  ]}
19
19
  >
20
20
  {#if header}
21
- <header class="flex flex-row gap-2 p-6 pb-2">
21
+ <header class="flex flex-row p-6 pb-2">
22
22
  {@render header()}
23
23
  </header>
24
24
  {/if}
25
25
 
26
- <section class={['flex flex-1 flex-col gap-2', props.body_class]}>
26
+ <section class={['flex flex-1 flex-col', props.body_class]}>
27
27
  {@render children()}
28
28
  </section>
29
29
 
@@ -11,6 +11,7 @@ interface Base<TValue = unknown> {
11
11
  value?: TValue;
12
12
  onchange?: (value: TValue, e: Event) => void;
13
13
  onkeydown?: (e: KeyboardEvent) => void;
14
+ onkeypress?: (e: KeyboardEvent) => void;
14
15
  onkeyup?: (e: KeyboardEvent) => void;
15
16
  onclick?: (e: MouseEvent) => void;
16
17
  onfocus?: (e: FocusEvent) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@r2digisolutions/ui",
3
- "version": "0.21.1",
3
+ "version": "0.21.3",
4
4
  "private": false,
5
5
  "packageManager": "bun@1.2.19",
6
6
  "publishConfig": {
@@ -48,40 +48,40 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@changesets/cli": "^2.29.5",
51
- "@chromatic-com/storybook": "^4.0.1",
51
+ "@chromatic-com/storybook": "^4.1.0",
52
52
  "@eslint/compat": "^1.3.1",
53
- "@playwright/test": "^1.54.1",
53
+ "@playwright/test": "^1.54.2",
54
54
  "@storybook/addon-essentials": "^8.6.14",
55
55
  "@storybook/addon-interactions": "^8.6.14",
56
56
  "@storybook/addon-svelte-csf": "5.0.7",
57
57
  "@storybook/blocks": "^8.6.14",
58
- "@storybook/svelte": "^9.0.18",
59
- "@storybook/sveltekit": "^9.0.18",
58
+ "@storybook/svelte": "^9.1.1",
59
+ "@storybook/sveltekit": "^9.1.1",
60
60
  "@storybook/test": "^8.6.14",
61
61
  "@sveltejs/adapter-static": "^3.0.8",
62
- "@sveltejs/kit": "^2.25.2",
62
+ "@sveltejs/kit": "^2.27.1",
63
63
  "@sveltejs/package": "^2.4.0",
64
64
  "@sveltejs/vite-plugin-svelte": "^6.1.0",
65
65
  "@tailwindcss/postcss": "^4.1.11",
66
66
  "@testing-library/svelte": "^5.2.8",
67
67
  "@vitest/browser": "^3.2.4",
68
68
  "changeset": "^0.2.6",
69
- "eslint": "^9.31.0",
69
+ "eslint": "^9.32.0",
70
70
  "eslint-config-prettier": "^10.1.8",
71
71
  "eslint-plugin-svelte": "^3.11.0",
72
72
  "globals": "^16.3.0",
73
73
  "jsdom": "^26.1.0",
74
- "lucide-svelte": "^0.525.0",
74
+ "lucide-svelte": "^0.536.0",
75
75
  "prettier": "^3.6.2",
76
76
  "prettier-plugin-svelte": "^3.4.0",
77
77
  "prettier-plugin-tailwindcss": "^0.6.14",
78
78
  "publint": "^0.3.12",
79
- "storybook": "^9.0.18",
80
- "svelte": "^5.36.16",
81
- "svelte-check": "^4.3.0",
79
+ "storybook": "^9.1.1",
80
+ "svelte": "^5.37.3",
81
+ "svelte-check": "^4.3.1",
82
82
  "tailwindcss": "^4.1.11",
83
- "typescript": "^5.8.3",
84
- "typescript-eslint": "^8.38.0",
83
+ "typescript": "^5.9.2",
84
+ "typescript-eslint": "^8.39.0",
85
85
  "vite": "^7.0.6",
86
86
  "vitest": "^3.2.4"
87
87
  },