intelicoreact 0.1.2 → 0.1.3

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.
@@ -212,7 +212,6 @@ var Dropdown = function Dropdown(_ref) {
212
212
  if (scrollReactionObj && (0, _typeof2.default)(scrollReactionObj) === 'object') removeEventListener('scroll', doScrollCallback);
213
213
  };
214
214
  }, [isOpen, dropdownListRef]);
215
- console.log(filteredOptions);
216
215
  var postfixText = selectedLabel && ((_filteredOptions$find = filteredOptions.find(function (option) {
217
216
  return option.value === value;
218
217
  })) === null || _filteredOptions$find === void 0 ? void 0 : _filteredOptions$find.postfix) || null;
@@ -24,10 +24,11 @@ var FormElement = function FormElement(_ref) {
24
24
  error = _ref.error,
25
25
  className = _ref.className,
26
26
  hint = _ref.hint,
27
- isLabelBolt = _ref.isLabelBolt;
27
+ isLabelBolt = _ref.isLabelBolt,
28
+ isNolabel = _ref.isNolabel;
28
29
  return /*#__PURE__*/_react.default.createElement("div", {
29
30
  className: (0, _classnames.default)(className, RC)
30
- }, label && /*#__PURE__*/_react.default.createElement(_Label.default, {
31
+ }, label && !isNolabel && /*#__PURE__*/_react.default.createElement(_Label.default, {
31
32
  className: "".concat(RC, "__label"),
32
33
  label: label,
33
34
  hint: hint,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "add postfix in dropdown",
5
5
  "main": "dist/index.js",
6
6
  "files": ["dist/*"],