qcobjects 2.5.119-beta → 2.5.120-beta
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/VERSION +1 -1
- package/build/Component.js +4 -1
- package/package.json +1 -1
- package/public/browser/QCObjects.js +4 -1
- package/public/browser/QCObjects.js.map +2 -2
- package/public/cjs/QCObjects.cjs +4 -1
- package/public/cjs/QCObjects.cjs.map +2 -2
- package/public/esm/QCObjects.mjs +4 -1
- package/public/esm/QCObjects.mjs.map +2 -2
- package/src/Component.ts +5 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.120-beta
|
package/build/Component.js
CHANGED
|
@@ -100,7 +100,10 @@ class Component extends InheritClass_1.InheritClass {
|
|
|
100
100
|
view
|
|
101
101
|
});
|
|
102
102
|
const self = this;
|
|
103
|
-
if (typeof
|
|
103
|
+
if (typeof name !== "undefined") {
|
|
104
|
+
self.name = name;
|
|
105
|
+
}
|
|
106
|
+
if (typeof self.name === "undefined" && typeof name === "undefined") {
|
|
104
107
|
Logger_1.logger.warn("A name is not defined for " + (0, getType_1.__getType__)(self));
|
|
105
108
|
}
|
|
106
109
|
self.routingWay = CONFIG_1.CONFIG.get("routingWay");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.120-beta",
|
|
4
4
|
"description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
|
|
5
5
|
"main": "public/cjs/QCObjects.cjs",
|
|
6
6
|
"module": "public/esm/QCObjects.mjs",
|
|
@@ -2489,7 +2489,10 @@ var global = (() => {
|
|
|
2489
2489
|
view
|
|
2490
2490
|
});
|
|
2491
2491
|
const self2 = this;
|
|
2492
|
-
if (typeof
|
|
2492
|
+
if (typeof name !== "undefined") {
|
|
2493
|
+
self2.name = name;
|
|
2494
|
+
}
|
|
2495
|
+
if (typeof self2.name === "undefined" && typeof name === "undefined") {
|
|
2493
2496
|
logger.warn("A name is not defined for " + __getType__(self2));
|
|
2494
2497
|
}
|
|
2495
2498
|
self2.routingWay = CONFIG.get("routingWay");
|