gearboxdownloadmodal 8.3.1 → 8.3.3
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.
- package/dist/index.es.js +4358 -4295
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/CardButton.d.ts +1 -0
- package/dist/src/components/EditNetworksModal.d.ts +1 -0
- package/dist/src/components/IframeName.d.ts +1 -0
- package/dist/src/components/MolocoModal.d.ts +1 -1
- package/dist/src/components/TopBar.d.ts +1 -0
- package/dist/src/components/TopBarNetworkTitle.d.ts +1 -0
- package/dist/src/services/findCustomer.d.ts +3 -1
- package/dist/src/services/findGame.d.ts +13 -1
- package/dist/src/services/getNetworks.d.ts +1 -1
- package/dist/src/types/Customer.d.ts +10 -5
- package/dist/src/utils/color.d.ts +36 -0
- package/package.json +1 -2
|
@@ -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 +1,13 @@
|
|
|
1
|
-
export default function findGame(id: string, api: string): Promise<
|
|
1
|
+
export default function findGame(id: string, api: string): Promise<{
|
|
2
|
+
_id: string;
|
|
3
|
+
customer: string;
|
|
4
|
+
name: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
iosUrl: string;
|
|
7
|
+
googleUrl: string;
|
|
8
|
+
isPlayable: boolean;
|
|
9
|
+
isReady: boolean;
|
|
10
|
+
isFlex: boolean;
|
|
11
|
+
createdAt: string;
|
|
12
|
+
updatedAt: string;
|
|
13
|
+
} | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function getNetworks(api: string, typeOfProduct: string, versionId: string
|
|
1
|
+
export default function getNetworks(api: string, typeOfProduct: string, versionId: string): Promise<any>;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
export default interface Customer {
|
|
2
|
-
_id: string;
|
|
3
|
-
name: string;
|
|
4
|
-
note: string;
|
|
5
|
-
icon: string;
|
|
6
|
-
createdAt: string;
|
|
7
2
|
active: boolean;
|
|
3
|
+
createdAt: string;
|
|
8
4
|
customerType: string;
|
|
5
|
+
demoEndDate: string;
|
|
6
|
+
email: string;
|
|
7
|
+
expiresAt: string;
|
|
8
|
+
hasAuditLogs: boolean;
|
|
9
|
+
isDeleted: boolean;
|
|
10
|
+
name: string;
|
|
11
|
+
note: string;
|
|
9
12
|
networks?: string[];
|
|
13
|
+
sector: string;
|
|
14
|
+
_id: string;
|
|
10
15
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "8.3.3",
|
|
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",
|