fui-material 0.2.86 → 0.2.88
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/function-elements/fExportTableToExcel/fExportTableToExcel.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/function-elements/fExportTableToExcel/fExportTableToExcel.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export interface IfExportTableToExcel {
|
|
2
2
|
tableId?: string;
|
|
3
3
|
fileName: string;
|
|
4
|
-
htmlCode?:
|
|
4
|
+
htmlCode?: HTMLElement;
|
|
5
5
|
}
|
|
6
6
|
declare const fExportTableToExcel: ({ tableId, fileName, htmlCode }: IfExportTableToExcel) => Promise<boolean>;
|
|
7
7
|
export default fExportTableToExcel;
|
package/dist/index.d.ts
CHANGED
|
@@ -676,7 +676,7 @@ declare const fPrompt: ({ title, body }: IfPrompt) => Promise<string | null>;
|
|
|
676
676
|
interface IfExportTableToExcel {
|
|
677
677
|
tableId?: string;
|
|
678
678
|
fileName: string;
|
|
679
|
-
htmlCode?:
|
|
679
|
+
htmlCode?: HTMLElement;
|
|
680
680
|
}
|
|
681
681
|
declare const fExportTableToExcel: ({ tableId, fileName, htmlCode }: IfExportTableToExcel) => Promise<boolean>;
|
|
682
682
|
|