@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.
@@ -13830,9 +13830,17 @@ function useRender({
13830
13830
 
13831
13831
 
13832
13832
  function deep(item) {
13833
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
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}`];
@@ -13833,9 +13833,17 @@
13833
13833
 
13834
13834
 
13835
13835
  function deep(item) {
13836
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
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}`];
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.28",
5
5
  "private": false,
6
6
  "main": "lib/bi-crud.umd.js",
7
7
  "module": "lib/bi-crud.esm.js",