@wavemaker/angular-codegen 11.5.2-next.141139 → 11.5.2-next.141143

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.
@@ -6,12 +6,10 @@
6
6
  "start": "./node_modules/.bin/ng serve",
7
7
  "build": "node build-scripts/build.js",
8
8
  "post-build": "node build-scripts/post-build.js",
9
- "test": "./node_modules/.bin/ng test",
10
- "test_components": "./node_modules/.bin/ng t @wm/components/base",
11
- "test_mobile": "./node_modules/.bin/ng t @wm/mobile/components/basic",
12
- "test_variables": "./node_modules/.bin/ng t @wm/variables",
13
- "test-all": "npm run test_variables && npm run test_components",
14
- "test-prod": "npm run test-all > karma-test-report.txt; node combine-coverage.js >> karma-test-report.txt",
9
+ "test": "jest --no-cache --detectOpenHandles",
10
+ "test:watch": "jest --watch",
11
+ "test:coverage": "jest --coverage --detectOpenHandles",
12
+ "test-prod": "jest --no-cache --no-color --detectOpenHandles --ci --silent 2>&1 | sed 's/\\x1b\\[[0-9;]*m//g' > karma-test-report.txt",
15
13
  "lint": "./node_modules/.bin/ng lint",
16
14
  "e2e": "./node_modules/.bin/ng e2e",
17
15
  "optimizecss": "gulp --gulpfile build-scripts/optimize-css.gulpfile.js",
@@ -43,13 +41,13 @@
43
41
  "@awesome-cordova-plugins/network": "5.39.1",
44
42
  "@awesome-cordova-plugins/sqlite": "5.39.1",
45
43
  "@awesome-cordova-plugins/vibration": "5.39.1",
46
- "@babel/runtime": "^7.14.8",
47
- "@metrichor/jmespath": "^0.3.1",
48
- "@wavemaker/focus-trap": "^1.0.0",
44
+ "@babel/runtime": "7.14.8",
45
+ "@metrichor/jmespath": "0.3.1",
46
+ "@wavemaker/focus-trap": "1.0.0",
49
47
  "@wavemaker/nvd3": "1.8.11",
50
- "@wavemaker/variables": "11.5.2-next.141139",
51
- "@ztree/ztree_v3": "^3.5.48",
52
- "angular-imask": "^7.6.0",
48
+ "@wavemaker/variables": "11.5.2-next.141143",
49
+ "@ztree/ztree_v3": "3.5.48",
50
+ "angular-imask": "7.6.0",
53
51
  "angular2-websocket": "0.9.7",
54
52
  "core-js": "3.35.1",
55
53
  "d3": "7.8.5",
@@ -60,7 +58,7 @@
60
58
  "jquery": "3.7.1",
61
59
  "jquery-ui": "1.13.2",
62
60
  "js-cookie": "2.2.0",
63
- "jssha": "^3.1.2",
61
+ "jssha": "3.1.2",
64
62
  "lodash": "4.17.21",
65
63
  "ng-circle-progress": "1.7.1",
66
64
  "ngx-bootstrap": "9.0.0",
@@ -69,10 +67,11 @@
69
67
  "rxjs": "6.6.0",
70
68
  "rxjs-compat": "6.4.0",
71
69
  "summernote": "0.8.18",
70
+ "ts-jest": "29.1.1",
72
71
  "tslib": "2.4.1",
73
- "x2js": "^3.4.4",
74
- "zone.js": "~0.13.3",
75
- "@wavemaker/app-ng-runtime": "11.5.2-next.141139"
72
+ "x2js": "3.4.4",
73
+ "zone.js": "0.13.3",
74
+ "@wavemaker/app-ng-runtime": "11.5.2-next.141143"
76
75
  },
