simple-boot-front 1.0.104 → 1.0.105

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.
@@ -7,7 +7,9 @@ import { HttpService } from './service/HttpService';
7
7
  import { SimstanceManager } from 'simple-boot-core/simstance/SimstanceManager';
8
8
  import { IntentManager } from 'simple-boot-core/intent/IntentManager';
9
9
  import { RouterManager } from 'simple-boot-core/route/RouterManager';
10
- import { Config, TargetElement, TargetAttr } from 'dom-render/Config';
10
+ import { Config } from 'dom-render/configs/Config';
11
+ import { TargetAttr } from 'dom-render/configs/TargetAttr';
12
+ import { TargetElement } from 'dom-render/configs/TargetElement';
11
13
  import { RouterModule } from 'simple-boot-core/route/RouterModule';
12
14
  export declare class SimpleBootFront extends SimpleApplication {
13
15
  rootRouter: ConstructorType<any>;
@@ -148,7 +148,7 @@ var SimpleBootFront = (function (_super) {
148
148
  var n = element.cloneNode(true);
149
149
  var innerHTML = _this.getComponentInnerHtml(targetObj);
150
150
  n.innerHTML = innerHTML;
151
- return RawSet_1.RawSet.drThisCreate(n, attrValue, '', true, obj, _this.option);
151
+ return RawSet_1.RawSet.drThisCreate(rawSet, n, attrValue, '', true, obj, _this.option);
152
152
  }
153
153
  var fag = _this.option.window.document.createDocumentFragment();
154
154
  return fag;
@@ -321,7 +321,7 @@ var SimpleBootFront = (function (_super) {
321
321
  var items = RawSet_1.RawSet.createComponentTargetElement(name, function (e, obj, r) {
322
322
  var newSim = _this.simstanceManager.newSim(val);
323
323
  return newSim;
324
- }, component === null || component === void 0 ? void 0 : component.template, component === null || component === void 0 ? void 0 : component.styles, false, _this.domRenderConfig);
324
+ }, component === null || component === void 0 ? void 0 : component.template, component === null || component === void 0 ? void 0 : component.styles);
325
325
  _this.domRenderTargetElements.push(items);
326
326
  });
327
327
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-boot-front",
3
- "version": "1.0.104",
3
+ "version": "1.0.105",
4
4
  "main": "SimpleApplication.js",
5
5
  "license": "MIT",
6
6
  "description": "front end SPA frameworks",
@@ -72,7 +72,7 @@
72
72
  "typescript": "^4.4.3"
73
73
  },
74
74
  "dependencies": {
75
- "dom-render": "^1.0.75",
76
- "simple-boot-core": "^1.0.30"
75
+ "dom-render": "^1.0.86",
76
+ "simple-boot-core": "^1.0.31"
77
77
  }
78
78
  }