@esfaenza/es-table 13.3.0 → 13.3.3
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/esm2020/lib/components/es-table/es_table.component.loc.mjs +1 -2
- package/esm2020/lib/components/es-table/es_table.component.mjs +31 -8
- package/esm2020/lib/components/pager/table_pager.component.mjs +3 -3
- package/fesm2015/esfaenza-es-table.mjs +32 -10
- package/fesm2015/esfaenza-es-table.mjs.map +1 -1
- package/fesm2020/esfaenza-es-table.mjs +32 -10
- package/fesm2020/esfaenza-es-table.mjs.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +12 -2
- package/package.json +6 -6
|
@@ -59,7 +59,7 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
59
59
|
private cellDbClickTimer;
|
|
60
60
|
/** Se vengono effettuati 2 click a distanza inferiore a questi Millisecondi viene considerato un doppio click */
|
|
61
61
|
private doubleClickBufferMs;
|
|
62
|
-
/** View finale su cui bindarsi lato Frontend, il tipo può essere IAppSearch<any> (per la **viewMode**), any[] (per l'**arrayMode**)
|
|
62
|
+
/** View finale su cui bindarsi lato Frontend, il tipo può essere IAppSearch<any> (per la **viewMode**), any[] (per l'**arrayMode**) */
|
|
63
63
|
View: any;
|
|
64
64
|
/** Modello da cui l'es-table mostra i pulsanti di paginazione in basso a destra */
|
|
65
65
|
arrayPulsanti: any;
|
|
@@ -98,10 +98,12 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
98
98
|
updateTimer: any;
|
|
99
99
|
/** Impostata a true ogni volta che viene avviata una ricerca, e a false ogni volta che un nuovo valore viene ricevuto */
|
|
100
100
|
researchInProgress: boolean;
|
|
101
|
-
/** Modello rappresentante un
|
|
101
|
+
/** Modello rappresentante un dizionario di righe della tabella, con chiave l'hash e valore la lista di celle */
|
|
102
102
|
RowTDs: {
|
|
103
103
|
[context: string]: TdElement[];
|
|
104
104
|
};
|
|
105
|
+
/** Indica se **RowTDs** è un oggetto vuoto o meno */
|
|
106
|
+
EmptyRowTds: boolean;
|
|
105
107
|
/** Modello di appoggio temporaneo per i **RowTDs** */
|
|
106
108
|
TMPRowTDs: {
|
|
107
109
|
[context: string]: TdElement[];
|
|
@@ -441,6 +443,14 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
441
443
|
private bindDisplayToLoadedItemsOrGroups;
|
|
442
444
|
/** Metodo richiamato solo quando **TMPRowTDs** e **TMPRowTHs** sono completamente generati ed aggiustati. Serve per collegarli alle variabili usate lato binding HTML */
|
|
443
445
|
private MoveTemporaryVariablesToRealOnes;
|
|
446
|
+
/**
|
|
447
|
+
* Metodo per capire se un oggetto è completamente vuoto
|
|
448
|
+
*
|
|
449
|
+
* @param {any} obj Oggetto da controllare
|
|
450
|
+
*
|
|
451
|
+
* @returns {boolean} **true** se l'oggetto è vuoto, **false** altrimenti
|
|
452
|
+
*/
|
|
453
|
+
isEmpty(obj: any): boolean;
|
|
444
454
|
/**
|
|
445
455
|
* Permette di selezionare o deselezionare in maniera arbitraria degli oggetti
|
|
446
456
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/es-table",
|
|
3
|
-
"version": "13.3.
|
|
3
|
+
"version": "13.3.3",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"@angular/common": "~13.3.9",
|
|
9
9
|
"@angular/core": "~13.3.9",
|
|
10
10
|
"@angular/material": "~13.3.7",
|
|
11
|
-
"@esfaenza/extensions": "^13.3.
|
|
12
|
-
"@esfaenza/localizations": "^13.3.
|
|
13
|
-
"@esfaenza/forms-and-validations": "^13.3.
|
|
11
|
+
"@esfaenza/extensions": "^13.3.3",
|
|
12
|
+
"@esfaenza/localizations": "^13.3.2",
|
|
13
|
+
"@esfaenza/forms-and-validations": "^13.3.2",
|
|
14
14
|
"@ctrl/ngx-csv": "5.0.0",
|
|
15
|
-
"@esfaenza/ngx-contextmenu": "^13.3.
|
|
16
|
-
"@esfaenza/preferences": "^13.3.
|
|
15
|
+
"@esfaenza/ngx-contextmenu": "^13.3.2",
|
|
16
|
+
"@esfaenza/preferences": "^13.3.2",
|
|
17
17
|
"ngx-toastr": "14.3.0",
|
|
18
18
|
"ngx-bootstrap": "8.0.0",
|
|
19
19
|
"exceljs": "4.3.0",
|