@esfaenza/extensions 15.2.28 → 15.2.30
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/services/extensions.exports.service.mjs +21 -38
- package/fesm2015/esfaenza-extensions.mjs +20 -37
- package/fesm2015/esfaenza-extensions.mjs.map +1 -1
- package/fesm2020/esfaenza-extensions.mjs +20 -37
- package/fesm2020/esfaenza-extensions.mjs.map +1 -1
- package/lib/services/extensions.exports.service.d.ts +3 -4
- package/package.json +1 -1
|
@@ -105,10 +105,10 @@ export declare const ExportList: (order: number, headernavigator: string, valuen
|
|
|
105
105
|
* partendo da un oggetto iniziale { Valore { A: 1, B: 2, C: 3 } }
|
|
106
106
|
*
|
|
107
107
|
* @param {number} order Ordine di esportazione. Più piccolo è, prima appare il valore
|
|
108
|
-
* @param {string}
|
|
109
|
-
* @param {string}
|
|
108
|
+
* @param {string} headerprefix Prefisso per l'header
|
|
109
|
+
* @param {string} valueprefix Prefisso per il valore
|
|
110
110
|
*/
|
|
111
|
-
export declare const ExportDictionary: (order: number,
|
|
111
|
+
export declare const ExportDictionary: (order: number, headerprefix: string, valueprefix: string) => (target: Object, propertyKey: string) => void;
|
|
112
112
|
/**
|
|
113
113
|
* Service che si occupa dell'esportazione degli oggetti marcati dai Decoratori **ExportDictionary**, **ExportList**, **ExportAs** o **Export**
|
|
114
114
|
*/
|
|
@@ -213,7 +213,6 @@ export declare class ExportService {
|
|
|
213
213
|
* @param {any} obj Oggetto di cui esportare la proprietà **prop**
|
|
214
214
|
* @param {string} prop Proprietà da esportare
|
|
215
215
|
* @param {CsvHeaders} headers Contenitore degli header, verrà riempito da questa funzione
|
|
216
|
-
* @param {LocalizationService} loc Servizio di localizzazione che traduce tutti i nomi che può
|
|
217
216
|
*/
|
|
218
217
|
private parseDictionary;
|
|
219
218
|
/**
|