@c8y/hybrid 1023.97.8 → 1024.1.5

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,27 +1,28 @@
1
1
  {
2
2
  "name": "@c8y/hybrid",
3
- "version": "1023.97.8",
3
+ "version": "1024.1.5",
4
4
  "description": "",
5
5
  "dependencies": {
6
- "@angular/animations": "^20.3.24",
7
- "@angular/cdk": "^20.2.14",
8
- "@angular/upgrade": "^20.3.19",
9
- "@c8y/bootstrap": "1023.97.8",
10
- "@c8y/client": "1023.97.8",
11
- "@c8y/ng1-modules": "1023.97.8",
12
- "@c8y/ngx-components": "1023.97.8",
13
- "@c8y/style": "1023.97.8",
6
+ "@angular/animations": "^21.2.0",
7
+ "@angular/cdk": "^21.2.0",
8
+ "@angular/upgrade": "^21.2.0",
9
+ "@c8y/bootstrap": "1024.1.5",
10
+ "@c8y/client": "1024.1.5",
11
+ "@c8y/ng1-modules": "1024.1.5",
12
+ "@c8y/ngx-components": "1024.1.5",
13
+ "@c8y/style": "1024.1.5",
14
14
  "angular": "1.8.3",
15
15
  "monaco-editor": "~0.53.0",
16
- "ngx-bootstrap": "20.0.2",
17
- "rxjs": "7.8.2"
16
+ "ngx-bootstrap": "21.0.1",
17
+ "rxjs": "7.8.2",
18
+ "zone.js": "~0.15.1"
18
19
  },
19
20
  "devDependencies": {
20
- "@c8y/devkit": "1023.97.8",
21
- "@c8y/options": "1023.97.8"
21
+ "@c8y/devkit": "1024.1.5",
22
+ "@c8y/options": "1024.1.5"
22
23
  },
23
24
  "peerDependencies": {
24
- "@angular/common": ">=20 <21"
25
+ "@angular/common": ">=21 <22"
25
26
  },
26
27
  "author": "Cumulocity GmbH",
27
28
  "license": "Apache-2.0"
@@ -1,4 +1,4 @@
1
- import { NgModule } from '@angular/core';
1
+ import { NgModule, provideZoneChangeDetection } from '@angular/core';
2
2
  import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
3
3
  import { UpgradeModule as NgUpgradeModule } from '@angular/upgrade/static';
4
4
  import { CoreModule, RouterModule } from '@c8y/ngx-components';
@@ -11,7 +11,8 @@ import { HybridAppModule, UPGRADE_ROUTES, UpgradeModule } from '@c8y/ngx-compone
11
11
  RouterModule.forRoot([...UPGRADE_ROUTES]),
12
12
  CoreModule.forRoot(),
13
13
  NgUpgradeModule
14
- ]
14
+ ],
15
+ providers: [provideZoneChangeDetection()]
15
16
  })
16
17
  export class AppModule extends HybridAppModule {
17
18
  constructor(protected override upgrade: NgUpgradeModule) {
package/tsconfig.app.json CHANGED
@@ -14,6 +14,7 @@
14
14
  "../ngx-components/**/*.ts"
15
15
  ],
16
16
  "exclude": [
17
+ "src/**/*.spec.ts",
17
18
  "../ngx-components/dist",
18
19
  "../ngx-components/**/*.spec.ts",
19
20
  ]