@wavemaker/angular-codegen 12.0.0-next.1417172 → 12.0.0-next.1417177
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/angular.json +301 -311
- angular-codegen/angular-app/package-lock.json +4 -4
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/angular-app/src/main.ts +0 -3
- angular-codegen/angular-app/tsconfig.json +27 -27
- angular-codegen/angular-app/tsconfig.web-app.json +24 -24
- angular-codegen/package.json +1 -1
@@ -1,316 +1,306 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
2
|
+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
3
|
+
"version": 1,
|
4
|
+
"newProjectRoot": "projects",
|
5
|
+
"projects": {
|
6
|
+
"angular-app": {
|
7
|
+
"root": "",
|
8
|
+
"sourceRoot": "src",
|
9
|
+
"projectType": "application",
|
10
|
+
"prefix": "app",
|
11
|
+
"schematics": {},
|
12
|
+
"architect": {
|
13
|
+
"build": {
|
14
|
+
"builder": "@angular-builders/custom-webpack:browser",
|
15
|
+
"options": {
|
16
|
+
"customWebpackConfig": {
|
17
|
+
"path": "./wm-custom-webpack.config.js"
|
18
|
+
},
|
19
|
+
"indexTransform": "./build-scripts/index-html-transform.js",
|
20
|
+
"deployUrl": "ng-bundle/",
|
21
|
+
"outputPath": "dist/ng-bundle",
|
22
|
+
"index": {
|
23
|
+
"input": "src/index.html",
|
24
|
+
"output": "../index.html"
|
25
|
+
},
|
26
|
+
"main": "src/main.ts",
|
27
|
+
"polyfills": "src/polyfills.ts",
|
28
|
+
"tsConfig": "src/tsconfig.app.json",
|
29
|
+
"assets": [
|
30
|
+
"src/favicon.ico",
|
31
|
+
"src/favicon.png",
|
32
|
+
"src/assets",
|
33
|
+
{
|
34
|
+
"glob": "print.css",
|
35
|
+
"input": "src/assets/",
|
36
|
+
"output": "."
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"glob": "**/*",
|
40
|
+
"input": "libraries/locales/",
|
41
|
+
"output": "/locales/"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"glob": "**/*",
|
45
|
+
"input": "node_modules/@wavemaker/app-ng-runtime/locales/",
|
46
|
+
"output": "/locales/"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"glob": "**/*",
|
50
|
+
"input": "src/servicedefs",
|
51
|
+
"output": "/servicedefs/"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"glob": "**/*",
|
55
|
+
"input": "resources",
|
56
|
+
"output": "/resources/",
|
57
|
+
"ignore": [
|
58
|
+
"**/*.txt"
|
59
|
+
]
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"styles": [
|
63
|
+
"src/styles.css",
|
64
|
+
"src/assets/styles/css/wm-style.css",
|
65
|
+
"src/assets/styles/css/wm-responsive.css",
|
66
|
+
{
|
67
|
+
"input": "src/assets/themes/material/style.css",
|
68
|
+
"inject": false,
|
69
|
+
"bundleName": "wm-styles"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"input": "src/assets/app.css",
|
73
|
+
"inject": false,
|
74
|
+
"bundleName": "wm-styles"
|
75
|
+
}
|
76
|
+
],
|
77
|
+
"scripts": [
|
78
|
+
"./node_modules/x2js/x2js.js",
|
79
|
+
"./node_modules/d3/dist/d3.min.js",
|
80
|
+
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
81
|
+
"./node_modules/jquery/dist/jquery.min.js",
|
82
|
+
"./node_modules/jquery-ui/ui/disable-selection.js",
|
83
|
+
"./node_modules/jquery-ui/ui/version.js",
|
84
|
+
"./node_modules/jquery-ui/ui/widget.js",
|
85
|
+
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
86
|
+
"./node_modules/jquery-ui/ui/plugin.js",
|
87
|
+
"./node_modules/jquery-ui/ui/data.js",
|
88
|
+
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
89
|
+
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
90
|
+
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
91
|
+
"./node_modules/jquery-ui/ui/widgets/draggable.js",
|
92
|
+
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
93
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/datatable/datatable.js",
|
94
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/swipey/swipey.jquery.plugin.js",
|
95
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js",
|
96
|
+
"./node_modules/moment/min/moment.min.js",
|
97
|
+
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
98
|
+
"./node_modules/fullcalendar/main.min.js",
|
99
|
+
"./node_modules/summernote/dist/summernote-lite.min.js",
|
100
|
+
"./node_modules/hammerjs/hammer.min.js",
|
101
|
+
"./node_modules/iscroll/build/iscroll.js",
|
102
|
+
"./node_modules/js-cookie/src/js.cookie.js",
|
103
|
+
"./node_modules/jssha/dist/sha256.js",
|
104
|
+
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
105
|
+
"./node_modules/@wavemaker/app-ng-runtime/scripts/tree-keyboard-navigation/keyboard-navigation.js"
|
106
|
+
]
|
107
|
+
},
|
108
|
+
"configurations": {
|
109
|
+
"production": {
|
110
|
+
"fileReplacements": [
|
111
|
+
{
|
112
|
+
"replace": "src/environments/environment.ts",
|
113
|
+
"with": "src/environments/environment.prod.ts"
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"optimization": {
|
117
|
+
"scripts": true,
|
118
|
+
"styles": {
|
119
|
+
"minify": true,
|
120
|
+
"inlineCritical": false
|
121
|
+
},
|
122
|
+
"fonts": true
|
123
|
+
},
|
124
|
+
"outputHashing": "all",
|
125
|
+
"sourceMap": false,
|
126
|
+
"namedChunks": false,
|
127
|
+
"aot": true,
|
128
|
+
"extractLicenses": true,
|
129
|
+
"vendorChunk": false,
|
130
|
+
"buildOptimizer": true,
|
131
|
+
"budgets": [
|
132
|
+
{
|
133
|
+
"type": "initial",
|
134
|
+
"maximumWarning": "2mb"
|
135
|
+
}
|
136
|
+
]
|
137
|
+
},
|
138
|
+
"development": {
|
139
|
+
"fileReplacements": [
|
140
|
+
{
|
141
|
+
"replace": "src/environments/environment.ts",
|
142
|
+
"with": "src/environments/environment.dev.ts"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"optimization": false,
|
146
|
+
"outputHashing": "none",
|
147
|
+
"sourceMap": true,
|
148
|
+
"namedChunks": true,
|
149
|
+
"aot": true,
|
150
|
+
"extractLicenses": false,
|
151
|
+
"vendorChunk": true,
|
152
|
+
"buildOptimizer": false,
|
153
|
+
"budgets": [
|
154
|
+
{
|
155
|
+
"type": "initial",
|
156
|
+
"maximumWarning": "2mb"
|
157
|
+
}
|
158
|
+
]
|
159
|
+
},
|
160
|
+
"local": {
|
161
|
+
"fileReplacements": [
|
162
|
+
{
|
163
|
+
"replace": "src/environments/environment.ts",
|
164
|
+
"with": "src/environments/environment.dev.ts"
|
165
|
+
}
|
166
|
+
],
|
167
|
+
"optimization": {
|
168
|
+
"scripts": false,
|
169
|
+
"styles": {
|
170
|
+
"minify": false,
|
171
|
+
"inlineCritical": false
|
172
|
+
},
|
173
|
+
"fonts": true
|
174
|
+
},
|
175
|
+
"outputHashing": "none",
|
176
|
+
"sourceMap": true,
|
177
|
+
"namedChunks": true,
|
178
|
+
"aot": true,
|
179
|
+
"extractLicenses": false,
|
180
|
+
"vendorChunk": false,
|
181
|
+
"buildOptimizer": true,
|
182
|
+
"budgets": [
|
183
|
+
{
|
184
|
+
"type": "initial",
|
185
|
+
"maximumWarning": "2mb"
|
186
|
+
}
|
187
|
+
]
|
188
|
+
}
|
189
|
+
},
|
190
|
+
"defaultConfiguration": "production"
|
191
|
+
},
|
192
|
+
"build-ng": {
|
193
|
+
"builder": "@angular-devkit/build-angular:browser",
|
194
|
+
"options": {
|
195
|
+
"outputPath": "dist",
|
196
|
+
"index": {
|
197
|
+
"input": "src/index.html",
|
198
|
+
"output": "../index.html"
|
199
|
+
},
|
200
|
+
"main": "src/main.ts",
|
201
|
+
"polyfills": "src/polyfills.ts",
|
202
|
+
"tsConfig": "src/tsconfig.app.json",
|
203
|
+
"assets": [
|
204
|
+
"src/favicon.ico",
|
205
|
+
"src/favicon.png",
|
206
|
+
"src/assets",
|
207
|
+
{
|
208
|
+
"glob": "print.css",
|
209
|
+
"input": "src/assets/",
|
210
|
+
"output": "."
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"glob": "**/*",
|
214
|
+
"input": "src/servicedefs",
|
215
|
+
"output": "/servicedefs/"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"glob": "**/*",
|
219
|
+
"input": "src/resources",
|
220
|
+
"output": "/resources/"
|
221
|
+
}
|
222
|
+
],
|
223
|
+
"styles": [
|
224
|
+
"src/styles.css",
|
225
|
+
"src/assets/styles/css/wm-style.css",
|
226
|
+
"src/assets/themes/material/style.css",
|
227
|
+
"src/assets/app.css"
|
228
|
+
],
|
229
|
+
"scripts": [
|
230
|
+
"./node_modules/x2js/x2js.js",
|
231
|
+
"./node_modules/d3/dist/d3.min.js",
|
232
|
+
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
233
|
+
"./node_modules/jquery/dist/jquery.min.js",
|
234
|
+
"./node_modules/jquery-ui/ui/disable-selection.js",
|
235
|
+
"./node_modules/jquery-ui/ui/version.js",
|
236
|
+
"./node_modules/jquery-ui/ui/widget.js",
|
237
|
+
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
238
|
+
"./node_modules/jquery-ui/ui/plugin.js",
|
239
|
+
"./node_modules/jquery-ui/ui/data.js",
|
240
|
+
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
241
|
+
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
242
|
+
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
243
|
+
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
244
|
+
"./libraries/scripts/datatable/datatable.js",
|
245
|
+
"./node_modules/moment/min/moment.min.js",
|
246
|
+
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
247
|
+
"./node_modules/fullcalendar/main.min.js",
|
248
|
+
"./node_modules/summernote/dist/summernote-lite.min.js",
|
249
|
+
"./node_modules/hammerjs/hammer.min.js",
|
250
|
+
"./node_modules/iscroll/build/iscroll.js",
|
251
|
+
"./node_modules/js-cookie/src/js.cookie.js",
|
252
|
+
"./node_modules/jssha/dist/sha256.js",
|
253
|
+
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
254
|
+
"./libraries/scripts/tree-keyboard-navigation/keyboard-navigation.js"
|
255
|
+
],
|
256
|
+
"aot": false,
|
257
|
+
"vendorChunk": true,
|
258
|
+
"extractLicenses": false,
|
259
|
+
"buildOptimizer": false,
|
260
|
+
"sourceMap": true,
|
261
|
+
"optimization": false,
|
262
|
+
"namedChunks": true
|
263
|
+
},
|
264
|
+
"configurations": {
|
265
|
+
"production": {
|
266
|
+
"browserTarget": "angular-app:build:production"
|
267
|
+
}
|
268
|
+
},
|
269
|
+
"defaultConfiguration": ""
|
270
|
+
},
|
271
|
+
"serve": {
|
272
|
+
"builder": "@angular-devkit/build-angular:dev-server",
|
273
|
+
"options": {
|
274
|
+
"buildTarget": "angular-app:build"
|
275
|
+
},
|
276
|
+
"configurations": {
|
277
|
+
"production": {
|
278
|
+
"buildTarget": "angular-app:build:production"
|
279
|
+
}
|
280
|
+
}
|
281
|
+
},
|
282
|
+
"extract-i18n": {
|
283
|
+
"builder": "@angular-devkit/build-angular:extract-i18n",
|
284
|
+
"options": {
|
285
|
+
"buildTarget": "angular-app:build"
|
286
|
+
}
|
287
|
+
},
|
288
|
+
"lint": {
|
289
|
+
"builder": "@angular-eslint/builder:lint",
|
290
|
+
"options": {
|
291
|
+
"lintFilePatterns": [
|
292
|
+
"src/**/*.ts",
|
293
|
+
"src/**/*.html"
|
294
|
+
]
|
295
|
+
}
|
119
296
|
}
|
120
|
-
],
|
121
|
-
"optimization": {
|
122
|
-
"scripts": true,
|
123
|
-
"styles": {
|
124
|
-
"minify": true,
|
125
|
-
"inlineCritical": false
|
126
|
-
},
|
127
|
-
"fonts": true
|
128
|
-
},
|
129
|
-
"outputHashing": "all",
|
130
|
-
"sourceMap": false,
|
131
|
-
"namedChunks": false,
|
132
|
-
"aot": true,
|
133
|
-
"extractLicenses": true,
|
134
|
-
"vendorChunk": false,
|
135
|
-
"buildOptimizer": true,
|
136
|
-
"budgets": [
|
137
|
-
{
|
138
|
-
"type": "initial",
|
139
|
-
"maximumWarning": "2mb"
|
140
|
-
}
|
141
|
-
]
|
142
|
-
},
|
143
|
-
"development": {
|
144
|
-
"fileReplacements": [
|
145
|
-
{
|
146
|
-
"replace": "src/environments/environment.ts",
|
147
|
-
"with": "src/environments/environment.dev.ts"
|
148
|
-
}
|
149
|
-
],
|
150
|
-
"optimization": false,
|
151
|
-
"outputHashing": "none",
|
152
|
-
"sourceMap": true,
|
153
|
-
"namedChunks": true,
|
154
|
-
"aot": true,
|
155
|
-
"extractLicenses": false,
|
156
|
-
"vendorChunk": true,
|
157
|
-
"buildOptimizer": false,
|
158
|
-
"budgets": [
|
159
|
-
{
|
160
|
-
"type": "initial",
|
161
|
-
"maximumWarning": "2mb"
|
162
|
-
}
|
163
|
-
]
|
164
|
-
},
|
165
|
-
"local": {
|
166
|
-
"fileReplacements": [
|
167
|
-
{
|
168
|
-
"replace": "src/environments/environment.ts",
|
169
|
-
"with": "src/environments/environment.dev.ts"
|
170
|
-
}
|
171
|
-
],
|
172
|
-
"optimization": {
|
173
|
-
"scripts": false,
|
174
|
-
"styles": {
|
175
|
-
"minify": false,
|
176
|
-
"inlineCritical": false
|
177
|
-
},
|
178
|
-
"fonts": true
|
179
|
-
},
|
180
|
-
"outputHashing": "none",
|
181
|
-
"sourceMap": true,
|
182
|
-
"namedChunks": true,
|
183
|
-
"aot": true,
|
184
|
-
"extractLicenses": false,
|
185
|
-
"vendorChunk": false,
|
186
|
-
"buildOptimizer": true,
|
187
|
-
"budgets": [
|
188
|
-
{
|
189
|
-
"type": "initial",
|
190
|
-
"maximumWarning": "2mb"
|
191
|
-
}
|
192
|
-
]
|
193
|
-
}
|
194
|
-
},
|
195
|
-
"defaultConfiguration": "production"
|
196
|
-
},
|
197
|
-
"build-ng": {
|
198
|
-
"builder": "@angular-devkit/build-angular:browser",
|
199
|
-
"options": {
|
200
|
-
"outputPath": "dist",
|
201
|
-
"index": {
|
202
|
-
"input": "src/index.html",
|
203
|
-
"output": "../index.html"
|
204
|
-
},
|
205
|
-
"main": "src/main.ts",
|
206
|
-
"polyfills": "src/polyfills.ts",
|
207
|
-
"tsConfig": "src/tsconfig.app.json",
|
208
|
-
"assets": [
|
209
|
-
"src/favicon.ico",
|
210
|
-
"src/favicon.png",
|
211
|
-
"src/assets",
|
212
|
-
{
|
213
|
-
"glob": "print.css",
|
214
|
-
"input": "src/assets/",
|
215
|
-
"output": "."
|
216
|
-
},
|
217
|
-
{
|
218
|
-
"glob": "**/*",
|
219
|
-
"input": "src/servicedefs",
|
220
|
-
"output": "/servicedefs/"
|
221
|
-
},
|
222
|
-
{
|
223
|
-
"glob": "**/*",
|
224
|
-
"input": "src/resources",
|
225
|
-
"output": "/resources/"
|
226
|
-
}
|
227
|
-
],
|
228
|
-
"styles": [
|
229
|
-
"src/styles.css",
|
230
|
-
"src/assets/styles/css/wm-style.css",
|
231
|
-
"src/assets/themes/material/style.css",
|
232
|
-
"src/assets/app.css"
|
233
|
-
],
|
234
|
-
"scripts": [
|
235
|
-
"./node_modules/x2js/x2js.js",
|
236
|
-
"./node_modules/d3/dist/d3.min.js",
|
237
|
-
"./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
|
238
|
-
"./node_modules/jquery/dist/jquery.min.js",
|
239
|
-
"./node_modules/jquery-ui/ui/disable-selection.js",
|
240
|
-
"./node_modules/jquery-ui/ui/version.js",
|
241
|
-
"./node_modules/jquery-ui/ui/widget.js",
|
242
|
-
"./node_modules/jquery-ui/ui/scroll-parent.js",
|
243
|
-
"./node_modules/jquery-ui/ui/plugin.js",
|
244
|
-
"./node_modules/jquery-ui/ui/data.js",
|
245
|
-
"./node_modules/jquery-ui/ui/widgets/mouse.js",
|
246
|
-
"./node_modules/jquery-ui/ui/widgets/resizable.js",
|
247
|
-
"./node_modules/jquery-ui/ui/widgets/sortable.js",
|
248
|
-
"./node_modules/jquery-ui/ui/widgets/droppable.js",
|
249
|
-
"./libraries/scripts/datatable/datatable.js",
|
250
|
-
"./node_modules/moment/min/moment.min.js",
|
251
|
-
"./node_modules/moment-timezone/builds/moment-timezone.min.js",
|
252
|
-
"./node_modules/fullcalendar/main.min.js",
|
253
|
-
"./node_modules/summernote/dist/summernote-lite.min.js",
|
254
|
-
"./node_modules/hammerjs/hammer.min.js",
|
255
|
-
"./node_modules/iscroll/build/iscroll.js",
|
256
|
-
"./node_modules/js-cookie/src/js.cookie.js",
|
257
|
-
"./node_modules/jssha/dist/sha256.js",
|
258
|
-
"./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
|
259
|
-
"./libraries/scripts/tree-keyboard-navigation/keyboard-navigation.js",
|
260
|
-
{
|
261
|
-
"input": "src/font.config.js",
|
262
|
-
"inject": false,
|
263
|
-
"bundleName": "font.config.js"
|
264
|
-
}
|
265
|
-
],
|
266
|
-
"aot": false,
|
267
|
-
"vendorChunk": true,
|
268
|
-
"extractLicenses": false,
|
269
|
-
"buildOptimizer": false,
|
270
|
-
"sourceMap": true,
|
271
|
-
"optimization": false,
|
272
|
-
"namedChunks": true
|
273
|
-
},
|
274
|
-
"configurations": {
|
275
|
-
"production": {
|
276
|
-
"browserTarget": "angular-app:build:production"
|
277
|
-
}
|
278
|
-
},
|
279
|
-
"defaultConfiguration": ""
|
280
|
-
},
|
281
|
-
"serve": {
|
282
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
283
|
-
"options": {
|
284
|
-
"buildTarget": "angular-app:build"
|
285
|
-
},
|
286
|
-
"configurations": {
|
287
|
-
"production": {
|
288
|
-
"buildTarget": "angular-app:build:production"
|
289
297
|
}
|
290
|
-
}
|
291
|
-
},
|
292
|
-
"extract-i18n": {
|
293
|
-
"builder": "@angular-devkit/build-angular:extract-i18n",
|
294
|
-
"options": {
|
295
|
-
"buildTarget": "angular-app:build"
|
296
|
-
}
|
297
|
-
},
|
298
|
-
"lint": {
|
299
|
-
"builder": "@angular-eslint/builder:lint",
|
300
|
-
"options": {
|
301
|
-
"lintFilePatterns": [
|
302
|
-
"src/**/*.ts",
|
303
|
-
"src/**/*.html"
|
304
|
-
]
|
305
|
-
}
|
306
298
|
}
|
307
|
-
|
299
|
+
},
|
300
|
+
"cli": {
|
301
|
+
"analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6",
|
302
|
+
"schematicCollections": [
|
303
|
+
"@angular-eslint/schematics"
|
304
|
+
]
|
308
305
|
}
|
309
|
-
|
310
|
-
"cli": {
|
311
|
-
"analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6",
|
312
|
-
"schematicCollections": [
|
313
|
-
"@angular-eslint/schematics"
|
314
|
-
]
|
315
|
-
}
|
316
|
-
}
|
306
|
+
}
|
@@ -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.12",
|
39
|
-
"@wavemaker/variables": "12.0.0-next.
|
39
|
+
"@wavemaker/variables": "12.0.0-next.1417177",
|
40
40
|
"@ztree/ztree_v3": "3.5.48",
|
41
41
|
"angular-imask": "^7.6.1",
|
42
42
|
"angular2-websocket": "0.9.7",
|
@@ -7577,9 +7577,9 @@
|
|
7577
7577
|
}
|
7578
7578
|
},
|
7579
7579
|
"node_modules/@wavemaker/variables": {
|
7580
|
-
"version": "12.0.0-next.
|
7581
|
-
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.
|
7582
|
-
"integrity": "sha512-
|
7580
|
+
"version": "12.0.0-next.1417177",
|
7581
|
+
"resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-12.0.0-next.1417177.tgz",
|
7582
|
+
"integrity": "sha512-AO6QLfXRYQTH80E8ayEHYlNjvio09vDyt86nyBxCVVSqdyJvkU56Nir0mW9qLlYVkJaMpRzrKmPWljJxyBf7hQ==",
|
7583
7583
|
"dependencies": {
|
7584
7584
|
"@metrichor/jmespath": "^0.3.1",
|
7585
7585
|
"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.12",
|
48
|
-
"@wavemaker/variables": "12.0.0-next.
|
48
|
+
"@wavemaker/variables": "12.0.0-next.1417177",
|
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": "12.0.0-next.
|
73
|
+
"@wavemaker/app-ng-runtime": "12.0.0-next.1417177"
|
74
74
|
},
|
75
75
|
"devDependencies": {
|
76
76
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|
@@ -41,9 +41,6 @@ let formatAcceptHeader = (languages: any) => {
|
|
41
41
|
WMAppProperties['preferredLanguage'] = formatAcceptHeader(navigator.languages);
|
42
42
|
WMAppProperties['fontConfig'] = fontConfig;
|
43
43
|
|
44
|
-
const formattedSupportedLanguages= WMAppProperties['supportedLanguages'].replace(/([a-zA-Z0-9_]+)\s*:/g, '"$1":').replace(/=/g, ':').replace(/([a-zA-Z0-9_]+)/g, '"$1"').replace(/"null"/g, 'null').replace(/"{/g, '{').replace(/}"/g, '}');
|
45
|
-
|
46
|
-
WMAppProperties['supportedLanguages'] = JSON.parse(formattedSupportedLanguages);
|
47
44
|
|
48
45
|
(window as any)._WM_APP_PROPERTIES = WMAppProperties
|
49
46
|
initWmProjectProperties();
|
@@ -30,85 +30,85 @@
|
|
30
30
|
"node_modules/rxjs-compat/_esm2015/Observable"
|
31
31
|
],
|
32
32
|
"@wm/build-task": [
|
33
|
-
"
|
33
|
+
"node_modules/@wavemaker/app-ng-runtime/build-task/"
|
34
34
|
],
|
35
35
|
"@wm/mobile-build-task": [
|
36
|
-
"
|
36
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile-build-task"
|
37
37
|
],
|
38
38
|
"@wm/core": [
|
39
|
-
"
|
39
|
+
"node_modules/@wavemaker/app-ng-runtime/core"
|
40
40
|
],
|
41
41
|
"@wavemaker/variables": [
|
42
42
|
"node_modules/@wavemaker/variables/"
|
43
43
|
],
|
44
44
|
"@wm/components/base": [
|
45
|
-
"
|
45
|
+
"node_modules/@wavemaker/app-ng-runtime/components/base"
|
46
46
|
],
|
47
47
|
"@wm/components/basic": [
|
48
|
-
"
|
48
|
+
"node_modules/@wavemaker/app-ng-runtime/components/basic/default"
|
49
49
|
],
|
50
50
|
"@wm/components/input": [
|
51
|
-
"
|
51
|
+
"node_modules/@wavemaker/app-ng-runtime/components/input/default"
|
52
52
|
],
|
53
53
|
"@wm/components/page": [
|
54
|
-
"
|
54
|
+
"node_modules/@wavemaker/app-ng-runtime/components/page/default"
|
55
55
|
],
|
56
56
|
"@wm/mobile/components/basic": [
|
57
|
-
"
|
57
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/components/basic/default"
|
58
58
|
],
|
59
59
|
"@wm/mobile/components/page": [
|
60
|
-
"
|
60
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/components/page/default"
|
61
61
|
],
|
62
62
|
"@wm/components/dialogs": [
|
63
|
-
"
|
63
|
+
"node_modules/@wavemaker/app-ng-runtime/components/dialogs/default"
|
64
64
|
],
|
65
65
|
"@wm/mobile/components/*": [
|
66
|
-
"
|
66
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/components/*"
|
67
67
|
],
|
68
68
|
"@wm/components/*": [
|
69
|
-
"
|
69
|
+
"node_modules/@wavemaker/app-ng-runtime/components/*"
|
70
70
|
],
|
71
71
|
"@wm/transpiler": [
|
72
|
-
"
|
72
|
+
"node_modules/@wavemaker/app-ng-runtime/transpiler"
|
73
73
|
],
|
74
74
|
"@wm/security": [
|
75
|
-
"
|
75
|
+
"node_modules/@wavemaker/app-ng-runtime/security"
|
76
76
|
],
|
77
77
|
"@swipey": [
|
78
|
-
"
|
78
|
+
"node_modules/@wavemaker/app-ng-runtime/swipey"
|
79
79
|
],
|
80
80
|
"@wm/http": [
|
81
|
-
"
|
81
|
+
"node_modules/@wavemaker/app-ng-runtime/http"
|
82
82
|
],
|
83
83
|
"@wm/oAuth": [
|
84
|
-
"
|
84
|
+
"node_modules/@wavemaker/app-ng-runtime/oAuth"
|
85
85
|
],
|
86
86
|
"@wm/variables": [
|
87
|
-
"
|
87
|
+
"node_modules/@wavemaker/app-ng-runtime/variables"
|
88
88
|
],
|
89
89
|
"@wm/mobile/core": [
|
90
|
-
"
|
90
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/core"
|
91
91
|
],
|
92
92
|
"@wm/mobile/components": [
|
93
|
-
"
|
93
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/components"
|
94
94
|
],
|
95
95
|
"@wm/mobile/offline": [
|
96
|
-
"
|
96
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/offline"
|
97
97
|
],
|
98
98
|
"@wm/mobile/variables": [
|
99
|
-
"
|
99
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/variables"
|
100
100
|
],
|
101
101
|
"@wm/runtime/base": [
|
102
|
-
"
|
102
|
+
"node_modules/@wavemaker/app-ng-runtime/runtime/base"
|
103
103
|
],
|
104
104
|
"@wm/runtime/dynamic": [
|
105
|
-
"
|
105
|
+
"node_modules/@wavemaker/app-ng-runtime/runtime/dynamic"
|
106
106
|
],
|
107
107
|
"@wm/mobile/runtime": [
|
108
|
-
"
|
108
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/runtime"
|
109
109
|
],
|
110
110
|
"@wm/mobile/runtime/dynamic": [
|
111
|
-
"
|
111
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/runtime-dynamic"
|
112
112
|
]
|
113
113
|
},
|
114
114
|
"useDefineForClassFields": false
|
@@ -118,4 +118,4 @@
|
|
118
118
|
"strictMetadataEmit": false,
|
119
119
|
"fullTemplateTypeCheck": false
|
120
120
|
}
|
121
|
-
}
|
121
|
+
}
|
@@ -29,74 +29,74 @@
|
|
29
29
|
"node_modules/rxjs-compat/_esm2015/Observable"
|
30
30
|
],
|
31
31
|
"@wm/build-task": [
|
32
|
-
"
|
32
|
+
"node_modules/@wavemaker/app-ng-runtime/build-task/"
|
33
33
|
],
|
34
34
|
"@wm/mobile-build-task": [
|
35
|
-
"
|
35
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile-build-task"
|
36
36
|
],
|
37
37
|
"@wm/core": [
|
38
|
-
"
|
38
|
+
"node_modules/@wavemaker/app-ng-runtime/core"
|
39
39
|
],
|
40
40
|
"@wm/components/basic": [
|
41
|
-
"
|
41
|
+
"node_modules/@wavemaker/app-ng-runtime/components/basic/default"
|
42
42
|
],
|
43
43
|
"@wm/components/input": [
|
44
|
-
"
|
44
|
+
"node_modules/@wavemaker/app-ng-runtime/components/input/default"
|
45
45
|
],
|
46
46
|
"@wm/components/page": [
|
47
|
-
"
|
47
|
+
"node_modules/@wavemaker/app-ng-runtime/components/page/default"
|
48
48
|
],
|
49
49
|
"@wm/components/dialogs": [
|
50
|
-
"
|
50
|
+
"node_modules/@wavemaker/app-ng-runtime/components/dialogs/default"
|
51
51
|
],
|
52
52
|
"@wm/components/*": [
|
53
|
-
"
|
53
|
+
"node_modules/@wavemaker/app-ng-runtime/components/*"
|
54
54
|
],
|
55
55
|
"@wm/transpiler": [
|
56
|
-
"
|
56
|
+
"node_modules/@wavemaker/app-ng-runtime/transpiler"
|
57
57
|
],
|
58
58
|
"@wm/security": [
|
59
|
-
"
|
59
|
+
"node_modules/@wavemaker/app-ng-runtime/security"
|
60
60
|
],
|
61
61
|
"@swipey": [
|
62
|
-
"
|
62
|
+
"node_modules/@wavemaker/app-ng-runtime/swipey"
|
63
63
|
],
|
64
64
|
"@wm/http": [
|
65
|
-
"
|
65
|
+
"node_modules/@wavemaker/app-ng-runtime/http"
|
66
66
|
],
|
67
67
|
"@wm/oAuth": [
|
68
|
-
"
|
68
|
+
"node_modules/@wavemaker/app-ng-runtime/oAuth"
|
69
69
|
],
|
70
70
|
"@wm/variables": [
|
71
|
-
"
|
71
|
+
"node_modules/@wavemaker/app-ng-runtime/variables"
|
72
72
|
],
|
73
73
|
"@wm/mobile/core": [
|
74
|
-
"
|
74
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/core"
|
75
75
|
],
|
76
76
|
"@wm/mobile/components": [
|
77
|
-
"
|
77
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/components"
|
78
78
|
],
|
79
79
|
"@wm/mobile/offline": [
|
80
|
-
"
|
80
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/offline"
|
81
81
|
],
|
82
82
|
"@wm/mobile/variables": [
|
83
|
-
"
|
83
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/variables"
|
84
84
|
],
|
85
85
|
"@wm/runtime/base": [
|
86
|
-
"
|
86
|
+
"node_modules/@wavemaker/app-ng-runtime/runtime/base"
|
87
87
|
],
|
88
88
|
"@wm/runtime/dynamic": [
|
89
|
-
"
|
89
|
+
"node_modules/@wavemaker/app-ng-runtime/runtime/dynamic"
|
90
90
|
],
|
91
91
|
"@wm/mobile/runtime": [
|
92
|
-
"
|
92
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/placeholder/runtime"
|
93
93
|
],
|
94
94
|
"@wm/mobile/runtime-dynamic": [
|
95
|
-
"
|
95
|
+
"node_modules/@wavemaker/app-ng-runtime/mobile/placeholder/runtime/dynamic"
|
96
96
|
]
|
97
97
|
}
|
98
98
|
},
|
99
|
-
"angularCompilerOptions":{
|
99
|
+
"angularCompilerOptions": {
|
100
100
|
"compilationMode": "full"
|
101
101
|
}
|
102
|
-
}
|
102
|
+
}
|