@epie/bi-crud 2.0.27 → 2.0.29

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.
@@ -12582,9 +12582,15 @@ function useRender$2({
12582
12582
  } // 默认
12583
12583
  else {
12584
12584
  function deep(item) {
12585
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
12585
+ let props;
12586
+
12587
+ try {
12588
+ props = { ...item
12589
+ };
12590
+ delete props.children;
12591
+ } catch (ex) {} // Cannot set property children of #<Element>
12592
+
12586
12593
 
12587
- delete props.children;
12588
12594
  return h(ElTableColumn, props, {
12589
12595
  header: scope => {
12590
12596
  const slot = slots[`header-${item.prop}`];
@@ -13830,9 +13836,17 @@ function useRender({
13830
13836
 
13831
13837
 
13832
13838
  function deep(item) {
13833
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
13839
+ var props;
13840
+
13841
+ try {
13842
+ props = { ...item
13843
+ };
13844
+ delete props.children;
13845
+ } catch (ex) {
13846
+ console.log(`cloneDeep for ${item.prop}`);
13847
+ debugger;
13848
+ }
13834
13849
 
13835
- delete props.children;
13836
13850
  return h(ElDescriptionsColumn, props, {
13837
13851
  // header: (scope: any) => {
13838
13852
  // const slot = slots[`header-${item.prop}`];
@@ -12585,9 +12585,15 @@
12585
12585
  } // 默认
12586
12586
  else {
12587
12587
  function deep(item) {
12588
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
12588
+ let props;
12589
+
12590
+ try {
12591
+ props = { ...item
12592
+ };
12593
+ delete props.children;
12594
+ } catch (ex) {} // Cannot set property children of #<Element>
12595
+
12589
12596
 
12590
- delete props.children;
12591
12597
  return vue.h(ElTableColumn, props, {
12592
12598
  header: scope => {
12593
12599
  const slot = slots[`header-${item.prop}`];
@@ -13833,9 +13839,17 @@
13833
13839
 
13834
13840
 
13835
13841
  function deep(item) {
13836
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
13842
+ var props;
13843
+
13844
+ try {
13845
+ props = { ...item
13846
+ };
13847
+ delete props.children;
13848
+ } catch (ex) {
13849
+ console.log(`cloneDeep for ${item.prop}`);
13850
+ debugger;
13851
+ }
13837
13852
 
13838
- delete props.children;
13839
13853
  return vue.h(ElDescriptionsColumn, props, {
13840
13854
  // header: (scope: any) => {
13841
13855
  // const slot = slots[`header-${item.prop}`];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@epie/bi-crud",
3
3
  "simpleName": "bi-crud",
4
- "version": "2.0.27",
4
+ "version": "2.0.29",
5
5
  "private": false,
6
6
  "main": "lib/bi-crud.umd.js",
7
7
  "module": "lib/bi-crud.esm.js",