ui-kit-ck-consultant 0.5.213 → 0.5.216
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 +16 -1
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1104,7 +1104,7 @@
|
|
1104
1104
|
background-color: var(--white);
|
1105
1105
|
color: var(--black);
|
1106
1106
|
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
|
1107
|
-
min-height:
|
1107
|
+
min-height: 85px;
|
1108
1108
|
display: flex;
|
1109
1109
|
overflow: hidden;
|
1110
1110
|
}
|
@@ -1168,6 +1168,17 @@
|
|
1168
1168
|
animation: _19crY 1s ease-in-out 0.45s infinite;
|
1169
1169
|
}
|
1170
1170
|
|
1171
|
+
._3BnES {
|
1172
|
+
position: absolute;
|
1173
|
+
top: 0;
|
1174
|
+
bottom: 0;
|
1175
|
+
left: 0;
|
1176
|
+
right: 0;
|
1177
|
+
cursor: not-allowed;
|
1178
|
+
background-color: rgba(0, 0, 0, 0.1);
|
1179
|
+
z-index: 10;
|
1180
|
+
}
|
1181
|
+
|
1171
1182
|
@-webkit-keyframes _19crY {
|
1172
1183
|
0%,
|
1173
1184
|
100% {
|
@@ -1250,9 +1261,11 @@
|
|
1250
1261
|
transition: 0.4s;
|
1251
1262
|
cursor: pointer;
|
1252
1263
|
}
|
1264
|
+
|
1253
1265
|
._dmCgN:hover {
|
1254
1266
|
opacity: 0.7;
|
1255
1267
|
}
|
1268
|
+
|
1256
1269
|
._dmCgN:active {
|
1257
1270
|
opacity: 0.5;
|
1258
1271
|
}
|
@@ -1362,10 +1375,12 @@
|
|
1362
1375
|
color: #67748e;
|
1363
1376
|
font-size: 18px;
|
1364
1377
|
}
|
1378
|
+
|
1365
1379
|
._1b4T4 > span:last-child {
|
1366
1380
|
font-size: 24px;
|
1367
1381
|
font-weight: bold;
|
1368
1382
|
}
|
1383
|
+
|
1369
1384
|
._1b4T4 > span:last-child > span {
|
1370
1385
|
font-size: 15px;
|
1371
1386
|
padding-left: 6px;
|
package/dist/index.js
CHANGED
@@ -859,7 +859,7 @@ var Header = /*#__PURE__*/function (_React$Component) {
|
|
859
859
|
return Header;
|
860
860
|
}(React__default.Component);
|
861
861
|
|
862
|
-
var style$b = {"card":"_4T5PO","card_tabs":"_3qz0v","card_loader_container":"_1zFpZ","loader_element":"_2rKrR","loader":"_8eH6Y","grow":"_19crY","card_top_border":"_1ItWX","card_header":"_HBqZI","card_tabs_header":"_3iUeb","card_header_left":"_2KSuY","card_tabs_header_left":"_3euMf","card_tabs_header_active":"_3UmBd","card_header_right":"_2KPnI","card_header_action":"_dmCgN","card_header_action_disable":"_1XS9q","card_body":"_8DE3p","card_tabs_body":"_3UyXH","card_color":"_2D119","card_color_left":"_1OCk3","card_color_image_left":"_199hf","card_color_center":"_11M7t","card_color_right":"_ZiFPm","card_statistics":"_29tu3","card_statistics_body":"_1b4T4","card_statistics_icon":"_1dkwV"};
|
862
|
+
var style$b = {"card":"_4T5PO","card_tabs":"_3qz0v","card_loader_container":"_1zFpZ","loader_element":"_2rKrR","loader":"_8eH6Y","grow":"_19crY","card_disabled":"_3BnES","card_top_border":"_1ItWX","card_header":"_HBqZI","card_tabs_header":"_3iUeb","card_header_left":"_2KSuY","card_tabs_header_left":"_3euMf","card_tabs_header_active":"_3UmBd","card_header_right":"_2KPnI","card_header_action":"_dmCgN","card_header_action_disable":"_1XS9q","card_body":"_8DE3p","card_tabs_body":"_3UyXH","card_color":"_2D119","card_color_left":"_1OCk3","card_color_image_left":"_199hf","card_color_center":"_11M7t","card_color_right":"_ZiFPm","card_statistics":"_29tu3","card_statistics_body":"_1b4T4","card_statistics_icon":"_1dkwV"};
|
863
863
|
|
864
864
|
var Card = /*#__PURE__*/function (_React$Component) {
|
865
865
|
_inheritsLoose(Card, _React$Component);
|
@@ -905,7 +905,9 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
905
905
|
_proto.render = function render() {
|
906
906
|
return /*#__PURE__*/React__default.createElement("div", {
|
907
907
|
className: classNames$1(style$b.card, this.props.className)
|
908
|
-
}, this.props.
|
908
|
+
}, this.props.disabled ? /*#__PURE__*/React__default.createElement("div", {
|
909
|
+
className: classNames$1(style$b.card_disabled)
|
910
|
+
}) : null, this.props.imgLeft ? /*#__PURE__*/React__default.createElement("div", {
|
909
911
|
style: {
|
910
912
|
overflow: 'hidden',
|
911
913
|
width: this.props.customWidthImgLeft || '100%'
|
@@ -3092,7 +3094,7 @@ var DropzoneMultiple = /*#__PURE__*/function (_React$Component) {
|
|
3092
3094
|
|
3093
3095
|
reader.readAsDataURL(file);
|
3094
3096
|
} else {
|
3095
|
-
alert(
|
3097
|
+
alert("Fichier trop volumineux - Taille maxium " + _this.props.maxFileSize + "Mo");
|
3096
3098
|
_this.currentFile += 1;
|
3097
3099
|
|
3098
3100
|
_this.nextFile(files);
|
@@ -3190,7 +3192,7 @@ var DropzoneMultiple = /*#__PURE__*/function (_React$Component) {
|
|
3190
3192
|
className: classNames$1(style$o.dropzone_multiple_items)
|
3191
3193
|
}), !_this2.state.files.length ? /*#__PURE__*/React__default.createElement("span", {
|
3192
3194
|
className: classNames$1(style$o.background_text)
|
3193
|
-
}, "Glisser et d\xE9poser vos fichiers ou cliquer pour en s\xE9lectionner...", ' ', _this2.props.extensions ? "Formats accept\xE9s : " + _this2.props.extensions.join(', ') : '') : null, /*#__PURE__*/React__default.createElement("input", getInputProps()), _this2.state.files.map(function (file, idx) {
|
3195
|
+
}, "Glisser et d\xE9poser vos fichiers ou cliquer pour en s\xE9lectionner...", ' ', _this2.props.extensions ? "Formats accept\xE9s : " + _this2.props.extensions.join(', ') : '', "$", _this2.props.maxFileSize ? " - Taille maximale " + _this2.props.maxFileSize + "Mo" : '') : null, /*#__PURE__*/React__default.createElement("input", getInputProps()), _this2.state.files.map(function (file, idx) {
|
3194
3196
|
return _this2.getFileComponent(idx);
|
3195
3197
|
})));
|
3196
3198
|
});
|