@onecx/angular-accelerator 6.0.0-rc.16 → 6.0.0-rc.18

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.
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnDestroy, Type } from '@angular/core';
2
- import { DialogService, DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
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.16",
3
+ "version": "6.0.0-rc.18",
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",
16
- "@onecx/angular-integration-interface": "^6.0.0-rc.16",
17
- "@onecx/angular-remote-components": "^6.0.0-rc.16",
18
- "@onecx/angular-testing": "^6.0.0-rc.16",
19
- "@onecx/accelerator": "^6.0.0-rc.16",
20
- "@onecx/angular-utils": "^6.0.0-rc.16",
21
- "@onecx/nx-migration-utils": "^6.0.0-rc.16",
15
+ "@onecx/integration-interface": "^6.0.0-rc.18",
16
+ "@onecx/angular-integration-interface": "^6.0.0-rc.18",
17
+ "@onecx/angular-remote-components": "^6.0.0-rc.18",
18
+ "@onecx/angular-testing": "^6.0.0-rc.18",
19
+ "@onecx/accelerator": "^6.0.0-rc.18",
20
+ "@onecx/angular-utils": "^6.0.0-rc.18",
21
+ "@onecx/nx-migration-utils": "^6.0.0-rc.18",
22
22
  "chart.js": "^4.4.3",
23
23
  "d3-scale-chromatic": "^3.1.0",
24
24
  "rxjs": "~7.8.1",
@@ -1,6 +1,6 @@
1
1
  import { ContentContainerComponentHarness } from '@angular/cdk/testing';
2
2
  import { DataTableHarness } from './data-table.harness';
3
- import { PButtonHarness, PChipHarness, SpanHarness } from '.';
3
+ import { PButtonHarness, PChipHarness, SpanHarness } from '@onecx/angular-testing';
4
4
  export declare class FilterViewHarness extends ContentContainerComponentHarness {
5
5
  static hostSelector: string;
6
6
  getOverlayResetFiltersButton: () => Promise<PButtonHarness | null>;
@@ -1,10 +1,10 @@
1
1
  import { ContentContainerComponentHarness } from '@angular/cdk/testing';
2
2
  import { PButtonHarness } from '@onecx/angular-testing';
3
3
  import { PSelectHarness } from '@onecx/angular-testing';
4
- import { CustomGroupColumnSelectorHarness } from '.';
5
4
  import { DataLayoutSelectionHarness } from './data-layout-selection.harness';
6
5
  import { DataViewHarness } from './data-view.harness';
7
6
  import { SlotHarness } from './slot.harness';
7
+ import { CustomGroupColumnSelectorHarness } from './custom-group-column-selector.harness';
8
8
  export declare class InteractiveDataViewHarness extends ContentContainerComponentHarness {
9
9
  static hostSelector: string;
10
10
  getHeaderStyleClasses(): Promise<string[]>;