bkui-vue 1.0.3-beta.30 → 1.0.3-beta.31
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.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/lib/table/index.js +2 -2
- package/lib/table-column/index.js +2 -2
- package/package.json +1 -1
package/lib/table/index.js
CHANGED
@@ -808,10 +808,10 @@ var TableColumnProp = {
|
|
808
808
|
index = index + 1;
|
809
809
|
return null;
|
810
810
|
}
|
811
|
-
if (Array.isArray(node.children)) {
|
811
|
+
if (Array.isArray(node === null || node === void 0 ? void 0 : node.children)) {
|
812
812
|
return node.children;
|
813
813
|
}
|
814
|
-
if ((0,external_vue_namespaceObject.isVNode)(node) && typeof_typeof(node.children) === 'object') {
|
814
|
+
if ((0,external_vue_namespaceObject.isVNode)(node) && typeof_typeof(node === null || node === void 0 ? void 0 : node.children) === 'object') {
|
815
815
|
return Object.keys(node.children).map(function (key) {
|
816
816
|
return node.children[key];
|
817
817
|
});
|
@@ -769,10 +769,10 @@ var TableColumnProp = {
|
|
769
769
|
index = index + 1;
|
770
770
|
return null;
|
771
771
|
}
|
772
|
-
if (Array.isArray(node.children)) {
|
772
|
+
if (Array.isArray(node === null || node === void 0 ? void 0 : node.children)) {
|
773
773
|
return node.children;
|
774
774
|
}
|
775
|
-
if ((0,external_vue_namespaceObject.isVNode)(node) && _typeof(node.children) === 'object') {
|
775
|
+
if ((0,external_vue_namespaceObject.isVNode)(node) && _typeof(node === null || node === void 0 ? void 0 : node.children) === 'object') {
|
776
776
|
return Object.keys(node.children).map(function (key) {
|
777
777
|
return node.children[key];
|
778
778
|
});
|