@c8y/cockpit 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,28 +1,30 @@
1
1
  {
2
2
  "name": "@c8y/cockpit",
3
- "version": "1023.97.8",
3
+ "version": "1024.1.5",
4
4
  "description": "This package is used to scaffold a cockpit application for Cumulocity IoT.",
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/html-repo": "1023.97.8",
12
- "@c8y/ng1-modules": "1023.97.8",
13
- "@c8y/ngx-components": "1023.97.8",
14
- "@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/html-repo": "1024.1.5",
12
+ "@c8y/ng1-modules": "1024.1.5",
13
+ "@c8y/ngx-components": "1024.1.5",
14
+ "@c8y/style": "1024.1.5",
15
15
  "angular": "1.8.3",
16
+ "gridstack": "^12.4.2",
16
17
  "monaco-editor": "~0.53.0",
17
- "ngx-bootstrap": "20.0.2",
18
- "rxjs": "7.8.2"
18
+ "ngx-bootstrap": "21.0.1",
19
+ "rxjs": "7.8.2",
20
+ "zone.js": "~0.15.1"
19
21
  },
20
22
  "devDependencies": {
21
- "@c8y/devkit": "1023.97.8",
22
- "@c8y/options": "1023.97.8"
23
+ "@c8y/devkit": "1024.1.5",
24
+ "@c8y/options": "1024.1.5"
23
25
  },
24
26
  "peerDependencies": {
25
- "@angular/common": ">=20 <21"
27
+ "@angular/common": ">=21 <22"
26
28
  },
27
29
  "author": "Cumulocity GmbH",
28
30
  "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';
@@ -32,7 +32,7 @@ import { GlobalContextModule } from '@c8y/ngx-components/global-context';
32
32
  PendingMoRequestModule,
33
33
  GlobalContextModule
34
34
  ],
35
- providers: [provideMapConfig()]
35
+ providers: [provideZoneChangeDetection(), provideMapConfig()]
36
36
  })
37
37
  export class AppModule extends HybridAppModule {
38
38
  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
  ]