qcobjects-sdk 2.4.28 → 2.4.30

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/QCObjects-SDK.js CHANGED
@@ -124,15 +124,24 @@
124
124
 
125
125
 
126
126
  }
127
- _top._sdk_ = Promise.all(_imports_).then(function () {
127
+ const __start__ = GlobalSettings.__start__.bind(_top);
128
+ _top._sdk_ = Promise.all(_imports_).then(()=>{
128
129
  CONFIG.set("useSDK", true);
129
130
  CONFIG.set("remoteImportsPath", remoteImportsPath);
130
131
  CONFIG.set("relativeImportPath", relativeImportPath);
131
- _top.__start__();
132
-
132
+ __start__();
133
133
  });
134
134
 
135
-
136
- }).call(null, (typeof module === "object" && typeof module.exports === "object") ? (module.exports = global) : ((typeof global === "object") ? (global) : (
135
+ })((typeof module === "object" && typeof module.exports === "object") ? (
136
+ module.exports = typeof globalThis !== "undefined"
137
+ ? globalThis
138
+ : typeof self !== "undefined"
139
+ ? self
140
+ : typeof window !== "undefined"
141
+ ? window
142
+ : typeof global !== "undefined"
143
+ ? global
144
+ : {}
145
+ ) : ((typeof global === "object") ? (global) : (
137
146
  (typeof window === "object") ? (window) : ({})
138
- )));
147
+ )));
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.28
1
+ 2.4.30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects-sdk",
3
- "version": "2.4.28",
3
+ "version": "2.4.30",
4
4
  "description": "QCObjects SDK is a set of Controllers, Views and Components that are elementary and useful to assist developers to build applications under MVC patterns using QCObjects, Cross Browser Javascript Framework for MVC Patterns",
5
5
  "main": "QCObjects-SDK.js",
6
6
  "scripts": {
@@ -42,6 +42,6 @@
42
42
  "jasmine": "^3.6.3"
43
43
  },
44
44
  "peerDependencies": {
45
- "qcobjects": "^2.4.38"
45
+ "qcobjects": "^2.4.67"
46
46
  }
47
47
  }