@kayord/ui 0.8.7 → 0.8.8

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.
@@ -17,5 +17,6 @@ export type InputEvents = {
17
17
  mouseleave: FormInputEvent<MouseEvent>;
18
18
  paste: FormInputEvent<ClipboardEvent>;
19
19
  input: FormInputEvent<InputEvent>;
20
+ wheel: FormInputEvent<WheelEvent>;
20
21
  };
21
22
  export { Root, Root as Input, };
@@ -2,6 +2,7 @@
2
2
  let className = void 0;
3
3
  export let value = void 0;
4
4
  export { className as class };
5
+ export let readonly = void 0;
5
6
  </script>
6
7
 
7
8
  <input
@@ -10,6 +11,7 @@ export { className as class };
10
11
  className
11
12
  )}
12
13
  bind:value
14
+ {readonly}
13
15
  on:blur
14
16
  on:change
15
17
  on:click
@@ -24,5 +26,6 @@ export { className as class };
24
26
  on:mouseleave
25
27
  on:paste
26
28
  on:input
29
+ on:wheel
27
30
  {...$$restProps}
28
31
  />
@@ -3,7 +3,7 @@ let className = void 0;
3
3
  export { className as class };
4
4
  </script>
5
5
 
6
- <div class="w-full overflow-auto">
6
+ <div class="relative w-full overflow-auto">
7
7
  <table class={cn("w-full caption-bottom text-sm", className)} {...$$restProps}>
8
8
  <slot />
9
9
  </table>
@@ -2,6 +2,7 @@
2
2
  let className = void 0;
3
3
  export let value = void 0;
4
4
  export { className as class };
5
+ export let readonly = void 0;
5
6
  </script>
6
7
 
7
8
  <textarea
@@ -10,6 +11,7 @@ export { className as class };
10
11
  className
11
12
  )}
12
13
  bind:value
14
+ {readonly}
13
15
  on:blur
14
16
  on:change
15
17
  on:click
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kayord/ui",
3
3
  "private": false,
4
- "version": "0.8.7",
4
+ "version": "0.8.8",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",