fui-material 0.2.92 → 0.2.94

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 @@
1
+ export declare function generateUniqueId(): string;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function jsxToHtml(element: JSX.Element): Promise<Element | null>;
@@ -0,0 +1 @@
1
+ export declare function generateUniqueId(): string;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function jsxToHtml(element: JSX.Element): Promise<NodeListOf<HTMLTableElement> | null>;
@@ -1,8 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  export interface IfExportTableToExcel {
3
- tableId: string;
3
+ tableId?: string;
4
4
  fileName: string;
5
5
  jsxElement?: JSX.Element;
6
6
  }
7
- declare const fExportTableToExcel: ({ tableId, fileName, jsxElement }: IfExportTableToExcel) => Promise<boolean | undefined>;
7
+ declare const fExportTableToExcel: ({ tableId, fileName, jsxElement }: IfExportTableToExcel) => Promise<boolean>;
8
8
  export default fExportTableToExcel;
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import "../../material/statick/Colors.css";
3
+ export interface IFDocumentIcon {
4
+ color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'link';
5
+ size?: number;
6
+ st?: React.CSSProperties;
7
+ id?: string;
8
+ className?: string;
9
+ handleClick?: () => void;
10
+ file?: 'check' | 'download' | 'upload' | 'close' | 'excel' | 'doc' | 'docx' | 'pdf' | 'jpg' | 'png' | 'txt';
11
+ }
12
+ declare const FDocumentIcon: ({ color, size, st, id, file, className, handleClick }: IFDocumentIcon) => import("react/jsx-runtime").JSX.Element;
13
+ export default FDocumentIcon;
@@ -0,0 +1 @@
1
+ export { default } from "./FDocumentIcon";
@@ -10,3 +10,4 @@ export { default as FCopyAddIcon } from "./FCopyAddIcon";
10
10
  export { default as FUnlinkIcon } from "./FUnlinkIcon";
11
11
  export { default as FFilterIcon } from "./FFilterIcon";
12
12
  export { default as FLoadIcon } from "./FLoadIcon";
13
+ export { default as FDocumentIcon } from "./FDocumentIcon";