intelicoreact 0.1.70 → 0.1.71
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.
|
@@ -1093,9 +1093,9 @@ function InputMask() {
|
|
|
1093
1093
|
setMaskRendered(true);
|
|
1094
1094
|
}, [maskPattern]);
|
|
1095
1095
|
(0, _react.useEffect)(function () {
|
|
1096
|
-
if (!isMaskRendered || isInitValue ||
|
|
1096
|
+
if (!isMaskRendered || isInitValue || value === getClearInnerValueAsString()) return false;
|
|
1097
1097
|
|
|
1098
|
-
if (value && value !== ''
|
|
1098
|
+
if (value && value !== '') {
|
|
1099
1099
|
var valueCharIndex = 0;
|
|
1100
1100
|
innerValue.map(function (_ref25, i) {
|
|
1101
1101
|
var _maskPattern;
|