@provoly/dashboard 0.11.5 → 0.11.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/esm2022/lib/core/components/select/select.component.mjs +3 -3
- package/esm2022/lib/core/i18n/i18n.pipe.mjs +16 -8
- package/esm2022/lib/core/i18n/i18n.service.mjs +4 -3
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +5 -3
- package/esm2022/widgets/widget-aggregated-chart/widget-aggregated-chart.module.mjs +8 -5
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +6 -3
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +11 -6
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +5 -2
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +20 -11
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/i18n/i18n.pipe.d.ts +5 -3
- package/package.json +1 -1
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -0
- package/widgets/widget-aggregated-chart/widget-aggregated-chart.module.d.ts +1 -1
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import { ChangeDetectorRef, PipeTransform } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, PipeTransform } from '@angular/core';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
3
|
import { PryI18nService } from './i18n.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class I18nPipe implements PipeTransform {
|
|
5
|
+
export declare class I18nPipe implements PipeTransform, OnDestroy {
|
|
6
6
|
private translateService;
|
|
7
|
-
private _ref;
|
|
8
7
|
value: string;
|
|
9
8
|
key: string | null;
|
|
10
9
|
params: any[];
|
|
11
10
|
waitSubscription?: Subscription;
|
|
11
|
+
private _ref;
|
|
12
12
|
constructor(translateService: PryI18nService, _ref: ChangeDetectorRef);
|
|
13
13
|
transform(value: string, ...args: any[]): string;
|
|
14
|
+
dispose(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
14
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<I18nPipe, never>;
|
|
15
17
|
static ɵpipe: i0.ɵɵPipeDeclaration<I18nPipe, "i18n", false>;
|
|
16
18
|
}
|
package/package.json
CHANGED
|
@@ -59,6 +59,8 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
|
|
|
59
59
|
id: string;
|
|
60
60
|
}[];
|
|
61
61
|
noData$: Observable<boolean>;
|
|
62
|
+
sortActive?: string | undefined;
|
|
63
|
+
sortDirection?: string | undefined;
|
|
62
64
|
constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, aggregationService: PryAggregationService);
|
|
63
65
|
ngAfterViewInit(): void;
|
|
64
66
|
translateToVegaType(type?: FieldType, name?: string): VegaType;
|
|
@@ -13,6 +13,6 @@ export declare class WidgetAggregatedChartModule extends BaseWidgetModule {
|
|
|
13
13
|
constructor(pryTranslateService: PryI18nService);
|
|
14
14
|
getComponent(): Type<BaseWidgetComponent>;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetAggregatedChartModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetAggregatedChartModule, [typeof i1.WidgetAggregatedChartComponent, typeof i2.PryWidgetAggregatedChartCssComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.OverlayModule, typeof i6.PryCoreModule, typeof i6.PryDashboardModule, typeof i6.PrySelectModule, typeof i6.PryIconModule, typeof i7.PryCheckboxModule, typeof i6.PryToggleModule, typeof i6.PryEditInputModule, typeof i6.PryI18nModule, typeof i6.PryRangeModule], [typeof i1.WidgetAggregatedChartComponent]>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetAggregatedChartModule, [typeof i1.WidgetAggregatedChartComponent, typeof i2.PryWidgetAggregatedChartCssComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.OverlayModule, typeof i6.PryCoreModule, typeof i6.PryDashboardModule, typeof i6.PrySelectModule, typeof i6.PryIconModule, typeof i7.PryCheckboxModule, typeof i6.PryToggleModule, typeof i6.PryEditInputModule, typeof i6.PryI18nModule, typeof i6.PryRangeModule, typeof i6.PrySortModule], [typeof i1.WidgetAggregatedChartComponent]>;
|
|
17
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<WidgetAggregatedChartModule>;
|
|
18
18
|
}
|