@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.
- package/bundles/esfaenza-es-table.umd.js +20 -3
- 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 +18 -4
- package/fesm2015/esfaenza-es-table.js +17 -3
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +7 -3
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
/**
|