@one-paragon/angular-utilities 0.4.0 → 0.4.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.
- package/esm2022/table-builder/components/column-builder/column-builder.component.mjs +22 -3
- package/fesm2022/one-paragon-angular-utilities.mjs +21 -2
- 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 +5 -1
- package/table-builder/components/table-container/table-container-imports.d.ts +2 -2
package/package.json
CHANGED
|
@@ -21,7 +21,9 @@ export declare class ColumnBuilderComponent implements OnInit {
|
|
|
21
21
|
tableConfig: import("../../classes/TableBuilderConfig").TableBuilderConfig;
|
|
22
22
|
FieldType: typeof FieldType;
|
|
23
23
|
filter: Partial<FilterInfo>;
|
|
24
|
-
|
|
24
|
+
_metaData: MetaData;
|
|
25
|
+
get metaData(): MetaData;
|
|
26
|
+
set metaData(md: MetaData);
|
|
25
27
|
customCell?: CustomCellDirective;
|
|
26
28
|
data$: Observable<any[]>;
|
|
27
29
|
outerTemplate: TemplateRef<any>;
|
|
@@ -39,6 +41,8 @@ export declare class ColumnBuilderComponent implements OnInit {
|
|
|
39
41
|
}>;
|
|
40
42
|
ngOnInit(): void;
|
|
41
43
|
ngAfterViewInit(): void;
|
|
44
|
+
initialSetUp(): void;
|
|
45
|
+
furtherSetUp(): void;
|
|
42
46
|
cellClicked(element: any, key: string): void;
|
|
43
47
|
getTooltip: (element: any) => string;
|
|
44
48
|
additional: LinkInfo | number | undefined;
|
|
@@ -3,7 +3,7 @@ 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";
|
|
@@ -11,4 +11,4 @@ import { SortMenuComponent } from "../sort-menu/sort-menu.component";
|
|
|
11
11
|
import { ClickEmitterDirective, DialogDirective, StopPropagationDirective } from "../../../utilities";
|
|
12
12
|
import { PaginatorComponent } from "../generic-table/paginator.component";
|
|
13
13
|
import { VirtualScrollContainer } from "./virtual-scroll-container";
|
|
14
|
-
export declare const containerImports: (typeof
|
|
14
|
+
export declare const containerImports: (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 | typeof PaginatorComponent | typeof VirtualScrollContainer)[];
|