@onecx/angular-accelerator 6.16.0 → 6.16.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.
@@ -17,7 +17,7 @@ export interface DiagramComponentState {
17
17
  activeDiagramType?: DiagramType;
18
18
  }
19
19
  export declare class DiagramComponent implements OnInit, OnChanges {
20
- private translateService;
20
+ private readonly translateService;
21
21
  data: DiagramData[] | undefined;
22
22
  sumKey: string;
23
23
  /**
@@ -26,6 +26,7 @@ export declare class DiagramComponent implements OnInit, OnChanges {
26
26
  * 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.
27
27
  */
28
28
  fillMissingColors: boolean;
29
+ fullHeight: boolean;
29
30
  private _diagramType;
30
31
  selectedDiagramType: DiagramLayouts | undefined;
31
32
  chartType: 'bar' | 'line' | 'scatter' | 'bubble' | 'pie' | 'doughnut' | 'polarArea' | 'radar';
@@ -37,6 +38,7 @@ export declare class DiagramComponent implements OnInit, OnChanges {
37
38
  dataSelected: EventEmitter<any>;
38
39
  diagramTypeChanged: EventEmitter<DiagramType>;
39
40
  componentStateChanged: EventEmitter<DiagramComponentState>;
41
+ get useFullHeight(): boolean;
40
42
  chartOptions: ChartOptions | undefined;
41
43
  chartData: ChartData | undefined;
42
44
  amountOfData: number | undefined | null;
@@ -53,5 +55,5 @@ export declare class DiagramComponent implements OnInit, OnChanges {
53
55
  dataClicked(event: []): void;
54
56
  onDiagramTypeChanged(event: any): void;
55
57
  static ɵfac: i0.ɵɵFactoryDeclaration<DiagramComponent, never>;
56
- static ɵcmp: i0.ɵɵComponentDeclaration<DiagramComponent, "ocx-diagram", never, { "data": { "alias": "data"; "required": false; }; "sumKey": { "alias": "sumKey"; "required": false; }; "fillMissingColors": { "alias": "fillMissingColors"; "required": false; }; "diagramType": { "alias": "diagramType"; "required": false; }; "supportedDiagramTypes": { "alias": "supportedDiagramTypes"; "required": false; }; }, { "dataSelected": "dataSelected"; "diagramTypeChanged": "diagramTypeChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<DiagramComponent, "ocx-diagram", never, { "data": { "alias": "data"; "required": false; }; "sumKey": { "alias": "sumKey"; "required": false; }; "fillMissingColors": { "alias": "fillMissingColors"; "required": false; }; "fullHeight": { "alias": "fullHeight"; "required": false; }; "diagramType": { "alias": "diagramType"; "required": false; }; "supportedDiagramTypes": { "alias": "supportedDiagramTypes"; "required": false; }; }, { "dataSelected": "dataSelected"; "diagramTypeChanged": "diagramTypeChanged"; "componentStateChanged": "componentStateChanged"; }, never, never, false, never>;
57
59
  }
@@ -10,9 +10,10 @@ export interface GroupByCountDiagramComponentState {
10
10
  }
11
11
  export declare class GroupByCountDiagramComponent implements OnInit {
12
12
  private translateService;
13
- private _data$;
13
+ private readonly _data$;
14
14
  sumKey: string;
15
15
  diagramType: DiagramType;
16
+ fullHeight: boolean;
16
17
  /**
17
18
  * This property determines if diagram should generate the colors for the data that does not have any set.
18
19
  *
@@ -30,15 +31,15 @@ export declare class GroupByCountDiagramComponent implements OnInit {
30
31
  get data(): unknown[];
31
32
  set data(value: unknown[]);
32
33
  diagramData$: Observable<DiagramData[]> | undefined;
33
- private _columnType$;
34
+ private readonly _columnType$;
34
35
  get columnType(): ColumnType;
35
36
  set columnType(value: ColumnType);
36
- private _columnField$;
37
+ private readonly _columnField$;
37
38
  get columnField(): string;
38
39
  set columnField(value: string);
39
40
  get column(): DiagramColumn;
40
41
  set column(value: DiagramColumn);
41
- private _colors$;
42
+ private readonly _colors$;
42
43
  get colors(): Record<string, string>;
43
44
  set colors(value: Record<string, string>);
44
45
  dataSelected: EventEmitter<any>;
@@ -48,5 +49,5 @@ export declare class GroupByCountDiagramComponent implements OnInit {
48
49
  dataClicked(event: any): void;
49
50
  onDiagramTypeChanged(newDiagramType: DiagramType): void;
50
51
  static ɵfac: i0.ɵɵFactoryDeclaration<GroupByCountDiagramComponent, 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>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<GroupByCountDiagramComponent, "ocx-group-by-count-diagram", never, { "sumKey": { "alias": "sumKey"; "required": false; }; "diagramType": { "alias": "diagramType"; "required": false; }; "fullHeight": { "alias": "fullHeight"; "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>;
52
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onecx/angular-accelerator",
3
- "version": "6.16.0",
3
+ "version": "6.16.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.16.0",
20
- "@onecx/accelerator": "^6.16.0",
21
- "@onecx/angular-integration-interface": "^6.16.0",
22
- "@onecx/angular-remote-components": "^6.16.0",
23
- "@onecx/angular-testing": "^6.16.0",
24
- "@onecx/angular-utils": "^6.16.0",
19
+ "@onecx/integration-interface": "^6.16.1",
20
+ "@onecx/accelerator": "^6.16.1",
21
+ "@onecx/angular-integration-interface": "^6.16.1",
22
+ "@onecx/angular-remote-components": "^6.16.1",
23
+ "@onecx/angular-testing": "^6.16.1",
24
+ "@onecx/angular-utils": "^6.16.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.16.0",
31
+ "@onecx/nx-migration-utils": "^6.16.1",
32
32
  "@primeng/themes": "^19.0.0"
33
33
  },
34
34
  "dependencies": {