@sankhyalabs/ezui 5.22.0-dev.131 → 5.22.0-dev.132
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/dist/cjs/ez-grid.cjs.entry.js +4 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +3 -0
- package/dist/collection/components/ez-grid/ez-grid.js +1 -0
- package/dist/custom-elements/index.js +4 -0
- package/dist/esm/ez-grid.entry.js +4 -0
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-0fa88ccd.entry.js → p-9127836a.entry.js} +1 -1
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +4 -0
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +1 -0
- package/package.json +1 -1
|
@@ -174,6 +174,10 @@ export default interface EzGridController {
|
|
|
174
174
|
Mostra coluna de seleção por checkbox
|
|
175
175
|
*/
|
|
176
176
|
showSelectionColumn(): void;
|
|
177
|
+
/**
|
|
178
|
+
* Limpa a seleção das células da grade
|
|
179
|
+
*/
|
|
180
|
+
clearRangeSelection(): void;
|
|
177
181
|
}
|
|
178
182
|
/**
|
|
179
183
|
* Carrega as informações necessárias para contextualizar corretamente a instância.
|
|
@@ -100,6 +100,7 @@ export default class AgGridController implements EzGridController, SortingProvid
|
|
|
100
100
|
setColumnsDef(cols: Array<EzGridColumn>): void;
|
|
101
101
|
private setColsDefsWithStateIfNeeded;
|
|
102
102
|
private getColsDefWithConfigApplied;
|
|
103
|
+
clearRangeSelection(): void;
|
|
103
104
|
hideSelectionColumn(): void;
|
|
104
105
|
showSelectionColumn(): void;
|
|
105
106
|
getColumnsDef(): Array<EzGridColumn>;
|