@epie/bi-crud 2.0.27 → 2.0.28
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/lib/bi-crud.esm.js +10 -2
- package/lib/bi-crud.umd.js +10 -2
- package/package.json +1 -1
package/lib/bi-crud.esm.js
CHANGED
|
@@ -13830,9 +13830,17 @@ function useRender({
|
|
|
13830
13830
|
|
|
13831
13831
|
|
|
13832
13832
|
function deep(item) {
|
|
13833
|
-
|
|
13833
|
+
var props;
|
|
13834
|
+
|
|
13835
|
+
try {
|
|
13836
|
+
props = { ...item
|
|
13837
|
+
};
|
|
13838
|
+
delete props.children;
|
|
13839
|
+
} catch (ex) {
|
|
13840
|
+
console.log(`cloneDeep for ${item.prop}`);
|
|
13841
|
+
debugger;
|
|
13842
|
+
}
|
|
13834
13843
|
|
|
13835
|
-
delete props.children;
|
|
13836
13844
|
return h(ElDescriptionsColumn, props, {
|
|
13837
13845
|
// header: (scope: any) => {
|
|
13838
13846
|
// const slot = slots[`header-${item.prop}`];
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -13833,9 +13833,17 @@
|
|
|
13833
13833
|
|
|
13834
13834
|
|
|
13835
13835
|
function deep(item) {
|
|
13836
|
-
|
|
13836
|
+
var props;
|
|
13837
|
+
|
|
13838
|
+
try {
|
|
13839
|
+
props = { ...item
|
|
13840
|
+
};
|
|
13841
|
+
delete props.children;
|
|
13842
|
+
} catch (ex) {
|
|
13843
|
+
console.log(`cloneDeep for ${item.prop}`);
|
|
13844
|
+
debugger;
|
|
13845
|
+
}
|
|
13837
13846
|
|
|
13838
|
-
delete props.children;
|
|
13839
13847
|
return vue.h(ElDescriptionsColumn, props, {
|
|
13840
13848
|
// header: (scope: any) => {
|
|
13841
13849
|
// const slot = slots[`header-${item.prop}`];
|