qcobjects 2.4.73 → 2.4.76

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 CHANGED
@@ -1 +1 @@
1
- 2.4.73
1
+ 2.4.76
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects",
3
- "version": "2.4.73",
3
+ "version": "2.4.76",
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": "src/index.cjs",
6
6
  "module": "src/index.mjs",
@@ -103,7 +103,7 @@
103
103
  "peerDependencies": {
104
104
  "@types/qcobjects": "github:QCObjects/-types-qcobjects",
105
105
  "@types/qcobjects-sdk": "github:QCObjects/-types-qcobjects-sdk",
106
- "qcobjects-sdk": "^2.3.30"
106
+ "qcobjects-sdk": "^2.4.37"
107
107
  },
108
108
  "engines": {
109
109
  "npm": ">=9",
package/src/QCObjects.js CHANGED
@@ -67,6 +67,8 @@
67
67
  _.prototype.toString = function () {
68
68
  var _protected_symbols = [
69
69
  "__qcobjects__",
70
+ "__qcobjects_sdk__",
71
+ "__loaded__",
70
72
  "ComplexStorageCache",
71
73
  "css",
72
74
  "append",
@@ -1437,7 +1439,6 @@
1437
1439
  "componentsBasePath": "",
1438
1440
  "delayForReady": 0,
1439
1441
  "preserveComponentBodyTag": false,
1440
- "overrideComponentTag": false,
1441
1442
  "useConfigService": false,
1442
1443
  "routingWay": "hash",
1443
1444
  "useSDK": true,
@@ -2195,7 +2196,7 @@
2195
2196
  if (typeof self.__new__ === "function") {
2196
2197
  self.__new__.call(self, self);
2197
2198
  }
2198
-
2199
+
2199
2200
  self._generateRoutingPaths(self.body)
2200
2201
  .then(function (){
2201
2202
  self._reroute_()
@@ -2474,10 +2475,6 @@
2474
2475
  } else if (effectClassName !== null && applyEffectTo === "load") {
2475
2476
  _component_.applyTransitionEffect(effectClassName);
2476
2477
  }
2477
- if (_top.CONFIG.get("overrideComponentTag")) {
2478
- _component_.body.outerHTML = this.body.innerHTML;
2479
- }
2480
-
2481
2478
  }
2482
2479
  resolve({component:_component_, effect:_component_.effect});
2483
2480
  });