@onecx/angular-accelerator 6.0.0-rc.17 → 6.0.0-rc.19
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 +36 -316
- package/fesm2022/onecx-angular-accelerator.mjs.map +1 -1
- package/lib/components/data-list-grid/data-list-grid.component.d.ts +1 -18
- package/lib/components/data-table/data-table.component.d.ts +4 -34
- package/lib/components/data-view/data-view.component.d.ts +2 -72
- package/lib/components/group-by-count-diagram/group-by-count-diagram.component.d.ts +1 -6
- package/lib/components/interactive-data-view/interactive-data-view.component.d.ts +4 -79
- package/lib/components/page-header/page-header.component.d.ts +0 -4
- package/lib/components/search-header/search-header.component.d.ts +1 -6
- package/lib/model/breadcrumb-menu-item.model.d.ts +0 -4
- package/lib/model/column-type.model.d.ts +1 -8
- package/lib/services/portal-dialog.service.d.ts +1 -9
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, Type } from '@angular/core';
|
|
2
|
-
import { DialogService
|
|
2
|
+
import { DialogService } from 'primeng/dynamicdialog';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { ButtonDialogButtonDetails, ButtonDialogCustomButtonDetails } from '../model/button-dialog';
|
|
5
5
|
import { PrimeIcon } from '../utils/primeicon.utils';
|
|
@@ -266,10 +266,6 @@ export declare class PortalDialogService implements OnDestroy {
|
|
|
266
266
|
private capabilityService;
|
|
267
267
|
constructor();
|
|
268
268
|
ngOnDestroy(): void;
|
|
269
|
-
/**
|
|
270
|
-
* @deprecated
|
|
271
|
-
*/
|
|
272
|
-
open(componentType: Type<any>, config: DynamicDialogConfig): DynamicDialogRef;
|
|
273
269
|
/**
|
|
274
270
|
* Opens dialog with a component or message to display and one or two buttons. This method allows you to customize the dialog using parameters and by implementic specific interfaces via component to be displayed. The dialog is only shown if if you subscribe to this function.
|
|
275
271
|
*
|
|
@@ -412,10 +408,6 @@ export declare class PortalDialogService implements OnDestroy {
|
|
|
412
408
|
* ```
|
|
413
409
|
*/
|
|
414
410
|
openDialog<T>(title: TranslationKey | null, componentOrMessage: Type<any> | Type<DialogResult<T>> | Component<T> | TranslationKey | DialogMessage, primaryButtonTranslationKeyOrDetails: TranslationKey | ButtonDialogButtonDetails, secondaryButtonTranslationKeyOrDetails?: TranslationKey | ButtonDialogButtonDetails, extras?: PortalDialogConfig): Observable<DialogState<T>>;
|
|
415
|
-
/**
|
|
416
|
-
* @deprecated Use `extras` instead of `showXButton`
|
|
417
|
-
*/
|
|
418
|
-
openDialog<T>(title: TranslationKey | null, componentOrMessage: Type<any> | Type<DialogResult<T>> | Component<T> | TranslationKey | DialogMessage, primaryButtonTranslationKeyOrDetails: TranslationKey | ButtonDialogButtonDetails, secondaryButtonTranslationKeyOrDetails?: TranslationKey | ButtonDialogButtonDetails, showXButton?: boolean): Observable<DialogState<T>>;
|
|
419
411
|
private cleanupAndCloseDialog;
|
|
420
412
|
private removeDialogFromHtml;
|
|
421
413
|
private setScopeIdentifier;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onecx/angular-accelerator",
|
|
3
|
-
"version": "6.0.0-rc.
|
|
3
|
+
"version": "6.0.0-rc.19",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^19.0.0",
|
|
@@ -12,13 +12,13 @@
|
|
|
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.0.0-rc.
|
|
16
|
-
"@onecx/angular-integration-interface": "^6.0.0-rc.
|
|
17
|
-
"@onecx/angular-remote-components": "^6.0.0-rc.
|
|
18
|
-
"@onecx/angular-testing": "^6.0.0-rc.
|
|
19
|
-
"@onecx/accelerator": "^6.0.0-rc.
|
|
20
|
-
"@onecx/angular-utils": "^6.0.0-rc.
|
|
21
|
-
"@onecx/nx-migration-utils": "^6.0.0-rc.
|
|
15
|
+
"@onecx/integration-interface": "^6.0.0-rc.19",
|
|
16
|
+
"@onecx/angular-integration-interface": "^6.0.0-rc.19",
|
|
17
|
+
"@onecx/angular-remote-components": "^6.0.0-rc.19",
|
|
18
|
+
"@onecx/angular-testing": "^6.0.0-rc.19",
|
|
19
|
+
"@onecx/accelerator": "^6.0.0-rc.19",
|
|
20
|
+
"@onecx/angular-utils": "^6.0.0-rc.19",
|
|
21
|
+
"@onecx/nx-migration-utils": "^6.0.0-rc.19",
|
|
22
22
|
"chart.js": "^4.4.3",
|
|
23
23
|
"d3-scale-chromatic": "^3.1.0",
|
|
24
24
|
"rxjs": "~7.8.1",
|