77
76
  "devDependencies": {
78
77
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -87,9 +86,8 @@
87
86
  "@rollup/plugin-commonjs": "24.0.0",
88
87
  "@rollup/plugin-multi-entry": "6.0.0",
89
88
  "@rollup/plugin-node-resolve": "15.0.1",
90
- "@types/jasmine": "2.8.8",
91
- "@types/jasminewd2": "2.0.3",
92
- "@types/jquery": "3.3.22",
89
+ "@types/jest": "^29.5.12",
90
+ "@types/jquery": "^3.5.16",
93
91
  "@types/node": "12.11.1",
94
92
  "@types/sizzle": "^2.3.3",
95
93
  "babel-loader": "^9.1.2",
@@ -99,17 +97,8 @@
99
97
  "core-js-builder": "2.5.7",
100
98
  "fs": "0.0.1-security",
101
99
  "fs-extra": "7.0.1",
102
- "istanbul-api": "1.2.2",
103
- "istanbul-reports": "1.1.4",
104
- "jasmine": "3.5.0",
105
- "jasmine-core": "~3.5.0",
106
- "jasmine-spec-reporter": "~5.0.0",
107
- "karma": "~6.3.15",
108
- "karma-chrome-launcher": "~3.1.0",
109
- "karma-coverage-istanbul-reporter": "~3.0.2",
110
- "karma-jasmine": "~4.0.0",
111
- "karma-jasmine-html-reporter": "^1.5.0",
112
- "karma-mocha-reporter": "2.2.5",
100
+ "jest": "^29.7.0",
101
+ "jest-preset-angular": "^14.1.0",
113
102
  "moment": "2.29.4",
114
103
  "moment-timezone": "^0.5.34",
115
104
  "ng-packagr": "16.2.3",
@@ -0,0 +1,89 @@
1
+ import "jest-preset-angular/setup-jest";
2
+ import { ToastrModule } from 'ngx-toastr';
3
+ import { TestBed } from '@angular/core/testing';
4
+
5
+ // Mock global objects if necessary
6
+ global.jQuery = require("jquery");
7
+ global.$ = global.jQuery;
8
+
9
+
10
+
11
+ global._ = require("lodash");
12
+ global.moment = require("moment");
13
+ class IntersectionObserver {
14
+ constructor(callback, options) {
15
+
16
+ }
17
+
18
+ observe(element) {
19
+
20
+ }
21
+
22
+ unobserve() {
23
+ return null;
24
+ }
25
+
26
+ disconnect() {
27
+ return null;
28
+ }
29
+ }
30
+ global.IntersectionObserver = IntersectionObserver;
31
+ // jest.setup.js
32
+
33
+ // Mock MSCSSMatrix
34
+ class MockMSCSSMatrix {
35
+ constructor() {
36
+ // Initialize with default values or any necessary properties
37
+ }
38
+
39
+ // Add any methods that your tests might call
40
+ setMatrixValue(value) {
41
+ // Mock implementation of setMatrixValue
42
+ }
43
+
44
+ multiply(matrix) {
45
+ // Mock implementation of multiply
46
+ return this;
47
+ }
48
+
49
+ // Add other methods as needed
50
+ }
51
+
52
+ // Attach the mock to the global scope
53
+ global.MSCSSMatrix = MockMSCSSMatrix;
54
+
55
+ import "jquery-ui/ui/disable-selection.js";
56
+ import "jquery-ui/ui/version.js";
57
+ import "jquery-ui/ui/widget.js";
58
+ import "jquery-ui/ui/scroll-parent.js";
59
+ import "jquery-ui/ui/plugin.js";
60
+ import "jquery-ui/ui/data.js";
61
+ import "jquery-ui/ui/widgets/mouse.js";
62
+ import "jquery-ui/ui/widgets/resizable.js";
63
+ import "jquery-ui/ui/widgets/sortable.js";
64
+ import "jquery-ui/ui/widgets/draggable.js";
65
+ import "jquery-ui/ui/widgets/droppable.js";
66
+ import "libraries/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js";
67
+ import "moment-timezone/builds/moment-timezone.min.js";
68
+ import "hammerjs/hammer.min.js";
69
+ import "iscroll/build/iscroll.js";
70
+ import "tabbable/dist/index.umd.min.js";
71
+ import "@wavemaker/focus-trap/dist/focus-trap.umd.min.js";
72
+
73
+
74
+
75
+ beforeEach(() => {
76
+ TestBed.configureTestingModule({
77
+ imports : [
78
+ ToastrModule.forRoot(),
79
+ ],
80
+ })
81
+ Object.defineProperties(window, {
82
+ location: {
83
+ writable: true,
84
+ value: {
85
+ reload: jest.fn(),
86
+ },
87
+ },
88
+ });
89
+ });
@@ -2,22 +2,11 @@
2
2
  "compileOnSave": false,
3
3
  "compilerOptions": {
4
4
  "baseUrl": "./",
5
- "downlevelIteration": true,
6
5
  "outDir": "./dist/out-tsc",
7
- "sourceMap": true,
8
- "declaration": false,
9
- "target": "es2022",
10
- "module": "es2020",
11
- "moduleResolution": "node",
12
- "emitDecoratorMetadata": true,
13
6
  "experimentalDecorators": true,
14
- "typeRoots": [
15
- "node_modules/@types"
16
- ],
17
- "lib": [
18
- "es2018",
19
- "dom"
20
- ],
7
+ "moduleResolution": "node",
8
+ "target": "ES2022",
9
+ "module": "ES2022",
21
10
  "paths": {
22
11
  "rxjs/observable/throw": [
23
12
  "node_modules/rxjs-compat/_esm2015/observable/throw"
@@ -25,96 +14,62 @@
25
14
  "rxjs/observable/*": [
26
15
  "node_modules/rxjs-compat/_esm2015/observable/*"
27
16
  ],
28
- "rxjs/Observable": [
29
- "node_modules/rxjs-compat/_esm2015/Observable"
30
- ],
31
- "@wm/build-task": [
32
- "node_modules/@wavemaker/app-ng-runtime/build-task/"
33
- ],
34
- "@wm/mobile-build-task": [
35
- "node_modules/@wavemaker/app-ng-runtime/mobile-build-task"
36
- ],
37
- "@wm/core": [
38
- "node_modules/@wavemaker/app-ng-runtime/core"
39
- ],
40
- "@wavemaker/variables": [
41
- "node_modules/@wavemaker/variables/"
42
- ],
43
- "@wm/components/base": [
44
- "node_modules/@wavemaker/app-ng-runtime/components/base"
45
- ],
17
+ "rxjs/Observable": ["node_modules/rxjs-compat/_esm2015/Observable"],
18
+ "@wm/build-task": ["libraries/build-task/"],
19
+ "@wm/mobile-build-task": ["libraries/mobile-build-task"],
20
+ "@wm/core": ["libraries/core/index.d.ts"],
21
+ "@wavemaker/variables": ["node_modules/@wavemaker/variables/"],
22
+ "@wm/components/base": ["libraries/components/base/public_api.d.ts"],
46
23
  "@wm/components/basic": [
47
- "node_modules/@wavemaker/app-ng-runtime/components/basic/default"
24
+ "libraries/components/basic/default/index.d.ts"
48
25
  ],
49
26
  "@wm/components/input": [
50
- "node_modules/@wavemaker/app-ng-runtime/components/input/default"
27
+ "libraries/components/input/default/index.d.ts"
51
28
  ],
52
29
  "@wm/components/page": [
53
- "node_modules/@wavemaker/app-ng-runtime/components/page/default"
30
+ "libraries/components/page/default/index.d.ts"
54
31
  ],
55
32
  "@wm/mobile/components/basic": [
56
- "node_modules/@wavemaker/app-ng-runtime/mobile/components/basic/default"
33
+ "libraries/mobile/components/basic/default/index.d.ts"
57
34
  ],
58
35
  "@wm/mobile/components/page": [
59
- "node_modules/@wavemaker/app-ng-runtime/mobile/components/page/default"
36
+ "libraries/mobile/components/page/default/index.d.ts"
60
37
  ],
61
38
  "@wm/components/dialogs": [
62
- "node_modules/@wavemaker/app-ng-runtime/components/dialogs/default"
63
- ],
64
- "@wm/mobile/components/*": [
65
- "node_modules/@wavemaker/app-ng-runtime/mobile/components/*"
66
- ],
67
- "@wm/components/*": [
68
- "node_modules/@wavemaker/app-ng-runtime/components/*"
69
- ],
70
- "@wm/transpiler": [
71
- "node_modules/@wavemaker/app-ng-runtime/transpiler"
72
- ],
73
- "@wm/security": [
74
- "node_modules/@wavemaker/app-ng-runtime/security"
75
- ],
76
- "@swipey": [
77
- "node_modules/@wavemaker/app-ng-runtime/swipey"
78
- ],
79
- "@wm/http": [
80
- "node_modules/@wavemaker/app-ng-runtime/http"
81
- ],
82
- "@wm/oAuth": [
83
- "node_modules/@wavemaker/app-ng-runtime/oAuth"
84
- ],
85
- "@wm/variables": [
86
- "node_modules/@wavemaker/app-ng-runtime/variables"
87
- ],
88
- "@wm/mobile/core": [
89
- "node_modules/@wavemaker/app-ng-runtime/mobile/core"
90
- ],
91
- "@wm/mobile/components": [
92
- "node_modules/@wavemaker/app-ng-runtime/mobile/components"
93
- ],
94
- "@wm/mobile/offline": [
95
- "node_modules/@wavemaker/app-ng-runtime/mobile/offline"
96
- ],
97
- "@wm/mobile/variables": [
98
- "node_modules/@wavemaker/app-ng-runtime/mobile/variables"
99
- ],
100
- "@wm/runtime/base": [
101
- "node_modules/@wavemaker/app-ng-runtime/runtime/base"
102
- ],
103
- "@wm/runtime/dynamic": [
104
- "node_modules/@wavemaker/app-ng-runtime/runtime/dynamic"
105
- ],
106
- "@wm/mobile/runtime": [
107
- "node_modules/@wavemaker/app-ng-runtime/mobile/runtime"
108
- ],
39
+ "libraries/components/dialogs/default/index.d.ts"
40
+ ],
41
+ "@wm/mobile/components/*": ["libraries/mobile/components/*"],
42
+ "@wm/components/*": ["libraries/components/*"],
43
+ "@wm/transpiler": ["libraries/transpiler/index.d.ts"],
44
+ "@wm/security": ["libraries/security/index.d.ts"],
45
+ "@swipey": ["libraries/swipey/index.d.ts"],
46
+ "@wm/http": ["libraries/http/index.d.ts"],
47
+ "@wm/oAuth": ["libraries/oAuth/index.d.ts"],
48
+ "@wm/variables": ["libraries/variables/index.d.ts"],
49
+ "@wm/mobile/core": ["libraries/mobile/core/index.d.ts"],
50
+ "@wm/mobile/components": ["libraries/mobile/components/index.d.ts"],
51
+ "@wm/mobile/offline": ["libraries/mobile/offline/index.d.ts"],
52
+ "@wm/mobile/variables": ["libraries/mobile/variables/index.d.ts"],
53
+ "@wm/runtime/base": ["libraries/runtime/base/index.d.ts"],
54
+ "@wm/runtime/dynamic": ["libraries/runtime/dynamic/index.d.ts"],
55
+ "@wm/mobile/runtime": ["libraries/mobile/runtime/index.d.ts"],
109
56
  "@wm/mobile/runtime/dynamic": [
110
- "node_modules/@wavemaker/app-ng-runtime/mobile/runtime-dynamic"
57
+ "libraries/mobile/runtime-dynamic/index.d.ts"
111
58
  ]
112
59
  },
113
- "useDefineForClassFields": false
60
+ "lib": ["es2020", "dom"],
61
+ "useDefineForClassFields": false,
62
+ "resolveJsonModule": true
114
63
  },
115
64
  "angularCompilerOptions": {
116
- "compilationMode": "full",
117
- "strictMetadataEmit": false,
118
- "fullTemplateTypeCheck": false
65
+ "extendedDiagnostics": {
66
+ "checks": {
67
+ "optionalChainNotNullable": "suppress"
68
+ }
69
+ },
70
+ "enableI18nLegacyMessageIdFormat": false,
71
+ "strictInjectionParameters": false,
72
+ "strictInputAccessModifiers": false,
73
+ "trace": true
119
74
  }
120
- }
75
+ }
@@ -29,74 +29,74 @@
29
29
  "node_modules/rxjs-compat/_esm2015/Observable"
