intelicoreact 0.1.81 → 0.1.84
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.
|
@@ -1123,6 +1123,9 @@ function InputMask() {
|
|
|
1123
1123
|
});
|
|
1124
1124
|
setMaskRendered(true);
|
|
1125
1125
|
}, [maskPattern]);
|
|
1126
|
+
(0, _react.useEffect)(function () {
|
|
1127
|
+
if (value !== getClearInnerValueAsString()) setIsInitValue(false);
|
|
1128
|
+
}, [value]);
|
|
1126
1129
|
(0, _react.useEffect)(function () {
|
|
1127
1130
|
if (!isMaskRendered || isInitValue || value === getClearInnerValueAsString()) return false;
|
|
1128
1131
|
|
|
@@ -115,6 +115,8 @@ var TagsDropdown = function TagsDropdown(_ref) {
|
|
|
115
115
|
return value === item.value;
|
|
116
116
|
})))
|
|
117
117
|
}, /*#__PURE__*/_react.default.createElement(_reactFeather.Check, {
|
|
118
|
+
width: 16,
|
|
119
|
+
height: 16,
|
|
118
120
|
className: "color--text"
|
|
119
121
|
})), title) : null;
|
|
120
122
|
};
|
|
@@ -30,9 +30,12 @@ var Button = function Button(_ref) {
|
|
|
30
30
|
children = _ref.children,
|
|
31
31
|
style = _ref.style,
|
|
32
32
|
noIcon = _ref.noIcon,
|
|
33
|
-
isIconRight = _ref.isIconRight
|
|
33
|
+
isIconRight = _ref.isIconRight,
|
|
34
|
+
_ref$tabIndex = _ref.tabIndex,
|
|
35
|
+
tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
|
|
34
36
|
var noRenderIcon = noIcon || variant === "ellipse-apply" || variant === "ellipse-cancel";
|
|
35
37
|
return /*#__PURE__*/_react.default.createElement("button", {
|
|
38
|
+
tabIndex: tabIndex,
|
|
36
39
|
style: style,
|
|
37
40
|
className: (0, _classnames.default)(className, RC, (_cn = {}, (0, _defineProperty2.default)(_cn, "".concat(RC, "_").concat(variant), variant), (0, _defineProperty2.default)(_cn, 'button_icon-left', icon && !isIconRight), (0, _defineProperty2.default)(_cn, 'button_icon-right', icon && isIconRight), _cn)),
|
|
38
41
|
onClick: onClick,
|
package/dist/Functions/utils.js
CHANGED
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.firstLetterCapital = exports.changeMeta = exports.addBitDepthPoints = exports.throttle = exports.debounce = exports.getColorById = exports.getStyles = exports.logout = exports.useOutsideToggle = exports.handleObjectChange = void 0;
|
|
9
9
|
|
|
10
10
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
11
11
|
|
|
@@ -157,8 +157,8 @@ var changeMeta = function changeMeta(key) {
|
|
|
157
157
|
|
|
158
158
|
exports.changeMeta = changeMeta;
|
|
159
159
|
|
|
160
|
-
var
|
|
161
|
-
return "".concat(str.
|
|
160
|
+
var firstLetterCapital = function firstLetterCapital(str) {
|
|
161
|
+
return "".concat(str.charAt(0).toUpperCase()).concat(str.slice(1));
|
|
162
162
|
};
|
|
163
163
|
|
|
164
|
-
exports.
|
|
164
|
+
exports.firstLetterCapital = firstLetterCapital;
|