@onecx/angular-accelerator 9.0.0-rc.6 → 9.0.0-rc.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@onecx/angular-accelerator",
3
- "version": "9.0.0-rc.6",
3
+ "version": "9.0.0-rc.7",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,12 +15,12 @@
15
15
  "@angular/router": "^21.0.0",
16
16
  "@ngx-translate/core": "^17.0.0",
17
17
  "@ngneat/until-destroy": "^10.0.0",
18
- "@onecx/integration-interface": "^9.0.0-rc.6",
19
- "@onecx/accelerator": "^9.0.0-rc.6",
20
- "@onecx/angular-integration-interface": "^9.0.0-rc.6",
21
- "@onecx/angular-remote-components": "^9.0.0-rc.6",
22
- "@onecx/angular-testing": "^9.0.0-rc.6",
23
- "@onecx/angular-utils": "^9.0.0-rc.6",
18
+ "@onecx/integration-interface": "^9.0.0-rc.7",
19
+ "@onecx/accelerator": "^9.0.0-rc.7",
20
+ "@onecx/angular-integration-interface": "^9.0.0-rc.7",
21
+ "@onecx/angular-remote-components": "^9.0.0-rc.7",
22
+ "@onecx/angular-testing": "^9.0.0-rc.7",
23
+ "@onecx/angular-utils": "^9.0.0-rc.7",
24
24
  "chart.js": "^4.4.3",
25
25
  "d3-scale-chromatic": "^3.1.0",
26
26
  "fast-deep-equal": "^3.1.3",
@@ -23,6 +23,7 @@ import * as i17 from 'primeng/popover';
23
23
  import { Popover } from 'primeng/popover';
24
24
  import * as i5 from 'primeng/button';
25
25
  import { Button } from 'primeng/button';
26
+ import { LiveAnnouncer } from '@angular/cdk/a11y';
26
27
  import * as i41 from '@angular/router';
27
28
  import { QueryParamsHandling, Router } from '@angular/router';
28
29
  import * as i40 from '@angular/forms';
@@ -1185,6 +1186,8 @@ interface FilterViewComponentState {
1185
1186
  filters?: Filter$1[];
1186
1187
  }
1187
1188
  declare class FilterViewComponent {
1189
+ readonly translateService: TranslateService;
1190
+ readonly liveAnnouncer: LiveAnnouncer;
1188
1191
  ColumnType: typeof ColumnType;
1189
1192
  FilterType: typeof FilterType;
1190
1193
  readonly stateService: DataViewStateService;
@@ -1233,6 +1236,7 @@ declare class FilterViewComponent {
1233
1236
  resolveFieldData(object: any, key: any): any;
1234
1237
  getRowObjectFromFiterData(filter: Filter$1): Record<string, unknown>;
1235
1238
  getRowForValueColumn(row: Row): Row;
1239
+ private annouceFilterCount;
1236
1240
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterViewComponent, never>;
1237
1241
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterViewComponent, "ocx-filter-view", never, { "filters": { "alias": "filters"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "selectDisplayedChips": { "alias": "selectDisplayedChips"; "required": false; "isSignal": true; }; "chipStyleClass": { "alias": "chipStyleClass"; "required": false; "isSignal": true; }; "tableStyle": { "alias": "tableStyle"; "required": false; "isSignal": true; }; "panelStyle": { "alias": "panelStyle"; "required": false; "isSignal": true; }; "templates": { "alias": "templates"; "required": false; "isSignal": true; }; }, { "filtered": "filtered"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
1238
1242
  }
@@ -2019,6 +2023,7 @@ type DialogState<T> = {
2019
2023
  };
2020
2024
  type PortalDialogConfig = {
2021
2025
  showXButton?: boolean;
2026
+ closable?: boolean;
2022
2027
  customButtons?: ButtonDialogCustomButtonDetails[];
2023
2028
  autoFocusButton?: DialogButton;
2024
2029
  autoFocusButtonCustomId?: string;
@@ -2043,6 +2048,7 @@ type PortalDialogConfig = {
2043
2048
  minimizeIcon?: string;
2044
2049
  position?: string;
2045
2050
  closeAriaLabel?: string;
2051
+ initiatorRef?: HTMLElement;
2046
2052
  };
2047
2053
  interface PortalDialogServiceData {
2048
2054
  primaryButtonEnabled$: Subject<boolean>;
@@ -2221,6 +2227,8 @@ declare class PortalDialogService implements OnDestroy {
2221
2227
  private isString;
2222
2228
  private isDialogMessage;
2223
2229
  private isType;
2230
+ private setFocusOnInitiator;
2231
+ private getShowXStatus;
2224
2232
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PortalDialogService, never>;
2225
2233
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<PortalDialogService>;
2226
2234
  }
@@ -2264,6 +2272,7 @@ interface ButtonDialogConfig {
2264
2272
  customButtons?: ButtonDialogCustomButtonDetails[];
2265
2273
  autoFocusButton?: DialogButton;
2266
2274
  autoFocusButtonCustomId?: string;
2275
+ initiatorRef?: HTMLElement;
2267
2276
  }
2268
2277
  interface ButtonDialogData {
2269
2278
  config: ButtonDialogConfig;