30
30
  ],
31
31
  "@wm/build-task": [
32
- "node_modules/@wavemaker/app-ng-runtime/build-task/"
32
+ "libraries/build-task/"
33
33
  ],
34
34
  "@wm/mobile-build-task": [
35
- "node_modules/@wavemaker/app-ng-runtime/mobile-build-task"
35
+ "libraries/mobile-build-task"
36
36
  ],
37
37
  "@wm/core": [
38
- "node_modules/@wavemaker/app-ng-runtime/core"
38
+ "libraries/core"
39
39
  ],
40
40
  "@wm/components/basic": [
41
- "node_modules/@wavemaker/app-ng-runtime/components/basic/default"
41
+ "libraries/components/basic/default"
42
42
  ],
43
43
  "@wm/components/input": [
44
- "node_modules/@wavemaker/app-ng-runtime/components/input/default"
44
+ "libraries/components/input/default"
45
45
  ],
46
46
  "@wm/components/page": [
47
- "node_modules/@wavemaker/app-ng-runtime/components/page/default"
47
+ "libraries/components/page/default"
48
48
  ],
49
49
  "@wm/components/dialogs": [
50
- "node_modules/@wavemaker/app-ng-runtime/components/dialogs/default"
50
+ "libraries/components/dialogs/default"
51
51
  ],
