@leankylin-sheet/excel 4.0.12 → 4.0.14
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/dist/ToExcel/ExcelConvert.d.ts +0 -2
- package/dist/ToExcel/ExcelFile.d.ts +1 -1
- package/dist/common/ToolbarItem.d.ts +1 -1
- package/dist/common/Transform.d.ts +1 -1
- package/dist/index.esm.js +1253 -12
- package/dist/index.js +1253 -12
- package/package.json +1 -1
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import ExcelJS from "exceljs";
|
|
2
2
|
declare const fillConvert: (bg: string) => ExcelJS.Fill | null;
|
|
3
3
|
declare const fontConvert: (ff?: string, fc?: string, bl?: number, it?: number, fs?: number, cl?: number, ul?: number) => {
|
|
4
|
-
name: string;
|
|
5
|
-
family: number;
|
|
6
4
|
size: number;
|
|
7
5
|
color: {
|
|
8
6
|
argb: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function exportSheetExcel(luckysheetRef: any): Promise<void>;
|
|
1
|
+
export declare function exportSheetExcel(luckysheetRef: any, fileName: string): Promise<void>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const transformExcelToFortune: (e: any, setSheets: any, setKey: any, sheetRef: any) => Promise<void>;
|
|
2
|
-
export declare const transformFortuneToExcel: (luckysheetRef: any) => Promise<void>;
|
|
2
|
+
export declare const transformFortuneToExcel: (luckysheetRef: any, fileName: string) => Promise<void>;
|