fui-material 1.0.8-beta → 1.0.10-beta
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 +7 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/function-elements/index.d.ts +0 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/function-elements/index.d.ts +0 -1
- package/dist/index.d.ts +1 -10
- package/package.json +2 -5
|
@@ -2,6 +2,5 @@ export { default as fAlert } from "./fAlert";
|
|
|
2
2
|
export { default as fConfirm } from "./fConfirm";
|
|
3
3
|
export { default as fPrompt } from "./fPrompt";
|
|
4
4
|
export { default as fExportTableToExcel } from "./fExportTableToExcel";
|
|
5
|
-
export { default as fExportHtmlOrJsxToWord } from "./fExportHtmlOrJsxToWord";
|
|
6
5
|
export { default as fNotification } from "./Notification/fNotification";
|
|
7
6
|
export { default as fNotificationDelete } from "./Notification/fNotificationDelete";
|
package/dist/index.d.ts
CHANGED
|
@@ -692,15 +692,6 @@ interface IfExportTableToExcel {
|
|
|
692
692
|
}
|
|
693
693
|
declare const fExportTableToExcel: ({ tableId, fileName, jsxElement }: IfExportTableToExcel) => Promise<boolean>;
|
|
694
694
|
|
|
695
|
-
interface IfExportHtmlOrJsxToWord {
|
|
696
|
-
tableId?: string;
|
|
697
|
-
fileName: string;
|
|
698
|
-
jsxElement?: JSX.Element;
|
|
699
|
-
format?: 'A4' | 'A3' | 'A2' | 'A1';
|
|
700
|
-
orientation?: 'landscape' | 'vertical';
|
|
701
|
-
}
|
|
702
|
-
declare const fExportHtmlOrJsxToWord: ({ tableId, fileName, jsxElement, format, orientation }: IfExportHtmlOrJsxToWord) => Promise<boolean>;
|
|
703
|
-
|
|
704
695
|
interface IfNotification {
|
|
705
696
|
title?: string;
|
|
706
697
|
body: string;
|
|
@@ -712,4 +703,4 @@ declare const fNotification: ({ title, body, variant, timeSecClose, buttonClose,
|
|
|
712
703
|
|
|
713
704
|
declare const fNotificationDelete: (id: string) => void;
|
|
714
705
|
|
|
715
|
-
export { FAccordion, FAlert, FArrowIcon, FButton, FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FCopyAddIcon, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDocumentIcon, 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,
|
|
706
|
+
export { FAccordion, FAlert, FArrowIcon, FButton, FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FCopyAddIcon, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDocumentIcon, 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, fNotification, fNotificationDelete, fPrompt };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fui-material",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10-beta",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -10,12 +10,10 @@
|
|
|
10
10
|
"@types/node": "^18.11.18",
|
|
11
11
|
"@types/react": "^18.0.25",
|
|
12
12
|
"@types/react-dom": "^18.0.9",
|
|
13
|
-
"jszip": "^3.10.1",
|
|
14
13
|
"react": "^18.2.0",
|
|
15
14
|
"react-dom": "^18.2.0",
|
|
16
15
|
"react-scripts": "5.0.1",
|
|
17
|
-
"typescript": "^4.9.3"
|
|
18
|
-
"xlsx": "^0.18.5"
|
|
16
|
+
"typescript": "^4.9.3"
|
|
19
17
|
},
|
|
20
18
|
"scripts": {
|
|
21
19
|
"build": "rollup -c",
|
|
@@ -46,7 +44,6 @@
|
|
|
46
44
|
"@rollup/plugin-image": "^3.0.2",
|
|
47
45
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
48
46
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
49
|
-
"@types/jszip": "^3.4.1",
|
|
50
47
|
"bootstrap": "^5.2.2",
|
|
51
48
|
"rollup": "^2.60.0",
|
|
52
49
|
"rollup-plugin-copy": "^3.5.0",
|