fui-material 0.2.84 → 0.2.86
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 +3 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/function-elements/fExportTableToExcel/fExportTableToExcel.d.ts +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export interface IfExportTableToExcel {
|
|
2
|
-
tableId
|
|
2
|
+
tableId?: string;
|
|
3
3
|
fileName: string;
|
|
4
|
+
htmlCode?: string;
|
|
4
5
|
}
|
|
5
|
-
declare const fExportTableToExcel: ({ tableId, fileName }: IfExportTableToExcel) => Promise<boolean>;
|
|
6
|
+
declare const fExportTableToExcel: ({ tableId, fileName, htmlCode }: IfExportTableToExcel) => Promise<boolean>;
|
|
6
7
|
export default fExportTableToExcel;
|
package/dist/index.d.ts
CHANGED
|
@@ -674,9 +674,10 @@ interface IfPrompt {
|
|
|
674
674
|
declare const fPrompt: ({ title, body }: IfPrompt) => Promise<string | null>;
|
|
675
675
|
|
|
676
676
|
interface IfExportTableToExcel {
|
|
677
|
-
tableId
|
|
677
|
+
tableId?: string;
|
|
678
678
|
fileName: string;
|
|
679
|
+
htmlCode?: string;
|
|
679
680
|
}
|
|
680
|
-
declare const fExportTableToExcel: ({ tableId, fileName }: IfExportTableToExcel) => Promise<boolean>;
|
|
681
|
+
declare const fExportTableToExcel: ({ tableId, fileName, htmlCode }: IfExportTableToExcel) => Promise<boolean>;
|
|
681
682
|
|
|
682
683
|
export { FAccordion, FAlert, FArrowIcon, FButton, FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FCopyAddIcon, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDownloadIcon, FDropdown, FDropdownItem, FFile, FFilterIcon, FFullDateField, FGrid, FInputFileForm, FListIcon, FLoadIcon, FNative, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSearchBox, FSelect, FSelectItem, FSelectSearchDb, FStack, FTab, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTabs, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon, FUnlinkIcon, fAlert, fConfirm, fExportTableToExcel, fPrompt };
|