@one-paragon/angular-utilities 1.1.3 → 1.1.4
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/generic-table/generic-table.component.mjs +3 -2
- package/esm2022/table-builder/services/table-template-service.mjs +8 -7
- package/fesm2022/one-paragon-angular-utilities.mjs +9 -7
- package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
- package/package.json +1 -1
- package/table-builder/components/table-container/table-container-imports.d.ts +2 -2
- package/table-builder/services/table-template-service.d.ts +2 -2
package/package.json
CHANGED
|
@@ -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)[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EnvironmentInjector } from "@angular/core";
|
|
2
2
|
import { TemplateRef } from "@angular/core";
|
|
3
3
|
import { MetaData } from "../interfaces/report-def";
|
|
4
4
|
import { InitializationComponent } from "../components/initialization-component/initialization-component";
|
|
@@ -8,7 +8,7 @@ export declare class TableTemplateService {
|
|
|
8
8
|
templates: any;
|
|
9
9
|
initTemplates(): void;
|
|
10
10
|
getTemplate(metaData: MetaData): TemplateRef<any>;
|
|
11
|
-
constructor(
|
|
11
|
+
constructor(ei: EnvironmentInjector);
|
|
12
12
|
tableConfig: import("../classes/TableBuilderConfig").TableBuilderConfig;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableTemplateService, never>;
|
|
14
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<TableTemplateService>;
|