gearboxdownloadmodal 5.0.94 → 5.0.95

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.
@@ -2,6 +2,7 @@ import { FC } from "react";
2
2
  interface DownloadMonitorProps {
3
3
  width: number;
4
4
  height: number;
5
+ fill: string;
5
6
  }
6
7
  declare const DownloadMonitor: FC<DownloadMonitorProps>;
7
8
  export default DownloadMonitor;
@@ -3,6 +3,7 @@ interface FileSizeModalProps {
3
3
  setIsExceedingFileSizeAccepted: Dispatch<boolean>;
4
4
  closeModal: () => void;
5
5
  setLoading: Dispatch<boolean>;
6
+ typeOfProduct: string;
6
7
  }
7
8
  declare const FileSizeModal: FC<FileSizeModalProps>;
8
9
  export default FileSizeModal;
@@ -15,6 +15,8 @@ interface TopBarProps {
15
15
  user: any;
16
16
  isTest?: boolean;
17
17
  setIsTest?: any;
18
+ urlType: string;
19
+ setUrlType: any;
18
20
  }
19
21
  declare const TopBar: FC<TopBarProps>;
20
22
  export default TopBar;
@@ -14,6 +14,8 @@ interface TopBarInfoProps {
14
14
  user: any;
15
15
  isTest?: boolean;
16
16
  setIsTest?: any;
17
+ urlType: string;
18
+ setUrlType: any;
17
19
  }
18
20
  declare const TopBarInfo: FC<TopBarInfoProps>;
19
21
  export default TopBarInfo;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gearboxdownloadmodal",
3
3
  "private": false,
4
- "version": "5.0.94",
4
+ "version": "5.0.95",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.esm.js",