@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.
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-table",
3
- "version": "11.2.22-beta19",
3
+ "version": "11.2.22-beta22",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },