@oliasoft-open-source/react-ui-library 3.5.3-beta-1 → 3.5.4
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/index.js +7 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -61995,7 +61995,7 @@ const NumberInput = ({
|
|
|
61995
61995
|
setValidationError(errors[0]);
|
|
61996
61996
|
validationCallback(name2, errors[0]);
|
|
61997
61997
|
}
|
|
61998
|
-
}, []);
|
|
61998
|
+
}, [value, error2]);
|
|
61999
61999
|
const onSetValue = (evt) => {
|
|
62000
62000
|
const input2 = evt.target;
|
|
62001
62001
|
const {
|
|
@@ -62014,7 +62014,7 @@ const NumberInput = ({
|
|
|
62014
62014
|
name: name2
|
|
62015
62015
|
}
|
|
62016
62016
|
});
|
|
62017
|
-
setDisplayValue(
|
|
62017
|
+
setDisplayValue(newValue);
|
|
62018
62018
|
setValidationError(null);
|
|
62019
62019
|
validationCallback(name2, null);
|
|
62020
62020
|
} else {
|
|
@@ -62503,7 +62503,8 @@ const Cell = (props) => {
|
|
|
62503
62503
|
} = props;
|
|
62504
62504
|
const {
|
|
62505
62505
|
style: style2,
|
|
62506
|
-
colSpan
|
|
62506
|
+
colSpan,
|
|
62507
|
+
rowSpan
|
|
62507
62508
|
} = cell2;
|
|
62508
62509
|
const ref2 = useRef(null);
|
|
62509
62510
|
const alignment = {
|
|
@@ -62527,6 +62528,7 @@ const Cell = (props) => {
|
|
|
62527
62528
|
} : {}
|
|
62528
62529
|
},
|
|
62529
62530
|
colSpan,
|
|
62531
|
+
rowSpan,
|
|
62530
62532
|
children: /* @__PURE__ */ jsx(CellWrapper, {
|
|
62531
62533
|
cell: cell2,
|
|
62532
62534
|
columnAlignment: cellAlignmentText,
|
|
@@ -62549,6 +62551,7 @@ const Cell = (props) => {
|
|
|
62549
62551
|
} : {}
|
|
62550
62552
|
},
|
|
62551
62553
|
colSpan,
|
|
62554
|
+
rowSpan,
|
|
62552
62555
|
children: /* @__PURE__ */ jsx(CellWrapper, {
|
|
62553
62556
|
cell: cell2,
|
|
62554
62557
|
columnAlignment: cellAlignmentText,
|
|
@@ -62562,6 +62565,7 @@ const cellShape = PropTypes__default.oneOfType([PropTypes__default.shape({
|
|
|
62562
62565
|
value: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number]),
|
|
62563
62566
|
type: cellType,
|
|
62564
62567
|
colSpan: PropTypes__default.number,
|
|
62568
|
+
rowSpan: PropTypes__default.number,
|
|
62565
62569
|
error: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number, PropTypes__default.node]),
|
|
62566
62570
|
warning: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number, PropTypes__default.node]),
|
|
62567
62571
|
tooltip: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number, PropTypes__default.node]),
|
package/package.json
CHANGED