ui-kit-ck-consultant 0.5.217 → 0.5.220
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 +4 -0
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -42,7 +42,7 @@ function _setPrototypeOf(o, p) {
|
|
42
42
|
return _setPrototypeOf(o, p);
|
43
43
|
}
|
44
44
|
|
45
|
-
var style = {"modal":"_Tr9L0","modal_container":"_2YluD","large":"_22C7A","modal_valid":"_RsujT","modal_close":"_1AbTJ","modal_header":"_2EzqX","modal_body":"_1-Y1J","full_modal_container":"_1w6wH","full_modal_header":"_2wSoq","full_modal_body":"_3bfp5","full_modal_body_no_padding":"_Pf5Uh"};
|
45
|
+
var style = {"modal":"_Tr9L0","modal_container":"_2YluD","no_background":"_2vjgy","large":"_22C7A","modal_valid":"_RsujT","modal_close":"_1AbTJ","modal_header":"_2EzqX","modal_body":"_1-Y1J","full_modal_container":"_1w6wH","full_modal_header":"_2wSoq","full_modal_body":"_3bfp5","full_modal_body_no_padding":"_Pf5Uh"};
|
46
46
|
|
47
47
|
var Modal = /*#__PURE__*/function (_React$Component) {
|
48
48
|
_inheritsLoose(Modal, _React$Component);
|
@@ -75,7 +75,7 @@ var Modal = /*#__PURE__*/function (_React$Component) {
|
|
75
75
|
return null;
|
76
76
|
}
|
77
77
|
|
78
|
-
var modalContainerClass = classNames$1((_classNames = {}, _classNames[style.large] = !!this.props.large, _classNames), style.modal_container, this.props.className);
|
78
|
+
var modalContainerClass = classNames$1((_classNames = {}, _classNames[style.large] = !!this.props.large, _classNames[style.no_background] = !!this.props.noBackground, _classNames), style.modal_container, this.props.className);
|
79
79
|
return /*#__PURE__*/React.createElement("div", {
|
80
80
|
className: style.modal,
|
81
81
|
onMouseDown: function onMouseDown(e) {
|
@@ -901,6 +901,9 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
901
901
|
|
902
902
|
_proto.render = function render() {
|
903
903
|
return /*#__PURE__*/React.createElement("div", {
|
904
|
+
style: this.props.border ? {
|
905
|
+
borderLeft: "solid " + this.props.border + " 16px"
|
906
|
+
} : {},
|
904
907
|
className: classNames$1(style$b.card, this.props.className)
|
905
908
|
}, this.props.disabled ? /*#__PURE__*/React.createElement("div", {
|
906
909
|
className: classNames$1(style$b.card_disabled)
|