ui-kit-ck-consultant 0.5.227 → 0.5.230

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.
@@ -171,7 +171,7 @@ var Button = /*#__PURE__*/function (_React$Component) {
171
171
  disabled: this.props.disabled
172
172
  }, /*#__PURE__*/React.createElement("span", {
173
173
  style: this.props.styleSpan
174
- }, this.props.text), this.props.children ? /*#__PURE__*/React.createElement("div", {
174
+ }, this.props.text ? this.props.text.toUpperString() : ""), this.props.children ? /*#__PURE__*/React.createElement("div", {
175
175
  style: this.props.styleDiv,
176
176
  className: classNames$1(style$1.button_special_icon)
177
177
  }, this.props.children) : '');
@@ -622,7 +622,7 @@ var FormSelectMutiples = /*#__PURE__*/function (_React$Component) {
622
622
  isDisplay: !_this2.state.isDisplay
623
623
  });
624
624
  }
625
- }, /*#__PURE__*/React.createElement("span", null, !this.props.value && this.props.value.length ? this.props.options.filter(function (element) {
625
+ }, /*#__PURE__*/React.createElement("span", null, this.props.value && this.props.value.length ? this.props.options.filter(function (element) {
626
626
  return _this2.props.value.includes(element.value);
627
627
  }).map(function (element, idx) {
628
628
  return "" + (idx ? ";" : "") + element.text;
@@ -1351,7 +1351,7 @@ var TabsMenu = /*#__PURE__*/function (_React$Component) {
1351
1351
  return TabsMenu;
1352
1352
  }(React.Component);
1353
1353
 
1354
- var style$g = {"tabs_custom":"_1-Kad","tabs_custom_header":"_2ZXDI","tabs_custom_body":"_3SfUF","noCard":"_2tReM","tabs_custom_menu":"_38JFK","active":"_NU04_","disabled":"_1Km4b","tabs_custom_item":"_2bfgR"};
1354
+ var style$g = {"tabs_custom":"_1-Kad","tabs_custom_header":"_2ZXDI","noCard":"_2tReM","tabs_custom_body":"_3SfUF","tabs_custom_menu":"_38JFK","active":"_NU04_","disabled":"_1Km4b","tabs_custom_item":"_2bfgR"};
1355
1355
 
1356
1356
  var TabsCustom = /*#__PURE__*/function (_React$Component) {
1357
1357
  _inheritsLoose(TabsCustom, _React$Component);
@@ -1381,8 +1381,11 @@ var TabsCustomHeader = /*#__PURE__*/function (_React$Component) {
1381
1381
  var _proto = TabsCustomHeader.prototype;
1382
1382
 
1383
1383
  _proto.render = function render() {
1384
+ var _classNames;
1385
+
1386
+ var tabsHeaderClass = classNames$1((_classNames = {}, _classNames[style$g.tabs_custom_header] = true, _classNames[style$g.noCard] = !!this.props.noCard, _classNames[this.props.className] = !!this.props.className, _classNames));
1384
1387
  return /*#__PURE__*/React.createElement("div", {
1385
- className: classNames$1(style$g.tabs_custom_header, this.props.className)
1388
+ className: tabsHeaderClass
1386
1389
  }, this.props.children);
1387
1390
  };
1388
1391