gearboxdownloadmodal 8.3.2 → 8.3.4

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.
@@ -8,6 +8,7 @@ interface CardButtonProps {
8
8
  disabled?: boolean;
9
9
  variant?: "primary" | "secondary";
10
10
  typeOfProduct?: string;
11
+ isCopied?: boolean;
11
12
  }
12
13
  declare const CardButton: FC<CardButtonProps>;
13
14
  export default CardButton;
@@ -1,6 +1,7 @@
1
1
  import { FC } from 'react';
2
2
 
3
3
  interface IframeNameProps {
4
+ typeOfProduct: string;
4
5
  name: string;
5
6
  versionId?: string;
6
7
  api?: string;
@@ -1,2 +1,2 @@
1
- declare const MolocoModal: ({ onClose, handleDownload, handleDownloadMolocoTest, downloadingMoloco, downloadingMolocoTest, downloadingMolocoHtml, }: any) => import("react/jsx-runtime").JSX.Element;
1
+ declare const MolocoModal: ({ onClose, handleDownload, handleDownloadMolocoTest, downloadingMoloco, downloadingMolocoTest, downloadingMolocoHtml, isCopiedMolocoTest, }: any) => import("react/jsx-runtime").JSX.Element;
2
2
  export default MolocoModal;
@@ -1,2 +1,2 @@
1
- declare const UrlConfirmModal: ({ onClose, iosLink, googleLink, buttonType, handleCopyLink, download, }: any) => import("react/jsx-runtime").JSX.Element;
1
+ declare const UrlConfirmModal: ({ onClose, iosLink, googleLink, buttonType, handleCopyLink, download, typeOfProduct, }: any) => import("react/jsx-runtime").JSX.Element;
2
2
  export default UrlConfirmModal;
@@ -33,3 +33,39 @@ export declare enum CheckBoxAccentColor {
33
33
  "Ready" = "accent-[#0060A5]",
34
34
  "Fusion" = "accent-[#171717]"
35
35
  }
36
+ export declare enum GradientStyle {
37
+ "Fusion" = "linear-gradient(to right, #651FFF, #5018CC)",
38
+ "Ready" = "linear-gradient(to right, #3b82f6, #2563eb)",
39
+ "Playable" = "linear-gradient(to right, #f97316, #ea580c)",
40
+ "Flex" = "linear-gradient(to right, #AD1BFF, #8B15CC)"
41
+ }
42
+ export declare enum ShadowStyle {
43
+ "Fusion" = "shadow-[#651FFF]/30",
44
+ "Ready" = "shadow-blue-500/30",
45
+ "Playable" = "shadow-orange-500/30",
46
+ "Flex" = "shadow-[#AD1BFF]/30"
47
+ }
48
+ export declare enum HoverGradientStyle {
49
+ "Fusion" = "hover:from-[#5018CC] hover:to-[#4013AA] hover:shadow-[#651FFF]/40",
50
+ "Ready" = "hover:from-blue-600 hover:to-blue-700 hover:shadow-blue-500/40",
51
+ "Playable" = "hover:from-orange-600 hover:to-orange-700 hover:shadow-orange-500/40",
52
+ "Flex" = "hover:from-[#8B15CC] hover:to-[#7011AA] hover:shadow-[#AD1BFF]/40"
53
+ }
54
+ export declare enum ShadowColorStyle {
55
+ "Fusion" = "rgba(101, 31, 255, 0.3)",
56
+ "Ready" = "rgba(59, 130, 246, 0.3)",
57
+ "Playable" = "rgba(249, 115, 22, 0.3)",
58
+ "Flex" = "rgba(173, 27, 255, 0.3)"
59
+ }
60
+ export declare enum HoverGradientInlineStyle {
61
+ "Fusion" = "linear-gradient(to right, #5018CC, #4013AA)",
62
+ "Ready" = "linear-gradient(to right, #2563eb, #1d4ed8)",
63
+ "Playable" = "linear-gradient(to right, #ea580c, #c2410c)",
64
+ "Flex" = "linear-gradient(to right, #8B15CC, #7011AA)"
65
+ }
66
+ export declare enum HoverShadowColorStyle {
67
+ "Fusion" = "rgba(101, 31, 255, 0.4)",
68
+ "Ready" = "rgba(59, 130, 246, 0.4)",
69
+ "Playable" = "rgba(249, 115, 22, 0.4)",
70
+ "Flex" = "rgba(173, 27, 255, 0.4)"
71
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gearboxdownloadmodal",
3
3
  "private": false,
4
- "version": "8.3.2",
4
+ "version": "8.3.4",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.esm.js",
@@ -28,7 +28,6 @@
28
28
  "dependencies": {
29
29
  "axios": "^1.5.0",
30
30
  "classnames": "^2.3.2",
31
- "gearboxdownloadmodal": "^5.0.22",
32
31
  "i18next": "^23.16.4",
33
32
  "jotai": "^2.9.1",
34
33
  "nanoid": "^3.3.1",