@wavemaker/angular-app 12.0.0-next.25185 → 12.0.0-next.47810

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": "12.0.0-next.25185",
3
+ "version": "12.0.0-next.47810",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "./node_modules/.bin/ng serve",
@@ -37,11 +37,11 @@
37
37
  "@fullcalendar/list": "6.1.15",
38
38
  "@fullcalendar/timegrid": "6.1.15",
39
39
  "@metrichor/jmespath": "0.3.1",
40
- "@wavemaker/custom-widgets-m3": "12.0.0-next.25185",
40
+ "@wavemaker/custom-widgets-m3": "12.0.0-next.47810",
41
41
  "@wavemaker/focus-trap": "1.0.1",
42
- "@wavemaker/foundation-css": "12.0.0-next.25185",
43
- "@wavemaker/nvd3": "1.8.12",
44
- "@wavemaker/variables": "12.0.0-next.25185",
42
+ "@wavemaker/foundation-css": "12.0.0-next.47810",
43
+ "@wavemaker/nvd3": "1.8.13",
44
+ "@wavemaker/variables": "12.0.0-next.47810",
45
45
  "@ztree/ztree_v3": "3.5.48",
46
46
  "angular-imask": "^7.6.1",
47
47
  "angular2-websocket": "0.9.7",
@@ -67,7 +67,7 @@
67
67
  "tslib": "2.4.1",
68
68
  "x2js": "3.4.4",
69
69
  "zone.js": "0.14.10",
70
- "@wavemaker/app-ng-runtime": "12.0.0-next.25185"
70
+ "@wavemaker/app-ng-runtime": "12.0.0-next.47810"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -135,5 +135,10 @@
135
135
  "node": "~22.11.0",
136
136
  "npm": "~10.9.0"
137
137
  },
138
+ "overrides": {
139
+ "ng-packagr": {
140
+ "@rollup/wasm-node": "4.40.2"
141
+ }
142
+ },
138
143
  "engineStrict": true
139
144
  }
package/src/index.html CHANGED
@@ -11,8 +11,7 @@
11
11
  <link rel="icon" type="image/x-icon" href="favicon.ico">
12
12
 
13
13
  </head>
14
- <body class="wm-app">
15
- <bootstrap-wrapper></bootstrap-wrapper>
14
+ <body class="wm-app">
16
15
  <app-root></app-root>
17
16
  </body>
18
17
  </html>
package/src/main.ts CHANGED
@@ -6,7 +6,6 @@ import { WMAppProperties } from './app/wmProperties';
6
6
  import * as fontConfig from './font.config';
7
7
  import { appConfig } from './app/app.config';
8
8
  import { AppComponent } from '@wm/runtime/base';
9
- import { BootstrapWrapperComponent } from './app/bootstrap-wrapper.component';
10
9
 
11
10
  // Format Accept-Language header
12
11
  const formatAcceptHeader = (languages: string[]): string => {
@@ -51,10 +50,9 @@ if (environment.production) {
51
50
 
52
51
  document.addEventListener('DOMContentLoaded', () => {
53
52
  new Promise<Event | void>(resolve => {
54
- resolve();
53
+ resolve();
55
54
  }).then(() => bootstrapApplication(AppComponent, appConfig))
56
55
  .then((appRef: ApplicationRef) => {
57
- appRef.bootstrap(BootstrapWrapperComponent);
58
56
  window.addEventListener('unload', () => {
59
57
  appRef.components.map(c => c?.destroy());
60
58
  });
@@ -1,10 +0,0 @@
1
- import { Component } from "@angular/core";
2
- import { CommonModule } from "@angular/common";
3
-
4
- @Component({
5
- standalone: true,
6
- template: `<ng-content></ng-content>`,
7
- imports: [CommonModule],
8
- selector: 'bootstrap-wrapper',
9
- })
10
- export class BootstrapWrapperComponent { }