simple-boot-front 1.0.114 → 1.0.115
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/SimpleBootFront.js +1 -1
- package/decorators/Script.d.ts +1 -1
- package/package.json +3 -3
package/SimpleBootFront.js
CHANGED
|
@@ -115,7 +115,7 @@ var SimpleBootFront = (function (_super) {
|
|
|
115
115
|
if (component) {
|
|
116
116
|
var styles = (_a = component === null || component === void 0 ? void 0 : component.styles) !== null && _a !== void 0 ? _a : [];
|
|
117
117
|
var template = (_b = component === null || component === void 0 ? void 0 : component.template) !== null && _b !== void 0 ? _b : '';
|
|
118
|
-
return new ComponentSet_1.ComponentSet(
|
|
118
|
+
return new ComponentSet_1.ComponentSet(data, template, styles, { objPath: null });
|
|
119
119
|
}
|
|
120
120
|
else {
|
|
121
121
|
return undefined;
|
package/decorators/Script.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ export interface ScriptConfig {
|
|
|
6
6
|
using?: (ConstructorType<any>)[];
|
|
7
7
|
}
|
|
8
8
|
export declare const ScriptMetadataKey: unique symbol;
|
|
9
|
-
export declare const Script: (config?: ScriptConfig
|
|
9
|
+
export declare const Script: (config?: ScriptConfig) => GenericClassDecorator<ConstructorType<ScriptRunnable>>;
|
|
10
10
|
export declare const getScript: (target: ConstructorType<any> | Function | any) => ScriptConfig | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-boot-front",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.115",
|
|
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.
|
|
76
|
-
"simple-boot-core": "^1.0.
|
|
75
|
+
"dom-render": "^1.0.92",
|
|
76
|
+
"simple-boot-core": "^1.0.38"
|
|
77
77
|
}
|
|
78
78
|
}
|