ui-kit-ck-consultant 0.5.175 → 0.5.178
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/expertloupe~balyfBDB.svg +74 -0
- package/dist/index.css +27 -24
- package/dist/index.js +29 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +29 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -898,13 +898,27 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
898
898
|
_proto.render = function render() {
|
899
899
|
return /*#__PURE__*/React.createElement("div", {
|
900
900
|
className: classNames$1(style$b.card, this.props.className)
|
901
|
-
}, this.props.
|
901
|
+
}, this.props.imgLeft ? /*#__PURE__*/React.createElement("div", {
|
902
|
+
style: {
|
903
|
+
overflow: 'hidden'
|
904
|
+
}
|
905
|
+
}, /*#__PURE__*/React.createElement("img", {
|
906
|
+
style: {
|
907
|
+
height: '100%'
|
908
|
+
},
|
909
|
+
src: this.props.imgLeft,
|
910
|
+
alt: "left"
|
911
|
+
})) : null, this.props.isLoad ? /*#__PURE__*/React.createElement("div", {
|
902
912
|
className: style$b.card_loader_container
|
903
913
|
}, /*#__PURE__*/React.createElement("div", {
|
904
914
|
className: classNames$1(style$b.loader_element, this.props.classNameChildren)
|
905
915
|
}, /*#__PURE__*/React.createElement("div", {
|
906
916
|
className: style$b.loader
|
907
917
|
}, /*#__PURE__*/React.createElement("span", null), /*#__PURE__*/React.createElement("span", null), /*#__PURE__*/React.createElement("span", null), /*#__PURE__*/React.createElement("span", null)), this.props.loaderText ? /*#__PURE__*/React.createElement("p", null, this.props.loaderText) : null)) : null, /*#__PURE__*/React.createElement("div", {
|
918
|
+
style: {
|
919
|
+
position: 'relative'
|
920
|
+
}
|
921
|
+
}, /*#__PURE__*/React.createElement("div", {
|
908
922
|
className: style$b.card_top_border,
|
909
923
|
style: {
|
910
924
|
width: this.state.width
|
@@ -922,7 +936,17 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
922
936
|
onClick: this.props.onClick
|
923
937
|
}, this.props.action))) : '', /*#__PURE__*/React.createElement("div", {
|
924
938
|
className: classNames$1(style$b.card_body, this.props.classNameChildren)
|
925
|
-
}, this.props.children))
|
939
|
+
}, this.props.children)), this.props.imgRight ? /*#__PURE__*/React.createElement("div", {
|
940
|
+
style: {
|
941
|
+
overflow: 'hidden'
|
942
|
+
}
|
943
|
+
}, /*#__PURE__*/React.createElement("img", {
|
944
|
+
style: {
|
945
|
+
height: '100%'
|
946
|
+
},
|
947
|
+
src: this.props.imgRight,
|
948
|
+
alt: "right"
|
949
|
+
})) : null);
|
926
950
|
};
|
927
951
|
|
928
952
|
return Card;
|
@@ -2712,7 +2736,9 @@ var Pagination = /*#__PURE__*/function (_React$Component) {
|
|
2712
2736
|
firstPageText: this.props.firstPageText,
|
2713
2737
|
lastPageText: this.props.lastPageText,
|
2714
2738
|
prevPageText: this.props.prevPageText,
|
2715
|
-
nextPageText: this.props.nextPageText
|
2739
|
+
nextPageText: this.props.nextPageText,
|
2740
|
+
hideNavigation: this.props.hideNavigation,
|
2741
|
+
hideFirstLastPages: this.props.hideFirstLastPages
|
2716
2742
|
}));
|
2717
2743
|
};
|
2718
2744
|
|