@esfaenza/es-table 11.2.57 → 11.2.60
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/bundles/esfaenza-es-table.umd.js +40 -45
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +39 -14
- package/esm2015/lib/core/handlers/ColumnMetadataHandler.js +2 -2
- package/esm2015/lib/core/handlers/ReportModeHandler.js +1 -34
- package/fesm2015/esfaenza-es-table.js +39 -46
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/core/handlers/ReportModeHandler.d.ts +0 -10
- package/package.json +1 -1
|
@@ -2,7 +2,6 @@ import { UtilitiesHandler } from "./UtilitiesHandler";
|
|
|
2
2
|
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
3
3
|
import { EsThDirective } from "../../directives/es_th.directive";
|
|
4
4
|
import { EsTdDirective } from "../../directives/es_td.directive";
|
|
5
|
-
import { ReportColumn } from "../../domain/externals/report/ReportColumn";
|
|
6
5
|
import { AppSearch } from "../../domain/externals/appsearch/AppSearch";
|
|
7
6
|
/** Classe che gestisce la modalità Report dell'es-table utilizzata nel Metering */
|
|
8
7
|
export declare class ReportModeHandler {
|
|
@@ -10,15 +9,6 @@ export declare class ReportModeHandler {
|
|
|
10
9
|
private utilities;
|
|
11
10
|
/** @ignore Costruttore */
|
|
12
11
|
constructor(est: EsTableComponent, utilities: UtilitiesHandler);
|
|
13
|
-
/**
|
|
14
|
-
* Sul click dell'Header di una colonna questo metodo si occupa di applicare l'ordinamento successivo e di notificare con **emitSearchRequest**
|
|
15
|
-
* il bisogno di aggiornare i dati da parte del componente che utilizza la tabella
|
|
16
|
-
*
|
|
17
|
-
* Utilizzato solo in modalità REport
|
|
18
|
-
*
|
|
19
|
-
* @param {ReportColumn} clm Colonna del report per cui ordinare
|
|
20
|
-
*/
|
|
21
|
-
setupNextOrderAndSearch(clm: ReportColumn): void;
|
|
22
12
|
/** Metodo che si occupa di gestire la grafica della tabella in base alle informazioni di ordinamento colonne e paginazione contenuti nel modello */
|
|
23
13
|
reviewReportBindings(): void;
|
|
24
14
|
generateThsAndTdsFromView(view: AppSearch<any>): {
|