@wavemaker/angular-app 11.14.3-rc.6401 → 11.15.0-2.247

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.3-rc.6401",
3
+ "version": "11.15.0-2.247",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "./node_modules/.bin/ng serve",
@@ -36,11 +36,11 @@
36
36
  "@fullcalendar/list": "6.1.18",
37
37
  "@fullcalendar/timegrid": "6.1.18",
38
38
  "@metrichor/jmespath": "0.3.1",
39
- "@wavemaker/custom-widgets-m3": "11.14.3-rc.6401",
39
+ "@wavemaker/custom-widgets-m3": "11.15.0-2.247",
40
40
  "@wavemaker/focus-trap": "1.0.1",
41
- "@wavemaker/foundation-css": "11.14.3-rc.6401",
41
+ "@wavemaker/foundation-css": "11.15.0-2.247",
42
42
  "@wavemaker/nvd3": "1.8.16",
43
- "@wavemaker/variables": "11.14.3-rc.6401",
43
+ "@wavemaker/variables": "11.15.0-2.247",
44
44
  "@ztree/ztree_v3": "3.5.48",
45
45
  "acorn": "^8.15.0",
46
46
  "angular-imask": "7.6.1",
@@ -62,7 +62,7 @@
62
62
  "tslib": "2.8.1",
63
63
  "x2js": "3.4.4",
64
64
  "zone.js": "0.15.1",
65
- "@wavemaker/app-ng-runtime": "11.14.3-rc.6401"
65
+ "@wavemaker/app-ng-runtime": "11.15.0-2.247"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -120,5 +120,10 @@
120
120
  "node": "22.18.0",
121
121
  "npm": "10.9.3"
122
122
  },
123
+ "overrides": {
124
+ "ng-packagr": {
125
+ "@rollup/wasm-node": "4.40.2"
126
+ }
127
+ },
123
128
  "engineStrict": true
124
129
  }
@@ -8,7 +8,10 @@
8
8
  "allowJs": true
9
9
  },
10
10
  "exclude": [
11
- "test.ts",
12
- "**/*.spec.ts"
11
+ "**/*.spec.ts",
12
+ "app/extensions/formatters.js",
13
+ "environments/environment.*.ts",
14
+ "setup-jest.js",
15
+ "test.ts"
13
16
  ]
14
17
  }
@@ -1,11 +0,0 @@
1
-
2
- // this file will be generated from the wavemaker application sources
3
-
4
- import { NgModule } from '@angular/core';
5
-
6
- @NgModule({})
7
- export class AppCodeGenModule {
8
-
9
- }
10
-
11
- export const xsrfHeaderName = 'X-WM-XSRF-TOKEN';
@@ -1,36 +0,0 @@
1
- const win = window as any;
2
-
3
- win.Application = win.angular = {};
4
-
5
- const deprecatedAngularJSFeature = (feature) => {
6
- return () => {
7
- console.warn(`DEPRECATED AngularJS 1.x feature: ${feature}`);
8
- return win.angular;
9
- };
10
- };
11
-
12
- [
13
- 'module',
14
- 'controller',
15
- 'directive',
16
- 'run',
17
- 'config',
18
- 'service',
19
- 'factory',
20
- 'constant',
21
- 'value',
22
- 'animation',
23
- 'component',
24
- 'decorator',
25
- 'filter',
26
- 'info',
27
- 'provider',
28
- 'requires',
29
- '$watch'
30
- ].forEach(feature => {
31
- win.angular[feature] = deprecatedAngularJSFeature(feature);
32
- });
33
-
34
-
35
-
36
- export const patchAngular1Deprecations = () => {};