axidio-styleguide-library1-v2 0.2.30 → 0.2.32
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/esm2022/lib/ax-table/ax-table.component.mjs +19 -3
- package/esm2022/lib/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.mjs +1 -2
- package/fesm2022/axidio-styleguide-library1-v2.mjs +18 -3
- package/fesm2022/axidio-styleguide-library1-v2.mjs.map +1 -1
- package/lib/ax-table/ax-table.component.d.ts +1 -0
- package/lib/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -71,6 +71,7 @@ export declare class AxTableComponent implements OnInit {
|
|
|
71
71
|
preventNegative(event: KeyboardEvent): void;
|
|
72
72
|
validateNumberInput(event: KeyboardEvent): boolean;
|
|
73
73
|
handleClick(data: any): void;
|
|
74
|
+
getCellAlignment(value: any, index: number): string;
|
|
74
75
|
shouldShowPagination(): boolean;
|
|
75
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<AxTableComponent, never>;
|
|
76
77
|
static ɵcmp: i0.ɵɵComponentDeclaration<AxTableComponent, "lib-ax-table", never, { "tableData": { "alias": "tableData"; "required": false; }; "customChartConfiguration": { "alias": "customChartConfiguration"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, never, false, never>;
|
package/lib/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges } from '@angular/core';
|
|
2
2
|
import { ComponentUniqueId } from '../unique-id';
|
|
3
3
|
import ChartHelper from '../chart-helper';
|
|
4
4
|
import { ResizedEvent } from 'angular-resize-event';
|
|
@@ -31,7 +31,7 @@ interface TargetLineData {
|
|
|
31
31
|
barAboveTargetColor?: string;
|
|
32
32
|
barAboveTargetHoverColor?: string;
|
|
33
33
|
}
|
|
34
|
-
export declare class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId implements
|
|
34
|
+
export declare class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId implements OnChanges {
|
|
35
35
|
containerElt: ElementRef;
|
|
36
36
|
verticalstackedcontainerElt: ElementRef;
|
|
37
37
|
chartData: ChartData | any;
|
|
@@ -97,7 +97,6 @@ export declare class HorizontalBarsWithScrollZoomComponent extends ComponentUniq
|
|
|
97
97
|
isTitleHidden: undefined;
|
|
98
98
|
};
|
|
99
99
|
constructor();
|
|
100
|
-
ngOnInit(): void;
|
|
101
100
|
ngOnChanges(): void;
|
|
102
101
|
onResized(event: ResizedEvent): void;
|
|
103
102
|
isZoomOutSelected(isZoomOut: boolean): void;
|