@esfaenza/es-table 11.2.22-beta19 → 11.2.22-beta22
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 +21 -10
- 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 +19 -10
- package/esm2015/lib/core/handlers/classes/ItemsHandler.js +4 -1
- package/fesm2015/esfaenza-es-table.js +21 -9
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -266,6 +266,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
266
266
|
ColumnsOrdering: boolean;
|
|
267
267
|
/** Eventuale supporto alle ricerche applicate alla modalità Array */
|
|
268
268
|
SearchView: AppSearch<any>;
|
|
269
|
+
/** Eventuale supporto alle ricerche applicate alla modalità Array - Evento */
|
|
270
|
+
SearchViewChange: EventEmitter<AppSearch<any>>;
|
|
269
271
|
/** Abilita o disabilita il sistema che permette di selezionare tutti gli elementi nella vista */
|
|
270
272
|
SelectAll: boolean;
|
|
271
273
|
/** Simula la paginazione anche per le tabelle che funzionano in modalità Array */
|
|
@@ -437,6 +439,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
437
439
|
propagateChange: (_: any) => void;
|
|
438
440
|
/** @ignore */
|
|
439
441
|
writeValue(obj: any): void;
|
|
442
|
+
/** Funzione di trackby per il body che dovrebbe evitare il 90% delle change detection */
|
|
443
|
+
bodyTrackBy: (index: number, item: any) => any;
|
|
440
444
|
/**
|
|
441
445
|
* Successivamente al bind del nuovo input questa funzione si occupa di finalizzare tutti i parametri di funzionamento dell'es-table
|
|
442
446
|
* in base a Input - Modello, e qualsiasi altra cosa possa servire
|