@sankhyalabs/ezui 4.11.0 → 4.11.2

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.
@@ -96,6 +96,10 @@ export default interface EzGridController {
96
96
  * Foca a primeira linha da grade, usado durante a troca de página
97
97
  */
98
98
  setFocusFirstRow(): void;
99
+ /**
100
+ * Método responsável por retornar a configuração da grade.
101
+ */
102
+ getGridConfig(): Array<EzGridColumnConfig>;
99
103
  }
100
104
  /**
101
105
  * Carrega as informações necessárias para contextualizar corretamente a instância.
@@ -24,7 +24,9 @@ export default class AgGridController implements EzGridController, SortingProvid
24
24
  private _colDefs;
25
25
  private _statusResolver;
26
26
  private _selectionChangeDeboucing;
27
+ private _gridConfig;
27
28
  constructor(enterprise: boolean);
29
+ getGridConfig(): Array<EzGridColumnConfig>;
28
30
  getSort(): Array<Sort>;
29
31
  initDatagrid(container: HTMLElement, options: EzGridOptions): void;
30
32
  private getRowHeight;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/ezui",
3
- "version": "4.11.0",
3
+ "version": "4.11.2",
4
4
  "description": "Biblioteca de componentes Sankhya.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",