@onecx/angular-accelerator 6.5.3 → 6.7.0
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/fesm2022/onecx-angular-accelerator.mjs +5 -6
- package/fesm2022/onecx-angular-accelerator.mjs.map +1 -1
- package/lib/angular-accelerator.module.d.ts +2 -3
- package/lib/utils/dynamic-locale-id.d.ts +3 -0
- package/migrations/index.d.ts +1 -0
- package/migrations/index.js +5 -0
- package/migrations/index.js.map +1 -0
- package/migrations/v6/migrate-onecx-to-v6.d.ts +2 -0
- package/migrations/v6/migrate-onecx-to-v6.js +8 -0
- package/migrations/v6/migrate-onecx-to-v6.js.map +1 -0
- package/package.json +8 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MultiLanguageMissingTranslationHandler } from '@onecx/angular-utils';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "./components/column-group-selection/column-group-selection.component";
|
|
4
4
|
import * as i2 from "./components/custom-group-column-selector/custom-group-column-selector.component";
|
|
@@ -40,8 +40,7 @@ import * as i37 from "@onecx/angular-remote-components";
|
|
|
40
40
|
import * as i38 from "@ngx-translate/core";
|
|
41
41
|
import * as i39 from "@angular/forms";
|
|
42
42
|
import * as i40 from "@angular/router";
|
|
43
|
-
export declare class AngularAcceleratorMissingTranslationHandler
|
|
44
|
-
handle(params: MissingTranslationHandlerParams): string;
|
|
43
|
+
export declare class AngularAcceleratorMissingTranslationHandler extends MultiLanguageMissingTranslationHandler {
|
|
45
44
|
}
|
|
46
45
|
export declare class AngularAcceleratorModule {
|
|
47
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<AngularAcceleratorModule, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './v6/migrate-onecx-to-v6';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/angular-accelerator/migrations/index.ts"],"names":[],"mappings":";;;AAAA,mEAAwC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = migrateOnecxToV6;
|
|
4
|
+
const nx_migration_utils_1 = require("@onecx/nx-migration-utils");
|
|
5
|
+
async function migrateOnecxToV6(tree) {
|
|
6
|
+
await (0, nx_migration_utils_1.commonMigrateOnecxToV6)(tree);
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=migrate-onecx-to-v6.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"migrate-onecx-to-v6.js","sourceRoot":"","sources":["../../../../../libs/angular-accelerator/migrations/v6/migrate-onecx-to-v6.ts"],"names":[],"mappings":";;AAGA,mCAEC;AAJD,kEAAkE;AAEnD,KAAK,UAAU,gBAAgB,CAAC,IAAU;IACvD,MAAM,IAAA,2CAAsB,EAAC,IAAI,CAAC,CAAA;AACpC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onecx/angular-accelerator",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.7.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^19.0.0",
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
"@ngx-translate/core": "^16.0.0",
|
|
13
13
|
"@ngx-translate/http-loader": "^8.0.0",
|
|
14
14
|
"@ngneat/until-destroy": "^10.0.0",
|
|
15
|
-
"@onecx/integration-interface": "^6.
|
|
16
|
-
"@onecx/accelerator": "^6.
|
|
17
|
-
"@onecx/angular-integration-interface": "^6.
|
|
18
|
-
"@onecx/angular-remote-components": "^6.
|
|
19
|
-
"@onecx/angular-testing": "^6.
|
|
20
|
-
"@onecx/angular-utils": "^6.
|
|
15
|
+
"@onecx/integration-interface": "^6.7.0",
|
|
16
|
+
"@onecx/accelerator": "^6.7.0",
|
|
17
|
+
"@onecx/angular-integration-interface": "^6.7.0",
|
|
18
|
+
"@onecx/angular-remote-components": "^6.7.0",
|
|
19
|
+
"@onecx/angular-testing": "^6.7.0",
|
|
20
|
+
"@onecx/angular-utils": "^6.7.0",
|
|
21
21
|
"chart.js": "^4.4.3",
|
|
22
22
|
"d3-scale-chromatic": "^3.1.0",
|
|
23
23
|
"rxjs": "~7.8.1",
|
|
24
24
|
"primeng": "^19.0.0",
|
|
25
25
|
"@storybook/angular": "^8.3.2",
|
|
26
26
|
"@nx/devkit": "^20.3.0",
|
|
27
|
-
"@onecx/nx-migration-utils": "^6.
|
|
27
|
+
"@onecx/nx-migration-utils": "^6.7.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"tslib": "^2.3.0"
|