@sankhyalabs/ezui 5.20.0-dev.20 → 5.20.0-dev.21
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 +32 -26
- package/dist/collection/components/ez-grid/ez-grid.css +16 -1
- package/dist/collection/components/ez-grid/ez-grid.js +32 -26
- package/dist/custom-elements/index.js +33 -27
- package/dist/esm/ez-grid.entry.js +33 -27
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-79bbf86d.entry.js → p-a2704c1a.entry.js} +2 -2
- package/dist/types/components/ez-grid/ez-grid.d.ts +3 -2
- package/package.json +1 -1
|
@@ -13,7 +13,6 @@ export declare class EzGrid {
|
|
|
13
13
|
private _messageFilterAppliedSuccess;
|
|
14
14
|
private _gridApi;
|
|
15
15
|
private _filterColumn;
|
|
16
|
-
private _refHeader;
|
|
17
16
|
private _refPaginationLabel;
|
|
18
17
|
private _refPaginationLabelTooltip;
|
|
19
18
|
private _headerOverflowWatcher;
|
|
@@ -127,6 +126,7 @@ export declare class EzGrid {
|
|
|
127
126
|
*/
|
|
128
127
|
filterColumns(search: string): Promise<Array<EzGridColumn>>;
|
|
129
128
|
observeConfig(config: IGridConfig): void;
|
|
129
|
+
updatePaginationTooltip(): void;
|
|
130
130
|
onSelectionChange(evt: CustomEvent): void;
|
|
131
131
|
private setSelection;
|
|
132
132
|
private onSelectAllRecords;
|
|
@@ -147,8 +147,9 @@ export declare class EzGrid {
|
|
|
147
147
|
private _getActualPageLabel;
|
|
148
148
|
private _getRemainingPageLabel;
|
|
149
149
|
private _getPaginationTooltip;
|
|
150
|
-
private _updatePaginationTooltip;
|
|
151
150
|
private _initHeaderOverflowWatcher;
|
|
151
|
+
private buildOverFlowWatcherParams;
|
|
152
|
+
private handleOverFlow;
|
|
152
153
|
private _hidePaginationDescription;
|
|
153
154
|
private _showPaginationDescription;
|
|
154
155
|
disconnectedCallback(): void;
|