qcobjects 2.5.135-beta → 2.5.137-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/index.cjs +17 -0
- package/build/index.js +4 -24
- package/build/index.mjs +1 -0
- package/package.json +1 -1
- package/public/cjs/index.cjs +98 -6
- package/public/cjs/index.cjs.map +3 -3
- package/public/esm/index.mjs +90 -99
- package/public/esm/index.mjs.map +3 -3
- package/public/types/index.d.ts +1 -2
- package/public/types/index.d.ts.map +1 -1
- package/src/index.cts +1 -2
- package/src/index.mts +1 -2
- package/src/index.ts +1 -2
- package/tsconfig.json +2 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.137-beta
|
package/build/index.cjs
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./QCObjects.js"), exports);
|
package/build/index.js
CHANGED
|
@@ -10,28 +10,8 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
-
var
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
35
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
|
|
37
|
-
exports.default = QCObjects;
|
|
17
|
+
__exportStar(require("./QCObjects"), exports);
|
package/build/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./QCObjects.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.137-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/index.cjs",
|
|
6
6
|
"module": "public/esm/index.mjs",
|
package/public/cjs/index.cjs
CHANGED
|
@@ -32,6 +32,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
32
32
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
33
33
|
mod
|
|
34
34
|
));
|
|
35
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
36
|
|
|
36
37
|
// src/is_raw_class.ts
|
|
37
38
|
var __is_raw_class__;
|
|
@@ -5023,9 +5024,9 @@ var require_MainProcess = __commonJS({
|
|
|
5023
5024
|
}
|
|
5024
5025
|
});
|
|
5025
5026
|
|
|
5026
|
-
// src/
|
|
5027
|
-
var
|
|
5028
|
-
__export(
|
|
5027
|
+
// src/index.cts
|
|
5028
|
+
var index_exports = {};
|
|
5029
|
+
__export(index_exports, {
|
|
5029
5030
|
ArrayCollection: () => ArrayCollection,
|
|
5030
5031
|
ArrayList: () => ArrayList,
|
|
5031
5032
|
AssignPolyfill: () => assign_exports,
|
|
@@ -5117,6 +5118,7 @@ __export(QCObjects_exports, {
|
|
|
5117
5118
|
subelements: () => subelements,
|
|
5118
5119
|
waitUntil: () => waitUntil
|
|
5119
5120
|
});
|
|
5121
|
+
module.exports = __toCommonJS(index_exports);
|
|
5120
5122
|
|
|
5121
5123
|
// src/assign.ts
|
|
5122
5124
|
var assign_exports = {};
|
|
@@ -6595,7 +6597,97 @@ init_mathFunctions();
|
|
|
6595
6597
|
init_top();
|
|
6596
6598
|
init_make_global();
|
|
6597
6599
|
init_top();
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6600
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
6601
|
+
0 && (module.exports = {
|
|
6602
|
+
ArrayCollection,
|
|
6603
|
+
ArrayList,
|
|
6604
|
+
AssignPolyfill,
|
|
6605
|
+
BackendMicroservice,
|
|
6606
|
+
CONFIG,
|
|
6607
|
+
Class,
|
|
6608
|
+
ClassFactory,
|
|
6609
|
+
ComplexStorageCache,
|
|
6610
|
+
Component,
|
|
6611
|
+
ComponentURI,
|
|
6612
|
+
ConfigService,
|
|
6613
|
+
Controller,
|
|
6614
|
+
DDO,
|
|
6615
|
+
DefaultTemplateHandler,
|
|
6616
|
+
Effect,
|
|
6617
|
+
Export,
|
|
6618
|
+
GlobalSettings,
|
|
6619
|
+
Import,
|
|
6620
|
+
InheritClass,
|
|
6621
|
+
JSONService,
|
|
6622
|
+
Logger,
|
|
6623
|
+
NamespaceRef,
|
|
6624
|
+
New,
|
|
6625
|
+
ObjectName,
|
|
6626
|
+
Package,
|
|
6627
|
+
Processor,
|
|
6628
|
+
Ready,
|
|
6629
|
+
RegisterClass,
|
|
6630
|
+
RegisterWidget,
|
|
6631
|
+
RegisterWidgets,
|
|
6632
|
+
Service,
|
|
6633
|
+
SourceCSS,
|
|
6634
|
+
SourceJS,
|
|
6635
|
+
Tag,
|
|
6636
|
+
TagElements,
|
|
6637
|
+
Timer,
|
|
6638
|
+
Toggle,
|
|
6639
|
+
TransitionEffect,
|
|
6640
|
+
VO,
|
|
6641
|
+
View,
|
|
6642
|
+
_Cast,
|
|
6643
|
+
_CastProps,
|
|
6644
|
+
_ComponentWidget_,
|
|
6645
|
+
_Crypt,
|
|
6646
|
+
_DOMCreateElement,
|
|
6647
|
+
_DataStringify,
|
|
6648
|
+
_LegacyCopy,
|
|
6649
|
+
_QC_CLASSES,
|
|
6650
|
+
_QC_PACKAGES,
|
|
6651
|
+
_QC_PACKAGES_IMPORTED,
|
|
6652
|
+
_QC_READY_LISTENERS,
|
|
6653
|
+
_Ready,
|
|
6654
|
+
__getType__,
|
|
6655
|
+
__instanceID,
|
|
6656
|
+
__is_raw_class__,
|
|
6657
|
+
__make_global__,
|
|
6658
|
+
__to_number,
|
|
6659
|
+
__top__,
|
|
6660
|
+
_buildComponentsFromElements_,
|
|
6661
|
+
_fireAsyncLoad,
|
|
6662
|
+
_methods_,
|
|
6663
|
+
_protected_code_,
|
|
6664
|
+
_require_,
|
|
6665
|
+
_super_,
|
|
6666
|
+
_tag_filter_,
|
|
6667
|
+
_top,
|
|
6668
|
+
asyncLoad,
|
|
6669
|
+
captureFalseTouch,
|
|
6670
|
+
componentLoader,
|
|
6671
|
+
findPackageNodePath,
|
|
6672
|
+
get,
|
|
6673
|
+
getDocumentLayout,
|
|
6674
|
+
global,
|
|
6675
|
+
isBrowser,
|
|
6676
|
+
isNodeCommonJS,
|
|
6677
|
+
isQCObjects_Class,
|
|
6678
|
+
isQCObjects_Object,
|
|
6679
|
+
is_a,
|
|
6680
|
+
is_phonegap,
|
|
6681
|
+
logger,
|
|
6682
|
+
qcobjects,
|
|
6683
|
+
range,
|
|
6684
|
+
ready,
|
|
6685
|
+
resetTop,
|
|
6686
|
+
serviceLoader,
|
|
6687
|
+
set,
|
|
6688
|
+
setDefaultProcessors,
|
|
6689
|
+
shortCode,
|
|
6690
|
+
subelements,
|
|
6691
|
+
waitUntil
|
|
6692
|
+
});
|
|
6601
6693
|
//# sourceMappingURL=index.cjs.map
|