@esfaenza/es-table 11.2.104 → 11.2.106
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 +30 -4
- 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 +3 -2
- package/esm2015/lib/core/handlers/ExportHandler.js +29 -3
- package/fesm2015/esfaenza-es-table.js +30 -3
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/core/handlers/ExportHandler.d.ts +4 -0
- package/package.json +1 -2
|
@@ -17,6 +17,10 @@ export declare class ExportHandler {
|
|
|
17
17
|
* @param {string} format Formato di esportazione. Letto solo in modalità Report della tabella
|
|
18
18
|
*/
|
|
19
19
|
tryExport(format?: string): void;
|
|
20
|
+
/** Effettua l'esportazione in file CSV, va a sostituire quel coso inutile di @ctrl/ngx-csv */
|
|
21
|
+
private exportCSV;
|
|
22
|
+
/** Generazione specifica del CSV */
|
|
23
|
+
private convertToCSV;
|
|
20
24
|
/** Effettua l'esportazione del file Excel basandosi sul modulo **ExcelJS**, sugli header **this.est.headers** e sui dati **this.est.data** */
|
|
21
25
|
private exportExcel;
|
|
22
26
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/es-table",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.106",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"@esfaenza/extensions": "^11.2.29",
|
|
12
12
|
"@esfaenza/localizations": "^11.2.7",
|
|
13
13
|
"@esfaenza/forms-and-validations": "^11.2.115",
|
|
14
|
-
"@ctrl/ngx-csv": "4.0.0",
|
|
15
14
|
"@esfaenza/ngx-contextmenu": "^11.2.6",
|
|
16
15
|
"@esfaenza/preferences": "^11.2.19",
|
|
17
16
|
"ngx-toastr": "13.2.1",
|