@esfaenza/es-table 20.3.42 → 20.3.43
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.
|
@@ -10351,7 +10351,7 @@ class EsTableMultiValue {
|
|
|
10351
10351
|
* @param {boolean} exports Indica se questo header con questo valore dev'essere esportato
|
|
10352
10352
|
* @param {string} export_format Qualora **export** fosse **true** indica il formato per l'esportazione
|
|
10353
10353
|
*/
|
|
10354
|
-
constructor(value, header, header_group, exports = false, export_format = "") {
|
|
10354
|
+
constructor(value, header, header_group, exports$1 = false, export_format = "") {
|
|
10355
10355
|
this.value = value;
|
|
10356
10356
|
this.header = header;
|
|
10357
10357
|
this.header_group = header_group;
|
|
@@ -10359,7 +10359,7 @@ class EsTableMultiValue {
|
|
|
10359
10359
|
this.exports = false;
|
|
10360
10360
|
/** Qualora **export** fosse **true** indica il formato per l'esportazione */
|
|
10361
10361
|
this.export_format = "";
|
|
10362
|
-
this.exports = exports;
|
|
10362
|
+
this.exports = exports$1;
|
|
10363
10363
|
this.export_format = export_format;
|
|
10364
10364
|
this._headersHierarchy = header_group ? header_group.split(">").map(t => t.trim()) : [];
|
|
10365
10365
|
}
|