@wavemaker/angular-codegen 11.8.0-next.27308 → 11.8.0-next.27310
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.
- angular-codegen/angular-app/package-lock.json +4 -4
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/dependencies/pipe-provider.cjs.js +44 -0
- angular-codegen/dependencies/transpilation-mobile.cjs.js +22 -0
- angular-codegen/dependencies/transpilation-web.cjs.js +22 -0
- angular-codegen/package.json +1 -1
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@metrichor/jmespath": "0.3.1",
|
|
37
37
|
"@wavemaker/focus-trap": "1.0.1",
|
|
38
38
|
"@wavemaker/nvd3": "1.8.11",
|
|
39
|
-
"@wavemaker/variables": "11.8.0-next.
|
|
39
|
+
"@wavemaker/variables": "11.8.0-next.27310",
|
|
40
40
|
"@ztree/ztree_v3": "3.5.48",
|
|
41
41
|
"angular-imask": "^7.6.1",
|
|
42
42
|
"angular2-websocket": "0.9.7",
|
|
@@ -6452,9 +6452,9 @@
|
|
|
6452
6452
|
}
|
|
6453
6453
|
},
|
|
6454
6454
|
"node_modules/@wavemaker/variables": {
|
|
6455
|
-
"version": "11.8.0-next.
|
|
6456
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.8.0-next.
|
|
6457
|
-
"integrity": "sha512-
|
|
6455
|
+
"version": "11.8.0-next.27310",
|
|
6456
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.8.0-next.27310.tgz",
|
|
6457
|
+
"integrity": "sha512-nJr8o5HtL18oFOi1dI/VX6ODhRDj3eWIjYWphUaB93+tS6xk7e8i40nMJ/080e21Oq6DIzetLZ7/EYlDU2ygXA==",
|
|
6458
6458
|
"dependencies": {
|
|
6459
6459
|
"@metrichor/jmespath": "^0.3.1",
|
|
6460
6460
|
"he": "^1.2.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@metrichor/jmespath": "0.3.1",
|
|
46
46
|
"@wavemaker/focus-trap": "1.0.1",
|
|
47
47
|
"@wavemaker/nvd3": "1.8.11",
|
|
48
|
-
"@wavemaker/variables": "11.8.0-next.
|
|
48
|
+
"@wavemaker/variables": "11.8.0-next.27310",
|
|
49
49
|
"@ztree/ztree_v3": "3.5.48",
|
|
50
50
|
"angular-imask": "^7.6.1",
|
|
51
51
|
"angular2-websocket": "0.9.7",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"tslib": "2.4.1",
|
|
71
71
|
"x2js": "3.4.4",
|
|
72
72
|
"zone.js": "0.14.7",
|
|
73
|
-
"@wavemaker/app-ng-runtime": "11.8.0-next.
|
|
73
|
+
"@wavemaker/app-ng-runtime": "11.8.0-next.27310"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|
|
@@ -145519,6 +145519,28 @@ let CustomPipeManager$1 = class CustomPipeManager {
|
|
|
145519
145519
|
args: [{ providedIn: 'root' }]
|
|
145520
145520
|
}], null, null); })();
|
|
145521
145521
|
|
|
145522
|
+
let CustomIconsLoaderService$1 = class CustomIconsLoaderService {
|
|
145523
|
+
constructor() {
|
|
145524
|
+
this.http = inject(HttpClient$1);
|
|
145525
|
+
}
|
|
145526
|
+
load() {
|
|
145527
|
+
this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
|
|
145528
|
+
const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
|
|
145529
|
+
let match;
|
|
145530
|
+
while ((match = regex.exec(fontConfig)) !== null) {
|
|
145531
|
+
cssPaths.push(match[1]);
|
|
145532
|
+
}
|
|
145533
|
+
loadStyleSheets$1(cssPaths);
|
|
145534
|
+
}, (error) => { });
|
|
145535
|
+
}
|
|
145536
|
+
static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
|
|
145537
|
+
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
|
|
145538
|
+
};
|
|
145539
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomIconsLoaderService$1, [{
|
|
145540
|
+
type: Injectable,
|
|
145541
|
+
args: [{ providedIn: 'root' }]
|
|
145542
|
+
}], null, null); })();
|
|
145543
|
+
|
|
145522
145544
|
let StatePersistence$1 = class StatePersistence {
|
|
145523
145545
|
constructor() {
|
|
145524
145546
|
this.HISTORY_HANDLER = 'replace';
|
|
@@ -203725,6 +203747,28 @@ class CustomPipeManager {
|
|
|
203725
203747
|
args: [{ providedIn: 'root' }]
|
|
203726
203748
|
}], null, null); })();
|
|
203727
203749
|
|
|
203750
|
+
class CustomIconsLoaderService {
|
|
203751
|
+
constructor() {
|
|
203752
|
+
this.http = inject$1(HttpClient);
|
|
203753
|
+
}
|
|
203754
|
+
load() {
|
|
203755
|
+
this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
|
|
203756
|
+
const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
|
|
203757
|
+
let match;
|
|
203758
|
+
while ((match = regex.exec(fontConfig)) !== null) {
|
|
203759
|
+
cssPaths.push(match[1]);
|
|
203760
|
+
}
|
|
203761
|
+
loadStyleSheets(cssPaths);
|
|
203762
|
+
}, (error) => { });
|
|
203763
|
+
}
|
|
203764
|
+
static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
|
|
203765
|
+
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable$1({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
|
|
203766
|
+
}
|
|
203767
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata$1(CustomIconsLoaderService, [{
|
|
203768
|
+
type: Injectable$1,
|
|
203769
|
+
args: [{ providedIn: 'root' }]
|
|
203770
|
+
}], null, null); })();
|
|
203771
|
+
|
|
203728
203772
|
class StatePersistence {
|
|
203729
203773
|
constructor() {
|
|
203730
203774
|
this.HISTORY_HANDLER = 'replace';
|
|
@@ -88910,6 +88910,28 @@ class CustomPipeManager {
|
|
|
88910
88910
|
args: [{ providedIn: 'root' }]
|
|
88911
88911
|
}], null, null); })();
|
|
88912
88912
|
|
|
88913
|
+
class CustomIconsLoaderService {
|
|
88914
|
+
constructor() {
|
|
88915
|
+
this.http = inject(HttpClient);
|
|
88916
|
+
}
|
|
88917
|
+
load() {
|
|
88918
|
+
this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
|
|
88919
|
+
const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
|
|
88920
|
+
let match;
|
|
88921
|
+
while ((match = regex.exec(fontConfig)) !== null) {
|
|
88922
|
+
cssPaths.push(match[1]);
|
|
88923
|
+
}
|
|
88924
|
+
loadStyleSheets(cssPaths);
|
|
88925
|
+
}, (error) => { });
|
|
88926
|
+
}
|
|
88927
|
+
static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
|
|
88928
|
+
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
|
|
88929
|
+
}
|
|
88930
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomIconsLoaderService, [{
|
|
88931
|
+
type: Injectable,
|
|
88932
|
+
args: [{ providedIn: 'root' }]
|
|
88933
|
+
}], null, null); })();
|
|
88934
|
+
|
|
88913
88935
|
class StatePersistence {
|
|
88914
88936
|
constructor() {
|
|
88915
88937
|
this.HISTORY_HANDLER = 'replace';
|
|
@@ -100101,6 +100101,28 @@ class CustomPipeManager {
|
|
|
100101
100101
|
args: [{ providedIn: 'root' }]
|
|
100102
100102
|
}], null, null); })();
|
|
100103
100103
|
|
|
100104
|
+
class CustomIconsLoaderService {
|
|
100105
|
+
constructor() {
|
|
100106
|
+
this.http = inject(HttpClient);
|
|
100107
|
+
}
|
|
100108
|
+
load() {
|
|
100109
|
+
this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
|
|
100110
|
+
const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
|
|
100111
|
+
let match;
|
|
100112
|
+
while ((match = regex.exec(fontConfig)) !== null) {
|
|
100113
|
+
cssPaths.push(match[1]);
|
|
100114
|
+
}
|
|
100115
|
+
loadStyleSheets(cssPaths);
|
|
100116
|
+
}, (error) => { });
|
|
100117
|
+
}
|
|
100118
|
+
static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
|
|
100119
|
+
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
|
|
100120
|
+
}
|
|
100121
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomIconsLoaderService, [{
|
|
100122
|
+
type: Injectable,
|
|
100123
|
+
args: [{ providedIn: 'root' }]
|
|
100124
|
+
}], null, null); })();
|
|
100125
|
+
|
|
100104
100126
|
class StatePersistence {
|
|
100105
100127
|
constructor() {
|
|
100106
100128
|
this.HISTORY_HANDLER = 'replace';
|