gearboxdownloadmodal 5.0.36 → 5.0.38

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.
@@ -23,6 +23,7 @@ interface CardProps {
23
23
  flexDownloadCount: any;
24
24
  disabled: boolean;
25
25
  user: any;
26
+ setSafariCopyLink: any;
26
27
  }
27
28
  declare const Card: FC<CardProps>;
28
29
  export default Card;
@@ -16,6 +16,7 @@ interface CardSectionProps {
16
16
  game: any;
17
17
  flexDownloadCount: any;
18
18
  disabled: any;
19
+ setSafariCopyLink: any;
19
20
  }
20
21
  declare const CardSection: FC<CardSectionProps>;
21
22
  export default CardSection;
@@ -12,6 +12,7 @@ interface NetworksProps {
12
12
  fetchFileUrl: string;
13
13
  fileSize: any;
14
14
  setFileSize: any;
15
+ setSafariCopyLink: any;
15
16
  }
16
17
  declare const Networks: FC<NetworksProps>;
17
18
  export default Networks;
@@ -7,6 +7,7 @@ interface PreviewProps {
7
7
  iframeUrl: string;
8
8
  fetchFileUrl: string;
9
9
  copyLinkUrl: string;
10
+ setSafariCopyLink: any;
10
11
  }
11
12
  declare const Preview: FC<PreviewProps>;
12
13
  export default Preview;
@@ -5,6 +5,7 @@ interface QrcodeProps {
5
5
  api: string;
6
6
  fetchFileUrl: string;
7
7
  copyLinkUrl: string;
8
+ setSafariCopyLink: any;
8
9
  }
9
10
  declare global {
10
11
  interface Window {
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ interface SafariCopyLinkModalProps {
3
+ onClose: () => void;
4
+ url: string;
5
+ }
6
+ declare const SafariCopyLinkModal: FC<SafariCopyLinkModalProps>;
7
+ export default SafariCopyLinkModal;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gearboxdownloadmodal",
3
3
  "private": false,
4
- "version": "5.0.36",
4
+ "version": "5.0.38",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.esm.js",