react-crud-mui 0.2.31 → 0.2.32
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.
- package/dist/coreui.js +10 -2
- package/package.json +1 -1
package/dist/coreui.js
CHANGED
|
@@ -1592,7 +1592,11 @@ function N4({
|
|
|
1592
1592
|
width: "100%"
|
|
1593
1593
|
}, ...s, ...f, error: h, helperText: v == null ? void 0 : v.message, onChange: (p) => {
|
|
1594
1594
|
var m;
|
|
1595
|
-
f.onChange(
|
|
1595
|
+
f.onChange({
|
|
1596
|
+
target: {
|
|
1597
|
+
value: p
|
|
1598
|
+
}
|
|
1599
|
+
}), (m = s == null ? void 0 : s.onChange) == null || m.call(s, p);
|
|
1596
1600
|
}, onBlur: (p) => {
|
|
1597
1601
|
var m;
|
|
1598
1602
|
f.onBlur(), (m = s == null ? void 0 : s.onBlur) == null || m.call(s, p);
|
|
@@ -1613,7 +1617,11 @@ function H4({
|
|
|
1613
1617
|
width: "100%"
|
|
1614
1618
|
}, ...f, ...h, error: v, helperText: (p == null ? void 0 : p.message) || s, onChange: (m) => {
|
|
1615
1619
|
var y;
|
|
1616
|
-
h.onChange(
|
|
1620
|
+
h.onChange({
|
|
1621
|
+
target: {
|
|
1622
|
+
value: m
|
|
1623
|
+
}
|
|
1624
|
+
}), (y = f == null ? void 0 : f.onChange) == null || y.call(f, m);
|
|
1617
1625
|
}, onBlur: (m) => {
|
|
1618
1626
|
var y;
|
|
1619
1627
|
h.onBlur(), (y = f == null ? void 0 : f.onBlur) == null || y.call(f, m);
|