@c8y/cockpit 1022.46.1 → 1023.0.2

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,27 @@
1
1
  {
2
2
  "name": "@c8y/cockpit",
3
- "version": "1022.46.1",
3
+ "version": "1023.0.2",
4
4
  "description": "This package is used to scaffold a cockpit application for Cumulocity IoT.",
5
5
  "dependencies": {
6
- "@c8y/style": "1022.46.1",
7
- "@c8y/ng1-modules": "1022.46.1",
8
- "@c8y/ngx-components": "1022.46.1",
9
- "@c8y/client": "1022.46.1",
10
- "@c8y/bootstrap": "1022.46.1",
11
- "@c8y/html-repo": "1022.46.1",
12
- "@angular/cdk": "^19.2.19",
13
- "@angular/upgrade": "^19.2.15",
6
+ "@c8y/style": "1023.0.2",
7
+ "@c8y/ng1-modules": "1023.0.2",
8
+ "@c8y/ngx-components": "1023.0.2",
9
+ "@c8y/client": "1023.0.2",
10
+ "@c8y/bootstrap": "1023.0.2",
11
+ "@c8y/html-repo": "1023.0.2",
12
+ "@angular/cdk": "^20.2.7",
13
+ "@angular/upgrade": "^20.3.3",
14
14
  "angular": "1.8.3",
15
15
  "monaco-editor": "~0.53.0",
16
- "ngx-bootstrap": "19.0.2",
17
- "rxjs": "7.8.1"
16
+ "ngx-bootstrap": "20.0.2",
17
+ "rxjs": "7.8.2"
18
18
  },
19
19
  "devDependencies": {
20
- "@c8y/options": "1022.46.1",
21
- "@c8y/devkit": "1022.46.1"
20
+ "@c8y/options": "1023.0.2",
21
+ "@c8y/devkit": "1023.0.2"
22
22
  },
23
23
  "peerDependencies": {
24
- "@angular/common": ">=19 <20"
24
+ "@angular/common": ">=20 <21"
25
25
  },
26
26
  "author": "Cumulocity GmbH",
27
27
  "license": "Apache-2.0"
@@ -14,6 +14,7 @@ import { BinaryFileDownloadModule } from '@c8y/ngx-components/binary-file-downlo
14
14
  import { CockpitConfigModule } from '@c8y/ngx-components/cockpit-config';
15
15
  import { PluginSetupStepperModule } from '@c8y/ngx-components/ecosystem/plugin-setup-stepper';
16
16
  import { PendingMoRequestModule } from '@c8y/ngx-components/pending-mo-request';
17
+ import { GlobalContextModule } from '@c8y/ngx-components/global-context';
17
18
 
18
19
  @NgModule({
19
20
  imports: [
@@ -29,7 +30,8 @@ import { PendingMoRequestModule } from '@c8y/ngx-components/pending-mo-request';
29
30
  SubAssetsModule.config(),
30
31
  CockpitConfigModule,
31
32
  PluginSetupStepperModule,
32
- PendingMoRequestModule
33
+ PendingMoRequestModule,
34
+ GlobalContextModule
33
35
  ]
34
36
  })
35
37
  export class AppModule extends HybridAppModule {