52
52
  "@wm/components/*": [
53
- "node_modules/@wavemaker/app-ng-runtime/components/*"
53
+ "libraries/components/*"
54
54
  ],
55
55
  "@wm/transpiler": [
56
- "node_modules/@wavemaker/app-ng-runtime/transpiler"
56
+ "libraries/transpiler"
57
57
  ],
58
58
  "@wm/security": [
59
- "node_modules/@wavemaker/app-ng-runtime/security"
59
+ "libraries/security"
60
60
  ],
61
61
  "@swipey": [
62
- "node_modules/@wavemaker/app-ng-runtime/swipey"
62
+ "libraries/swipey"
63
63
  ],
64
64
  "@wm/http": [
65
- "node_modules/@wavemaker/app-ng-runtime/http"
65
+ "libraries/http"
66
66
  ],
67
67
  "@wm/oAuth": [
68
- "node_modules/@wavemaker/app-ng-runtime/oAuth"
68
+ "libraries/oAuth"
69
69
  ],
70
70
  "@wm/variables": [
71
- "node_modules/@wavemaker/app-ng-runtime/variables"
71
+ "libraries/variables"
72
72
  ],
73
73
  "@wm/mobile/core": [
74
- "node_modules/@wavemaker/app-ng-runtime/mobile/core"
74
+ "libraries/mobile/core"
75
75
  ],
