@inntechcorp/it-design 3.1.15 → 3.1.17

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.
@@ -20,6 +20,7 @@ export declare enum FileTypes {
20
20
  GIF = "image/gif",
21
21
  WEBP = "image/webp",
22
22
  PDF = "application/pdf",
23
+ XLSX = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
23
24
  OTF = "font/otf"
24
25
  }
25
26
  export declare enum FileExtensions {
@@ -29,6 +30,7 @@ export declare enum FileExtensions {
29
30
  GIF = ".gif",
30
31
  WEBP = ".webp",
31
32
  PDF = ".pdf",
33
+ XLSX = ".xlsx",
32
34
  OTF = ".otf"
33
35
  }
34
36
  export declare enum FormValidations {
@@ -1,2 +1,2 @@
1
1
  import { FileTypes, FileExtensions } from "../../index";
2
- export default function GetTypeByFileType(type: FileTypes): FileExtensions.SVG | FileExtensions.PNG | FileExtensions.GIF | FileExtensions.WEBP | FileExtensions.PDF | FileExtensions.OTF | ".jpg, .jpeg" | "";
2
+ export default function GetTypeByFileType(type: FileTypes): FileExtensions.SVG | FileExtensions.PNG | FileExtensions.GIF | FileExtensions.WEBP | FileExtensions.PDF | FileExtensions.XLSX | FileExtensions.OTF | ".jpg, .jpeg" | "";
@@ -0,0 +1,6 @@
1
+ declare const FileDocument: ({ width, height, fill }: {
2
+ width?: number;
3
+ height?: number;
4
+ fill?: string;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export default FileDocument;
@@ -0,0 +1,5 @@
1
+ declare const FileExcel: ({ width, height }: {
2
+ width?: number;
3
+ height?: number;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export default FileExcel;
@@ -0,0 +1,5 @@
1
+ declare const FilePdf: ({ width, height }: {
2
+ width?: number;
3
+ height?: number;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export default FilePdf;
@@ -9,3 +9,6 @@ export { default as ZoomIn } from './ZoomIn';
9
9
  export { default as ZoomOut } from './ZoomOut';
10
10
  export { default as Picture } from './Picture';
11
11
  export { default as NoData } from './NoData';
12
+ export { default as FileDocument } from './FileDocument';
13
+ export { default as FileExcel } from './FileExcel';
14
+ export { default as FilePdf } from './FilePdf';