@onecx/angular-accelerator 6.13.2 → 6.14.1

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.
@@ -10,16 +10,23 @@ export interface GroupByCountDiagramComponentState {
10
10
  }
11
11
  export declare class GroupByCountDiagramComponent implements OnInit {
12
12
  private translateService;
13
+ private _data$;
13
14
  sumKey: string;
14
15
  diagramType: DiagramType;
15
16
  /**
16
17
  * This property determines if diagram should generate the colors for the data that does not have any set.
17
18
  *
18
- * Setting this property to false will result in using the provided colors only if every data item has one. In the scenario where at least one item does not have a color set, diagram will generate all colors.
19
+ * Setting this property to false will result in using the provided colors only if every data item has one.
20
+ * In the scenario where at least one item does not have a color set, diagram will generate all colors.
19
21
  */
20
22
  fillMissingColors: boolean;
21
23
  supportedDiagramTypes: DiagramType[];
22
- private _data$;
24
+ private readonly _allLabelKeys$;
25
+ get allLabelKeys(): string[];
26
+ set allLabelKeys(value: string[]);
27
+ private readonly _showAllLabels$;
28
+ get showAllLabels(): boolean;
29
+ set showAllLabels(value: boolean);
23
30
  get data(): unknown[];
24
31
  set data(value: unknown[]);
25
32
  diagramData$: Observable<DiagramData[]> | undefined;
@@ -41,5 +48,5 @@ export declare class GroupByCountDiagramComponent implements OnInit {
41
48
  dataClicked(event: any): void;
42
49
  onDiagramTypeChanged(newDiagramType: DiagramType): void;
43
50
  static ɵfac: i0.ɵɵFactoryDeclaration<GroupByCountDiagramComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<GroupByCountDiagramComponent, "ocx-group-by-count-diagram", never, { "sumKey": { "alias": "sumKey"; "required": false; }; "diagramType": { "alias": "diagramType"; "required": false; }; "fillMissingColors": { "alias": "fillMissingColors"; "required": false; }; "supportedDiagramTypes": { "alias": "supportedDiagramTypes"; "required": false; }; "data": { "alias": "data"; "required": false; }; "columnType": { "alias": "columnType"; "required": false; }; "columnField": { "alias": "columnField"; "required": false; }; "column": { "alias": "column"; "required": false; }; "colors": { "alias": "colors"; "required": false; }; }, { "dataSelected": "dataSelected"; "diagramTypeChanged": "diagramTypeChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<GroupByCountDiagramComponent, "ocx-group-by-count-diagram", never, { "sumKey": { "alias": "sumKey"; "required": false; }; "diagramType": { "alias": "diagramType"; "required": false; }; "fillMissingColors": { "alias": "fillMissingColors"; "required": false; }; "supportedDiagramTypes": { "alias": "supportedDiagramTypes"; "required": false; }; "allLabelKeys": { "alias": "allLabelKeys"; "required": false; }; "showAllLabels": { "alias": "showAllLabels"; "required": false; }; "data": { "alias": "data"; "required": false; }; "columnType": { "alias": "columnType"; "required": false; }; "columnField": { "alias": "columnField"; "required": false; }; "column": { "alias": "column"; "required": false; }; "colors": { "alias": "colors"; "required": false; }; }, { "dataSelected": "dataSelected"; "diagramTypeChanged": "diagramTypeChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
45
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onecx/angular-accelerator",
3
- "version": "6.13.2",
3
+ "version": "6.14.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,19 +16,19 @@
16
16
  "@ngx-translate/core": "^16.0.0",
17
17
  "@ngx-translate/http-loader": "^8.0.0",
18
18
  "@ngneat/until-destroy": "^10.0.0",
19
- "@onecx/integration-interface": "^6.13.2",
20
- "@onecx/accelerator": "^6.13.2",
21
- "@onecx/angular-integration-interface": "^6.13.2",
22
- "@onecx/angular-remote-components": "^6.13.2",
23
- "@onecx/angular-testing": "^6.13.2",
24
- "@onecx/angular-utils": "^6.13.2",
19
+ "@onecx/integration-interface": "^6.14.1",
20
+ "@onecx/accelerator": "^6.14.1",
21
+ "@onecx/angular-integration-interface": "^6.14.1",
22
+ "@onecx/angular-remote-components": "^6.14.1",
23
+ "@onecx/angular-testing": "^6.14.1",
24
+ "@onecx/angular-utils": "^6.14.1",
25
25
  "chart.js": "^4.4.3",
26
26
  "d3-scale-chromatic": "^3.1.0",
27
27
  "rxjs": "~7.8.1",
28
28
  "primeng": "^19.0.0",
29
29
  "@storybook/angular": "^8.3.2",
30
30
  "@nx/devkit": "^20.3.0",
31
- "@onecx/nx-migration-utils": "^6.13.2",
31
+ "@onecx/nx-migration-utils": "^6.14.1",
32
32
  "@primeng/themes": "^19.0.0"
33
33
  },
34
34
  "dependencies": {
@@ -6,5 +6,7 @@ export declare class DiagramHarness extends ComponentHarness {
6
6
  getTotalNumberOfResults(): Promise<number | undefined>;
7
7
  getSumLabel(): Promise<string | undefined>;
8
8
  getDiagramTypeSelectButton(): Promise<import("@onecx/angular-testing").TestElement | null>;
9
+ getCanvasElement(): Promise<import("@onecx/angular-testing").TestElement | null>;
9
10
  getAllSelectionButtons(): Promise<import("@onecx/angular-testing").TestElement[]>;
11
+ getCanvasAriaLabel(): Promise<string | null>;
10
12
  }