ui-kit-ck-consultant 0.6.1 → 0.6.3
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.js +56 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +56 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -42,6 +42,44 @@ function _setPrototypeOf(o, p) {
|
|
42
42
|
return _setPrototypeOf(o, p);
|
43
43
|
}
|
44
44
|
|
45
|
+
function _unsupportedIterableToArray(o, minLen) {
|
46
|
+
if (!o) return;
|
47
|
+
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
48
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
49
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
50
|
+
if (n === "Map" || n === "Set") return Array.from(o);
|
51
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
52
|
+
}
|
53
|
+
|
54
|
+
function _arrayLikeToArray(arr, len) {
|
55
|
+
if (len == null || len > arr.length) len = arr.length;
|
56
|
+
|
57
|
+
for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
|
58
|
+
|
59
|
+
return arr2;
|
60
|
+
}
|
61
|
+
|
62
|
+
function _createForOfIteratorHelperLoose(o, allowArrayLike) {
|
63
|
+
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
64
|
+
if (it) return (it = it.call(o)).next.bind(it);
|
65
|
+
|
66
|
+
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
67
|
+
if (it) o = it;
|
68
|
+
var i = 0;
|
69
|
+
return function () {
|
70
|
+
if (i >= o.length) return {
|
71
|
+
done: true
|
72
|
+
};
|
73
|
+
return {
|
74
|
+
done: false,
|
75
|
+
value: o[i++]
|
76
|
+
};
|
77
|
+
};
|
78
|
+
}
|
79
|
+
|
80
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
81
|
+
}
|
82
|
+
|
45
83
|
var style = {"modal":"_Tr9L0","modal_container":"_2YluD","no_background":"_2vjgy","large":"_22C7A","extraLarge":"_VOwgj","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"};
|
46
84
|
|
47
85
|
var Modal = /*#__PURE__*/function (_React$Component) {
|
@@ -184,7 +222,7 @@ var Modal = /*#__PURE__*/function (_React$Component) {
|
|
184
222
|
}, /*#__PURE__*/React.createElement("h2", {
|
185
223
|
className: "mt-0"
|
186
224
|
}, this.props.title)), /*#__PURE__*/React.createElement("div", {
|
187
|
-
className: style.modal_body
|
225
|
+
className: classNames$1(style.modal_body, this.props.classNameChildren)
|
188
226
|
}, this.props.children))));
|
189
227
|
};
|
190
228
|
|
@@ -883,6 +921,22 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
883
921
|
_this.getCSV = function (callback) {
|
884
922
|
var dataCSV = '';
|
885
923
|
|
924
|
+
function findStringChild(children) {
|
925
|
+
if (typeof children === 'string') {
|
926
|
+
return children;
|
927
|
+
} else if (Array.isArray(children)) {
|
928
|
+
for (var _iterator = _createForOfIteratorHelperLoose(children), _step; !(_step = _iterator()).done;) {
|
929
|
+
var child = _step.value;
|
930
|
+
var result = findStringChild(child);
|
931
|
+
if (result) return result;
|
932
|
+
}
|
933
|
+
} else if (React.isValidElement(children)) {
|
934
|
+
return findStringChild(children.props.children);
|
935
|
+
}
|
936
|
+
|
937
|
+
return null;
|
938
|
+
}
|
939
|
+
|
886
940
|
if (_this.props && _this.props.children) {
|
887
941
|
_this.getArray(_this.props.children).forEach(function (children) {
|
888
942
|
if (children.props && children.props.children) {
|
@@ -890,7 +944,7 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
890
944
|
if (line.props && line.props.children) {
|
891
945
|
_this.getArray(line.props.children).forEach(function (column) {
|
892
946
|
if (column.props && column.props.children) {
|
893
|
-
dataCSV += column.props.children.toString() + ";";
|
947
|
+
dataCSV += findStringChild(column.props.children).toString() + ";";
|
894
948
|
} else {
|
895
949
|
dataCSV += ';';
|
896
950
|
}
|