@etsoo/materialui 1.3.75 → 1.3.76

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.
@@ -35,6 +35,7 @@ export const TextFieldEx = React.forwardRef((props, ref) => {
35
35
  if (input != null) {
36
36
  input.value = "";
37
37
  input.focus();
38
+ input.dispatchEvent(new Event("change"));
38
39
  }
39
40
  if (errorText != null) {
40
41
  // Reset
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.3.75",
3
+ "version": "1.3.76",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -116,6 +116,7 @@ export const TextFieldEx = React.forwardRef<
116
116
  if (input != null) {
117
117
  input.value = "";
118
118
  input.focus();
119
+ input.dispatchEvent(new Event("change"));
119
120
  }
120
121
 
121
122
  if (errorText != null) {