@esfaenza/es-table 11.2.102 → 11.2.104

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.
@@ -311,6 +311,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
311
311
  Editable: boolean;
312
312
  /** Indica se è possibile effettuare selezioni a range per poi farci eventualmente copia incolla */
313
313
  RangeSelection: boolean;
314
+ /** Indica il numero di millisecondi per cui debouncare il writeValue per la modalità **EsTableHandledSearch** */
315
+ SearchThrottle: number;
314
316
  /** Evento che viene richiamato al cambio di oridnamento di una colonna */
315
317
  onOrderChanged: EventEmitter<AppOrdering>;
316
318
  /**
@@ -418,6 +420,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
418
420
  [index: number]: ItemPropEditableReference;
419
421
  };
420
422
  };
423
+ /** Chiamata reale al writeValue dopo il passaggio di **SearchThrottle** millisecondi. Solo modalità EsTableHandledSearch */
424
+ private callTimeout;
421
425
  /** Opzioni di paginazione */
422
426
  PagerOptions: {
423
427
  PagerCount: number;
@@ -443,11 +447,11 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
443
447
  /** @ignore */
444
448
  registerOnTouched(fn: any): void;
445
449
  /** @ignore */
446
- changed(): void;
447
- /** @ignore */
448
450
  propagateChange: (_: any) => void;
449
451
  /** @ignore */
450
- writeValue(obj: any): Promise<void>;
452
+ changed(clearItems?: boolean): void;
453
+ /** @ignore */
454
+ writeValue(obj: any, throttle?: boolean): Promise<void>;
451
455
  /** Funzione di trackby per il body che dovrebbe evitare il 90% delle change detection */
452
456
  bodyTrackBy: (index: number, item: any) => any;
453
457
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-table",
3
- "version": "11.2.102",
3
+ "version": "11.2.104",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },