@one-paragon/angular-utilities 0.3.5 → 0.3.6
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/table-builder/components/column-builder/column-builder.component.mjs +7 -13
- package/esm2022/table-builder/components/generic-table/generic-table.component.mjs +11 -8
- package/esm2022/table-builder/pipes/column-total.pipe.mjs +1 -2
- package/fesm2022/one-paragon-angular-utilities.mjs +15 -19
- package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
- package/package.json +1 -1
- package/table-builder/components/column-builder/column-builder.component.d.ts +4 -4
- package/table-builder/components/table-container/table-container-imports.d.ts +2 -2
- package/table-builder/pipes/column-total.pipe.d.ts +1 -1
package/package.json
CHANGED
|
@@ -24,19 +24,19 @@ export declare class ColumnBuilderComponent implements OnInit {
|
|
|
24
24
|
state: TableStore;
|
|
25
25
|
private templateService;
|
|
26
26
|
protected injector: Injector;
|
|
27
|
+
columnDef: MatColumnDef;
|
|
28
|
+
bodyTemplate: TemplateRef<any>;
|
|
27
29
|
FieldType: typeof FieldType;
|
|
28
30
|
filter: Partial<FilterInfo>;
|
|
29
31
|
metaData: MetaData;
|
|
30
32
|
customCell?: CustomCellDirective;
|
|
31
33
|
data$: Observable<any[]>;
|
|
32
|
-
columnDef: MatColumnDef;
|
|
33
34
|
outerTemplate: TemplateRef<any>;
|
|
34
35
|
innerTemplate: TemplateRef<any>;
|
|
35
36
|
transform: (o: any, ...args: any[]) => any;
|
|
36
|
-
bodyTemplate: TemplateRef<any>;
|
|
37
37
|
constructor(transformCreator: TransformCreator, table: MatTable<any>, state: TableStore, templateService: TableTemplateService, injector: Injector);
|
|
38
38
|
getInnerTemplate(): TemplateRef<any>;
|
|
39
|
-
|
|
39
|
+
showFilters$: Observable<boolean>;
|
|
40
40
|
getOuterTemplate(): TemplateRef<any>;
|
|
41
41
|
classes?: Dictionary<Predicate<any>>;
|
|
42
42
|
ngOnInit(): void;
|
|
@@ -45,6 +45,6 @@ export declare class ColumnBuilderComponent implements OnInit {
|
|
|
45
45
|
mapWidth: ([previousUserDefinedWidth, currentUserDefinedWidth]: [number, number]) => widthStyle;
|
|
46
46
|
styles$: Observable<allStyles>;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBuilderComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBuilderComponent, "
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBuilderComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
49
49
|
}
|
|
50
50
|
export {};
|
|
@@ -3,10 +3,10 @@ import { LetDirective } from "@ngrx/component";
|
|
|
3
3
|
import { MultiSortDirective } from "../../directives";
|
|
4
4
|
import { GroupByListComponent } from "../group-by-list/group-by-list.component";
|
|
5
5
|
import { FilterChipsComponent } from "../table-container-filter/filter-list/filter-list.component";
|
|
6
|
-
import {
|
|
6
|
+
import { MatTooltipModule } from "@angular/material/tooltip";
|
|
7
7
|
import { GenericTableComponent } from "../generic-table/generic-table.component";
|
|
8
8
|
import { GenFilterDisplayerComponent } from "../table-container-filter/gen-filter-displayer/gen-filter-displayer.component";
|
|
9
9
|
import { GenColDisplayerComponent } from "../gen-col-displayer/gen-col-displayer.component";
|
|
10
10
|
import { SortMenuComponent } from "../sort-menu/sort-menu.component";
|
|
11
11
|
import { ClickEmitterDirective, DialogDirective, StopPropagationDirective } from "../../../utilities";
|
|
12
|
-
export declare const i: (typeof
|
|
12
|
+
export declare const i: (typeof NgTemplateOutlet | typeof AsyncPipe | typeof MatTooltipModule | typeof LetDirective | typeof GenericTableComponent | typeof MultiSortDirective | typeof StopPropagationDirective | typeof ClickEmitterDirective | typeof DialogDirective | typeof GenColDisplayerComponent | typeof GenFilterDisplayerComponent | typeof FilterChipsComponent | typeof GroupByListComponent | typeof SortMenuComponent)[];
|
|
@@ -2,7 +2,7 @@ import { PipeTransform } from '@angular/core';
|
|
|
2
2
|
import { MetaData } from '../interfaces/report-def';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ColumnTotalPipe implements PipeTransform {
|
|
5
|
-
transform(data: any[], metaData: MetaData): number
|
|
5
|
+
transform(data: any[], metaData: MetaData): number;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnTotalPipe, never>;
|
|
7
7
|
static ɵpipe: i0.ɵɵPipeDeclaration<ColumnTotalPipe, "columnTotal", true>;
|
|
8
8
|
}
|