76
76
  "@wm/mobile/components": [
77
- "node_modules/@wavemaker/app-ng-runtime/mobile/components"
77
+ "libraries/mobile/components"
78
78
  ],
79
79
  "@wm/mobile/offline": [
80
- "node_modules/@wavemaker/app-ng-runtime/mobile/offline"
80
+ "libraries/mobile/offline"
81
81
  ],
82
82
  "@wm/mobile/variables": [
83
- "node_modules/@wavemaker/app-ng-runtime/mobile/variables"
83
+ "libraries/mobile/variables"
84
84
  ],
85
85
  "@wm/runtime/base": [
86
- "node_modules/@wavemaker/app-ng-runtime/runtime/base"
86
+ "libraries/runtime/base"
87
87
  ],
88
88
  "@wm/runtime/dynamic": [
89
- "node_modules/@wavemaker/app-ng-runtime/runtime/dynamic"
89
+ "libraries/runtime/dynamic"
90
90
  ],
91
91
  "@wm/mobile/runtime": [
92
- "node_modules/@wavemaker/app-ng-runtime/mobile/placeholder/runtime"
92
+ "libraries/mobile/placeholder/runtime"
93
93
  ],
94
94
  "@wm/mobile/runtime-dynamic": [
95
- "node_modules/@wavemaker/app-ng-runtime/mobile/placeholder/runtime/dynamic"
95
+ "libraries/mobile/placeholder/runtime/dynamic"
96
96
  ]
