milk-lib 0.0.40 → 0.0.41

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.
@@ -8,7 +8,6 @@
8
8
  onFocus,
9
9
  onBlur,
10
10
  onChange,
11
- onInput,
12
11
  onClick,
13
12
  placeholder,
14
13
  type = 'text',
@@ -98,8 +97,6 @@
98
97
  target.value = sanitizedValue;
99
98
  value = sanitizedValue;
100
99
  }
101
-
102
- onInput?.(event);
103
100
  };
104
101
 
105
102
  </script>
@@ -11,7 +11,7 @@ export interface ITextInputProps {
11
11
  onFocus?: FocusEventHandler<HTMLInputElement>;
12
12
  onBlur?: FocusEventHandler<HTMLInputElement>;
13
13
  onChange?: ChangeEventHandler<HTMLInputElement>;
14
- onInput?: ChangeEventHandler<HTMLInputElement>;
14
+ oninput?: ChangeEventHandler<HTMLInputElement>;
15
15
  onClick?: MouseEventHandler<HTMLInputElement>;
16
16
  placeholder?: string;
17
17
  type?: TextInputType;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "milk-lib",
3
3
  "license": "MIT",
4
- "version": "0.0.40",
4
+ "version": "0.0.41",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run prepack",