@visactor/vtable-plugins 1.21.0 → 1.21.1
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/cjs/table-export/csv/index.js +1 -0
- package/cjs/table-export/excel/index.js +1 -1
- package/cjs/table-export/excel/style.js +2 -2
- package/cjs/table-export/util/color.js +1 -2
- package/cjs/table-export/util/promise.js +1 -1
- package/cjs/table-export/util/type.js +1 -1
- package/es/table-export/csv/index.js +2 -1
- package/es/table-export/excel/index.js +1 -1
- package/es/table-export/excel/style.js +1 -1
- package/es/table-export/util/color.js +1 -2
- package/es/table-export/util/promise.js +1 -1
- package/es/table-export/util/type.js +1 -1
- package/package.json +6 -6
|
@@ -239,5 +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
|
+
exports.exportVTableToExcel = exportVTableToExcel;
|
|
242
243
|
//# sourceMappingURL=index.js.map
|
|
243
|
-
exports.exportVTableToExcel = exportVTableToExcel;
|
|
@@ -84,6 +84,6 @@ function getColor(color) {
|
|
|
84
84
|
};
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
//# sourceMappingURL=style.js.map
|
|
88
87
|
exports.getCellFont = getCellFont, exports.getCellFill = getCellFill, exports.getCellBorder = getCellBorder,
|
|
89
|
-
exports.getCellAlignment = getCellAlignment;
|
|
88
|
+
exports.getCellAlignment = getCellAlignment;
|
|
89
|
+
//# sourceMappingURL=style.js.map
|
|
@@ -239,4 +239,4 @@ function exportCellImg(col, row, tableInstance) {
|
|
|
239
239
|
function needCellImageExport(cellType, isAxisCell, isCustomCell, isTextWithIcon, options) {
|
|
240
240
|
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"));
|
|
241
241
|
}
|
|
242
|
-
//# sourceMappingURL=index.js.map
|
|
242
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=type.js.map
|
|
2
|
+
//# sourceMappingURL=type.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vtable-plugins",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.1",
|
|
4
4
|
"description": "The search util of VTable",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "VisActor",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@types/file-saver": "2.0.7"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@visactor/vtable
|
|
46
|
-
"@visactor/vtable": "1.21.
|
|
45
|
+
"@visactor/vtable": "1.21.1",
|
|
46
|
+
"@visactor/vtable-gantt": "1.21.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependenciesMeta": {
|
|
49
49
|
"@visactor/vtable-gantt": {
|
|
@@ -95,9 +95,9 @@
|
|
|
95
95
|
"@types/react-is": "^17.0.3",
|
|
96
96
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
97
97
|
"@types/lodash": "4.14.182",
|
|
98
|
-
"@visactor/vtable": "1.21.
|
|
99
|
-
"@visactor/vtable-
|
|
100
|
-
"@visactor/vtable-
|
|
98
|
+
"@visactor/vtable": "1.21.1",
|
|
99
|
+
"@visactor/vtable-gantt": "1.21.1",
|
|
100
|
+
"@visactor/vtable-editors": "1.21.1",
|
|
101
101
|
"@internal/bundler": "0.0.1",
|
|
102
102
|
"@internal/eslint-config": "0.0.1",
|
|
103
103
|
"@internal/ts-config": "0.0.1"
|