97
97
  }
98
98
  },
99
- "angularCompilerOptions": {
99
+ "angularCompilerOptions":{
100
100
  "compilationMode": "full"
101
101
  }
102
- }
102
+ }
@@ -21096,7 +21096,6 @@ var ExpressionType;
21096
21096
  })(ExpressionType || (ExpressionType = {}));
21097
21097
  function $parseExpr(expr, defOnly) {
21098
21098
  if (!pipeProvider) {
21099
- console.log('set pipe provider');
21100
21099
  return noop;
21101
21100
  }
21102
21101
  if (typeof (expr) !== 'string') {
@@ -105001,7 +105001,6 @@ var ExpressionType$2;
105001
105001
  })(ExpressionType$2 || (ExpressionType$2 = {}));
105002
105002
  function $parseExpr$1(expr, defOnly) {
105003
105003
  {
105004
- console.log('set pipe provider');
105005
105004
  return noop$1$1;
105006
105005
  }
105007
105006
  }
@@ -107151,6 +107150,28 @@ let CustomPipeManager$1 = class CustomPipeManager {
107151
107150
  args: [{ providedIn: 'root' }]
107152
107151
  }], null, null); })();
107153
107152
 
107153
+ let CustomIconsLoaderService$1 = class CustomIconsLoaderService {
107154
+ constructor() {
107155
+ this.http = inject(HttpClient$1);
107156
+ }
107157
+ load() {
107158
+ this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
107159
+ const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
107160
+ let match;
107161
+ while ((match = regex.exec(fontConfig)) !== null) {
107162
+ cssPaths.push(match[1]);
107163
+ }
107164
+ loadStyleSheets$1(cssPaths);
107165
+ }, (error) => { });
107166
+ }
107167
+ static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
107168
+ static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
107169
+ };
107170
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomIconsLoaderService$1, [{
107171
+ type: Injectable,
107172
+ args: [{ providedIn: 'root' }]
107173
+ }], null, null); })();
107174
+
107154
107175
  let StatePersistence$1 = class StatePersistence {
107155
107176
  constructor() {
107156
107177
  this.HISTORY_HANDLER = 'replace';
@@ -133866,7 +133887,6 @@ var ExpressionType;
133866
133887
  })(ExpressionType || (ExpressionType = {}));
133867
133888
  function $parseExpr(expr, defOnly) {
133868
133889
  {
133869
- console.log('set pipe provider');
133870
133890
  return noop$1;
133871
133891
  }
133872
133892
  }
@@ -136016,6 +136036,28 @@ class CustomPipeManager {
136016
136036
  args: [{ providedIn: 'root' }]
136017
136037
  }], null, null); })();
136018
136038
 
