@esfaenza/es-table 19.2.21 → 19.2.23
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.
|
@@ -688,7 +688,7 @@ export declare class EsTableComponent implements ControlValueAccessor {
|
|
|
688
688
|
* Helper per effettuare chiamate interne di allineamento alla funzione **writeValue**,
|
|
689
689
|
* impostando prima **internalWriteCall** in modo da non effettuare operazioni inutili
|
|
690
690
|
*/
|
|
691
|
-
internalWriteValue(): void
|
|
691
|
+
internalWriteValue(): Promise<void>;
|
|
692
692
|
/** Metodo eventualmente richiamabile anche dal componente esterno che permette di forzare un refresh della tabella */
|
|
693
693
|
forceRefresh(relaunchSearch?: boolean): void;
|
|
694
694
|
/**
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { QueryList } from '@angular/core';
|
|
2
2
|
import { EsTdDirective } from './es_td.directive';
|
|
3
3
|
import { EsThDirective } from './es_th.directive';
|
|
4
|
-
import {
|
|
4
|
+
import { ReplaySubject } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ThTdProvider {
|
|
7
7
|
EsTdsDirective: QueryList<EsTdDirective>;
|
|
8
8
|
EsThsDirective: QueryList<EsThDirective>;
|
|
9
|
-
LoadedSignal:
|
|
9
|
+
LoadedSignal: ReplaySubject<void>;
|
|
10
10
|
setLoaded(): void;
|
|
11
11
|
asyncLoad(): Promise<void>;
|
|
12
12
|
ngOnInit(): Promise<void>;
|