@visactor/vtable-plugins 1.20.1 → 1.20.2-alpha.0

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.
@@ -50,5 +50,4 @@ function escapeForCSV(str) {
50
50
  return /[,"\r\n]/.test(escapedStr) && (escapedStr = `"${escapedStr}"`), escapedStr;
51
51
  }
52
52
 
53
- //# sourceMappingURL=index.js.map
54
53
  exports.exportVTableToCsv = exportVTableToCsv;
@@ -239,4 +239,5 @@ function needCellImageExport(cellType, isAxisCell, isCustomCell, isTextWithIcon,
239
239
  return !(null == options ? void 0 : options.skipImageExportCellType) || ("image" === cellType || "video" === cellType || "progressbar" === cellType || "sparkline" === cellType || "chart" === cellType ? !options.skipImageExportCellType.includes(cellType) : isAxisCell ? !options.skipImageExportCellType.includes("chart") : isCustomCell ? !options.skipImageExportCellType.includes("custom") : !isTextWithIcon || !options.skipImageExportCellType.includes("textWithIcon"));
240
240
  }
241
241
 
242
+ //# sourceMappingURL=index.js.map
242
243
  exports.exportVTableToExcel = exportVTableToExcel;