@esfaenza/es-table 20.3.16 → 20.3.17
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/index.d.ts
CHANGED
|
@@ -2650,10 +2650,19 @@ declare class EsTable2Component implements ControlValueAccessor, AfterContentIni
|
|
|
2650
2650
|
/** Risoluzione input: valore esplicito || default di progetto || hard default */
|
|
2651
2651
|
private io;
|
|
2652
2652
|
ngAfterContentInit(): void;
|
|
2653
|
-
writeValue
|
|
2653
|
+
/** Timeout di debounce del writeValue in modalità EsTableHandledSearch */
|
|
2654
|
+
private searchCallTimeout;
|
|
2655
|
+
writeValue(obj: any, throttle?: boolean): void;
|
|
2654
2656
|
registerOnChange(fn: (v: any) => void): void;
|
|
2655
2657
|
registerOnTouched(fn: () => void): void;
|
|
2656
2658
|
setDisabledState?(): void;
|
|
2659
|
+
/** Blocco auto-ricerca a fine writeValue (modalità EsTableHandledSearch) */
|
|
2660
|
+
private handleWriteValueAutoSearch;
|
|
2661
|
+
/**
|
|
2662
|
+
* Richiesta di ricerca (paging/ordinamento). In modalità EsTableHandledSearch
|
|
2663
|
+
* imposta il guard `selfsearch` così il writeValue di rientro non ri-cerca.
|
|
2664
|
+
*/
|
|
2665
|
+
private emitSearchRequest;
|
|
2657
2666
|
private changed;
|
|
2658
2667
|
private detectMode;
|
|
2659
2668
|
private buildColumns;
|