@stemy/ngx-utils 13.5.2 → 13.5.3

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.
@@ -287,6 +287,7 @@ export interface ITableColumn {
287
287
  title?: string;
288
288
  sort?: string;
289
289
  filter?: boolean;
290
+ [key: string]: any;
290
291
  }
291
292
  export interface ITableColumns {
292
293
  [column: string]: ITableColumn;
@@ -1,5 +1,7 @@
1
- import { AfterContentInit, AfterViewInit, OnChanges, SimpleChanges, TemplateRef } from "@angular/core";
1
+ import { AfterContentInit, AfterViewInit, OnChanges, QueryList, SimpleChanges, TemplateRef } from "@angular/core";
2
2
  import { IPaginationData, ITableColumns, ITableOrders, ITableTemplates, TableDataLoader } from "../../common-types";
3
+ import { DynamicTableTemplateDirective } from "../../directives/dynamic-table-template.directive";
4
+ import { PaginationDirective } from "../../directives/pagination.directive";
3
5
  import * as i0 from "@angular/core";
4
6
  export declare class DynamicTableComponent implements AfterContentInit, AfterViewInit, OnChanges {
5
7
  label: string;
@@ -30,8 +32,8 @@ export declare class DynamicTableComponent implements AfterContentInit, AfterVie
30
32
  defaultRowTemplate: TemplateRef<any>;
31
33
  defaultWrapperTemplate: TemplateRef<any>;
32
34
  defaultFilterTemplate: TemplateRef<any>;
33
- private pagination;
34
- private templateDirectives;
35
+ protected pagination: PaginationDirective;
36
+ protected templateDirectives: QueryList<DynamicTableTemplateDirective>;
35
37
  private static compare;
36
38
  constructor();
37
39
  ngAfterContentInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "13.5.2",
3
+ "version": "13.5.3",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",