@sankhyalabs/ezui 5.19.3 → 5.19.5

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.
@@ -109,6 +109,7 @@ export default interface EzGridController {
109
109
  locateColumn(columnName: string): void;
110
110
  configFilterColumn(filterColumn: FilterCollumn): any;
111
111
  getFilter(): Array<Filter> | undefined;
112
+ clearFilter(): void;
112
113
  }
113
114
  /**
114
115
  * Carrega as informações necessárias para contextualizar corretamente a instância.
@@ -32,12 +32,14 @@ export default class AgGridController implements EzGridController, SortingProvid
32
32
  private _editionManager;
33
33
  configFilterColumn(filterColumn: HTMLFilterColumnElement): void;
34
34
  private handleFilteredColumnsChanged;
35
+ clearFilter(): void;
35
36
  private showFilterColumn;
36
37
  constructor(enterprise: boolean);
37
38
  getGridConfig(): Array<EzGridColumnConfig>;
38
39
  locateColumn(columnName: string): void;
39
40
  getSort(_dataUnitName: string, defaultSorting: Array<Sort>): Array<Sort>;
40
41
  getFilter(): Array<Filter> | undefined;
42
+ private getExpression;
41
43
  initDatagrid(container: HTMLElement, options: EzGridOptions): void;
42
44
  private setFilterColumnLeftPosition;
43
45
  private buildMenuItemOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/ezui",
3
- "version": "5.19.3",
3
+ "version": "5.19.5",
4
4
  "description": "Biblioteca de componentes Sankhya.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",