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.
- package/dist/index.css +5 -2
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1689,14 +1689,17 @@
|
|
1689
1689
|
padding-top: 5px;
|
1690
1690
|
padding-bottom: 5px;
|
1691
1691
|
border-radius: 15px 15px 15px 15px;
|
1692
|
-
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
|
1693
|
-
background-color: var(--white);
|
1694
1692
|
padding-left: 5px;
|
1695
1693
|
padding-right: 5px;
|
1696
1694
|
margin-bottom: 20px;
|
1697
1695
|
flex-wrap: wrap;
|
1698
1696
|
}
|
1699
1697
|
|
1698
|
+
._2ZXDI:not(._2tReM) {
|
1699
|
+
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
|
1700
|
+
background-color: var(--white);
|
1701
|
+
}
|
1702
|
+
|
1700
1703
|
._3SfUF {
|
1701
1704
|
display: flex;
|
1702
1705
|
width: 100%;
|
package/dist/index.js
CHANGED
@@ -174,7 +174,7 @@ var Button = /*#__PURE__*/function (_React$Component) {
|
|
174
174
|
disabled: this.props.disabled
|
175
175
|
}, /*#__PURE__*/React__default.createElement("span", {
|
176
176
|
style: this.props.styleSpan
|
177
|
-
}, this.props.text), this.props.children ? /*#__PURE__*/React__default.createElement("div", {
|
177
|
+
}, this.props.text ? this.props.text.toUpperString() : ""), this.props.children ? /*#__PURE__*/React__default.createElement("div", {
|
178
178
|
style: this.props.styleDiv,
|
179
179
|
className: classNames$1(style$1.button_special_icon)
|
180
180
|
}, this.props.children) : '');
|
@@ -625,7 +625,7 @@ var FormSelectMutiples = /*#__PURE__*/function (_React$Component) {
|
|
625
625
|
isDisplay: !_this2.state.isDisplay
|
626
626
|
});
|
627
627
|
}
|
628
|
-
}, /*#__PURE__*/React__default.createElement("span", null,
|
628
|
+
}, /*#__PURE__*/React__default.createElement("span", null, this.props.value && this.props.value.length ? this.props.options.filter(function (element) {
|
629
629
|
return _this2.props.value.includes(element.value);
|
630
630
|
}).map(function (element, idx) {
|
631
631
|
return "" + (idx ? ";" : "") + element.text;
|
@@ -1354,7 +1354,7 @@ var TabsMenu = /*#__PURE__*/function (_React$Component) {
|
|
1354
1354
|
return TabsMenu;
|
1355
1355
|
}(React__default.Component);
|
1356
1356
|
|
1357
|
-
var style$g = {"tabs_custom":"_1-Kad","tabs_custom_header":"_2ZXDI","
|
1357
|
+
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"};
|
1358
1358
|
|
1359
1359
|
var TabsCustom = /*#__PURE__*/function (_React$Component) {
|
1360
1360
|
_inheritsLoose(TabsCustom, _React$Component);
|
@@ -1384,8 +1384,11 @@ var TabsCustomHeader = /*#__PURE__*/function (_React$Component) {
|
|
1384
1384
|
var _proto = TabsCustomHeader.prototype;
|
1385
1385
|
|
1386
1386
|
_proto.render = function render() {
|
1387
|
+
var _classNames;
|
1388
|
+
|
1389
|
+
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));
|
1387
1390
|
return /*#__PURE__*/React__default.createElement("div", {
|
1388
|
-
className:
|
1391
|
+
className: tabsHeaderClass
|
1389
1392
|
}, this.props.children);
|
1390
1393
|
};
|
1391
1394
|
|