ui-kit-ck-consultant 0.5.284 → 0.5.285
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 +6 -6
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -75,16 +75,14 @@
|
|
75
75
|
width: 900px;
|
76
76
|
}
|
77
77
|
|
78
|
-
.
|
78
|
+
._eWY0H {
|
79
|
+
display: flex;
|
79
80
|
position: absolute;
|
80
|
-
right: 6rem;
|
81
81
|
top: 2rem;
|
82
|
-
|
83
|
-
color: var(--primary-color);
|
84
|
-
cursor: pointer;
|
85
|
-
transition: 0.4s;
|
82
|
+
right: 2rem;
|
86
83
|
}
|
87
84
|
|
85
|
+
._20eCx,
|
88
86
|
._RsujT,
|
89
87
|
._1AbTJ,
|
90
88
|
._33Wb2 {
|
@@ -95,11 +93,13 @@
|
|
95
93
|
margin-left: 10px;
|
96
94
|
}
|
97
95
|
|
96
|
+
._20eCx:hover,
|
98
97
|
._RsujT:hover,
|
99
98
|
._1AbTJ:hover,
|
100
99
|
._33Wb2:hover {
|
101
100
|
opacity: 0.7;
|
102
101
|
}
|
102
|
+
._20eCx:active,
|
103
103
|
._RsujT:active,
|
104
104
|
._1AbTJ:active,
|
105
105
|
._33Wb2:active {
|
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_move":"_20eCx","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"};
|
48
|
+
var style = {"modal":"_Tr9L0","modal_container":"_2YluD","no_background":"_2vjgy","large":"_22C7A","modal_right":"_eWY0H","modal_move":"_20eCx","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);
|
@@ -124,6 +124,8 @@ var Modal = /*#__PURE__*/function (_React$Component) {
|
|
124
124
|
left: this.state.x && this.state.xStart ? this.state.x - this.state.xStart : 0,
|
125
125
|
top: this.state.y && this.state.yStart ? this.state.y - this.state.yStart : 0
|
126
126
|
}
|
127
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
128
|
+
className: style.modal_right
|
127
129
|
}, /*#__PURE__*/React__default.createElement("div", {
|
128
130
|
className: style.modal_move,
|
129
131
|
onMouseDown: function onMouseDown(e) {
|
@@ -148,9 +150,11 @@ var Modal = /*#__PURE__*/function (_React$Component) {
|
|
148
150
|
onClick: this.props.onClose
|
149
151
|
}, this.props.iconClose ? this.props.iconClose : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
150
152
|
icon: freeSolidSvgIcons.faTimes
|
151
|
-
})) : null, /*#__PURE__*/React__default.createElement("div", {
|
153
|
+
})) : null), /*#__PURE__*/React__default.createElement("div", {
|
152
154
|
className: style.modal_header
|
153
|
-
}, /*#__PURE__*/React__default.createElement("h2",
|
155
|
+
}, /*#__PURE__*/React__default.createElement("h2", {
|
156
|
+
className: "mt-0"
|
157
|
+
}, this.props.title)), /*#__PURE__*/React__default.createElement("div", {
|
154
158
|
className: style.modal_body
|
155
159
|
}, this.props.children))));
|
156
160
|
};
|