ui-kit-ck-consultant 0.5.234 → 0.5.236

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 CHANGED
@@ -162,6 +162,11 @@
162
162
  overflow-y: auto;
163
163
  }
164
164
 
165
+ ._3sTgK{
166
+ overflow-x: auto;
167
+ overflow-y: auto;
168
+ }
169
+
165
170
  @media screen and (max-width: 640px) {
166
171
  ._2YluD {
167
172
  padding: 32px;
@@ -488,7 +493,7 @@
488
493
  font-size: 14px;
489
494
  padding: 0 20px;
490
495
  transition: 0.6s;
491
- opacity: 0.5;
496
+ opacity: 1;
492
497
  }
493
498
  ._1Fq5R::-moz-placeholder, ._1XBGF::-moz-placeholder {
494
499
  color: var(--gray);
@@ -678,7 +683,7 @@
678
683
  font-size: 14px;
679
684
  padding: 0 20px;
680
685
  transition: 0.6s;
681
- opacity: 0.5;
686
+ opacity: 1;
682
687
  }
683
688
  ._6hnFm::-moz-placeholder {
684
689
  color: var(--gray);
@@ -726,7 +731,7 @@
726
731
  font-size: 14px;
727
732
  padding: 0 20px;
728
733
  transition: 0.6s;
729
- opacity: 0.5;
734
+ opacity: 1;
730
735
  background-color: var(--white);
731
736
  -webkit-touch-callout: none;
732
737
  -webkit-user-select: none;
package/dist/index.js CHANGED
@@ -45,7 +45,7 @@ function _setPrototypeOf(o, p) {
45
45
  return _setPrototypeOf(o, p);
46
46
  }
47
47
 
48
- var style = {"modal":"_Tr9L0","modal_container":"_2YluD","no_background":"_2vjgy","large":"_22C7A","modal_valid":"_RsujT","modal_close":"_1AbTJ","modal_custom":"_33Wb2","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"};
48
+ var style = {"modal":"_Tr9L0","modal_container":"_2YluD","no_background":"_2vjgy","large":"_22C7A","modal_valid":"_RsujT","modal_close":"_1AbTJ","modal_custom":"_33Wb2","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","full_modal_body_no_overflow":"_3sTgK"};
49
49
 
50
50
  var Modal = /*#__PURE__*/function (_React$Component) {
51
51
  _inheritsLoose(Modal, _React$Component);
@@ -152,7 +152,7 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
152
152
  })) : null, this.props.title ? /*#__PURE__*/React__default.createElement("div", {
153
153
  className: style.full_modal_header
154
154
  }, /*#__PURE__*/React__default.createElement("h2", null, this.props.title)) : null, /*#__PURE__*/React__default.createElement("div", {
155
- className: this.props.noPadding ? style.full_modal_body_no_padding : style.full_modal_body
155
+ className: classNames$1(this.props.noPadding ? style.full_modal_body_no_padding : style.full_modal_body, this.props.noOverflow ? style.full_modal_body_no_overflow : {})
156
156
  }, this.props.children)));
157
157
  };
158
158