fui-material 0.2.80 → 0.2.82

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.
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+ import './FExportTableToExcel.css';
3
+ export interface IFExportTableToExcel {
4
+ label: string;
5
+ variant?: 'contained' | 'default';
6
+ color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'link';
7
+ size?: 'btn-lg' | 'btn-sm' | 'btn-xs';
8
+ disabled?: boolean;
9
+ onClick?: React.MouseEventHandler<HTMLButtonElement> | undefined;
10
+ st?: React.CSSProperties;
11
+ className?: string;
12
+ fullWidth?: boolean;
13
+ id?: string;
14
+ idTable: string;
15
+ fileName: string;
16
+ }
17
+ declare const FExportTableToExcel: ({ variant, color, size, disabled, onClick, st, className, fullWidth, id, idTable, fileName, label, }: IFExportTableToExcel) => import("react/jsx-runtime").JSX.Element;
18
+ export default FExportTableToExcel;
@@ -0,0 +1 @@
1
+ export { default } from "./FExportTableToExcel";
@@ -0,0 +1 @@
1
+ export { default as FExportTableToExcel } from "./FExportTableToExcel";
@@ -2,3 +2,4 @@ import "./static/styles/index.css";
2
2
  export * from './material';
3
3
  export * from './icons';
4
4
  export * from './function-elements';
5
+ export * from './export';
package/dist/index.d.ts CHANGED
@@ -672,4 +672,20 @@ interface IfPrompt {
672
672
  }
673
673
  declare const fPrompt: ({ title, body }: IfPrompt) => Promise<string | null>;
674
674
 
675
- 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, fPrompt };
675
+ interface IFExportTableToExcel {
676
+ label: string;
677
+ variant?: 'contained' | 'default';
678
+ color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'link';
679
+ size?: 'btn-lg' | 'btn-sm' | 'btn-xs';
680
+ disabled?: boolean;
681
+ onClick?: React.MouseEventHandler<HTMLButtonElement> | undefined;
682
+ st?: React.CSSProperties;
683
+ className?: string;
684
+ fullWidth?: boolean;
685
+ id?: string;
686
+ idTable: string;
687
+ fileName: string;
688
+ }
689
+ declare const FExportTableToExcel: ({ variant, color, size, disabled, onClick, st, className, fullWidth, id, idTable, fileName, label, }: IFExportTableToExcel) => react_jsx_runtime.JSX.Element;
690
+
691
+ export { FAccordion, FAlert, FArrowIcon, FButton, FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FCopyAddIcon, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDownloadIcon, FDropdown, FDropdownItem, FExportTableToExcel, 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, fPrompt };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fui-material",
3
- "version": "0.2.80",
3
+ "version": "0.2.82",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"