136039
+ class CustomIconsLoaderService {
136040
+ constructor() {
136041
+ this.http = inject$1(HttpClient);
136042
+ }
136043
+ load() {
136044
+ this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
136045
+ const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
136046
+ let match;
136047
+ while ((match = regex.exec(fontConfig)) !== null) {
136048
+ cssPaths.push(match[1]);
136049
+ }
136050
+ loadStyleSheets(cssPaths);
136051
+ }, (error) => { });
136052
+ }
136053
+ static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
136054
+ static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable$1({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
136055
+ }
136056
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata$1(CustomIconsLoaderService, [{
136057
+ type: Injectable$1,
136058
+ args: [{ providedIn: 'root' }]
136059
+ }], null, null); })();
136060
+
136019
136061
  class StatePersistence {
136020
136062
  constructor() {
136021
136063
  this.HISTORY_HANDLER = 'replace';
@@ -64092,7 +64092,6 @@ var ExpressionType;
64092
64092
  })(ExpressionType || (ExpressionType = {}));
64093
64093
  function $parseExpr(expr, defOnly) {
64094
64094
  {
64095
- console.log('set pipe provider');
64096
64095
  return noop$1;
64097
64096
  }
64098
64097
  }
@@ -66240,6 +66239,28 @@ class CustomPipeManager {
66240
66239
  args: [{ providedIn: 'root' }]
66241
66240
  }], null, null); })();
66242
66241
 
66242
+ class CustomIconsLoaderService {
66243
+ constructor() {
66244
+ this.http = inject(HttpClient);
66245
+ }
66246
+ load() {
66247
+ this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
66248
+ const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
66249
+ let match;
66250
+ while ((match = regex.exec(fontConfig)) !== null) {
66251
+ cssPaths.push(match[1]);
66252
+ }
66253
+ loadStyleSheets(cssPaths);
66254
+ }, (error) => { });
66255
+ }
66256
+ static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
66257
+ static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
66258
+ }
66259
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomIconsLoaderService, [{
66260
+ type: Injectable,
66261
+ args: [{ providedIn: 'root' }]
66262
+ }], null, null); })();
66263
+
66243
66264
  class StatePersistence {
66244
66265
  constructor() {
66245
66266
  this.HISTORY_HANDLER = 'replace';
@@ -64092,7 +64092,6 @@ var ExpressionType;
64092
64092
  })(ExpressionType || (ExpressionType = {}));
64093
64093
  function $parseExpr(expr, defOnly) {
64094
64094
  {
64095
- console.log('set pipe provider');
64096
64095
  return noop$1;
64097
64096
  }
64098
64097
  }
@@ -66240,6 +66239,28 @@ class CustomPipeManager {
66240
66239
  args: [{ providedIn: 'root' }]
66241
66240
  }], null, null); })();
66242
66241
 
66242
+ class CustomIconsLoaderService {
66243
+ constructor() {
66244
+ this.http = inject(HttpClient);
66245
+ }
66246
+ load() {
66247
+ this.http.get('./font.config.js', { responseType: 'text' }).subscribe((fontConfig) => {
66248
+ const cssPaths = [], regex = /"csspath":\s*"([^"]+)"/g;
66249
+ let match;
66250
+ while ((match = regex.exec(fontConfig)) !== null) {
66251
+ cssPaths.push(match[1]);
66252
+ }
66253
+ loadStyleSheets(cssPaths);
66254
+ }, (error) => { });
66255
+ }
66256
+ static { this.ɵfac = function CustomIconsLoaderService_Factory(t) { return new (t || CustomIconsLoaderService)(); }; }
66257
+ static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: CustomIconsLoaderService, factory: CustomIconsLoaderService.ɵfac, providedIn: 'root' }); }
66258
+ }
66259
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomIconsLoaderService, [{
66260
+ type: Injectable,
66261
+ args: [{ providedIn: 'root' }]
66262
+ }], null, null); })();
66263
+
66243
66264
  class StatePersistence {
66244
66265
  constructor() {
66245
66266
  this.HISTORY_HANDLER = 'replace';
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.5.2-next.141139",
3
+ "version": "11.5.2-next.141143",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {