@dao42/d42paas-front 0.7.45 → 0.7.47

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.
@@ -44850,17 +44850,19 @@ class DaoPaaS {
44850
44850
  }
44851
44851
  mapRender(components) {
44852
44852
  components == null ? void 0 : components.forEach((arg, _index) => {
44853
+ const omitObj = _omit(__spreadValues({}, arg));
44854
+ _omit();
44853
44855
  switch (arg.item) {
44854
44856
  case "Page":
44855
44857
  this.Page({
44856
44858
  container: arg.container,
44857
- props: arg.props || _omit()
44859
+ props: arg.props || omitObj
44858
44860
  });
44859
44861
  break;
44860
44862
  case "Tree":
44861
44863
  this.Tree({
44862
44864
  container: arg.container,
44863
- props: arg.props
44865
+ props: arg.props || omitObj
44864
44866
  });
44865
44867
  break;
44866
44868
  case "Editor":
@@ -44874,19 +44876,19 @@ class DaoPaaS {
44874
44876
  case "Console":
44875
44877
  this.Console({
44876
44878
  container: arg.container,
44877
- props: arg.props || _omit()
44879
+ props: arg.props || omitObj
44878
44880
  });
44879
44881
  break;
44880
44882
  case "Browser":
44881
44883
  this.Browser({
44882
44884
  container: arg.container,
44883
- props: arg.props || _omit()
44885
+ props: arg.props || omitObj
44884
44886
  });
44885
44887
  break;
44886
44888
  case "Shell":
44887
44889
  this.Shell({
44888
44890
  container: arg.container,
44889
- props: arg.props || _omit()
44891
+ props: arg.props || omitObj
44890
44892
  });
44891
44893
  break;
44892
44894
  }