@r2digisolutions/ui 0.15.1 → 0.15.2

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.
@@ -6,6 +6,7 @@
6
6
 
7
7
  <input
8
8
  {...props}
9
+ {type}
9
10
  onchange={(e) => {
10
11
  const value = e.currentTarget.value;
11
12
 
@@ -25,5 +26,8 @@
25
26
  (onchange as (value: string | null, e: Event) => void)?.(value || null, e);
26
27
  }
27
28
  }}
28
- class="block w-full rounded-lg border border-gray-300 py-3 pr-3 pl-10 transition-colors focus:border-transparent focus:ring-2 focus:ring-purple-500"
29
+ class={[
30
+ 'block w-full rounded-lg border border-gray-300 py-3 pr-3 pl-10 transition-colors focus:border-transparent focus:ring-2 focus:ring-purple-500',
31
+ props.class
32
+ ]}
29
33
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@r2digisolutions/ui",
3
- "version": "0.15.1",
3
+ "version": "0.15.2",
4
4
  "private": false,
5
5
  "packageManager": "bun@1.2.19",
6
6
  "publishConfig": {