gearboxdownloadmodal 6.0.45 → 6.0.47

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.
@@ -0,0 +1,6 @@
1
+ export declare const customUrlAtom: import("jotai").PrimitiveAtom<string> & {
2
+ init: string;
3
+ };
4
+ export declare const customUrlModalAtom: import("jotai").PrimitiveAtom<boolean> & {
5
+ init: boolean;
6
+ };
@@ -20,7 +20,6 @@ interface CardSectionProps {
20
20
  isTest?: boolean;
21
21
  urlType: string;
22
22
  allNetworksSelected: boolean;
23
- setAllNetworksSelected: (bool: boolean) => void;
24
23
  cdnModal: boolean;
25
24
  setCdnModal: (bool: boolean) => void;
26
25
  cdnUrl: string;
@@ -0,0 +1,2 @@
1
+ declare const URLModal: ({ onClose, url }: any) => import("react/jsx-runtime").JSX.Element;
2
+ export default URLModal;
@@ -2,29 +2,34 @@ export declare enum TextColorStyle {
2
2
  "Flex" = "text-[#7101FF]",
3
3
  "Playable" = "text-[#F9830B]",
4
4
  "Import" = "text-[#00a3ff]",
5
- "Ready" = "text-[#0060A5]"
5
+ "Ready" = "text-[#0060A5]",
6
+ "Fusion" = "text-[#171717]"
6
7
  }
7
8
  export declare enum BorderColorStyle {
8
9
  "Flex" = "border-[#7101FF]",
9
10
  "Playable" = "border-[#F9830B]",
10
11
  "Import" = "border-[#00a3ff]",
11
- "Ready" = "border-[#0060A5]"
12
+ "Ready" = "border-[#0060A5]",
13
+ "Fusion" = "text-[#171717]"
12
14
  }
13
15
  export declare enum ColorStyle {
14
16
  "Flex" = "#7101FF",
15
17
  "Playable" = "#F9830B",
16
18
  "Import" = "#00a3ff",
17
- "Ready" = "#0060A5"
19
+ "Ready" = "#0060A5",
20
+ "Fusion" = "#171717"
18
21
  }
19
22
  export declare enum BackgroundColorStyle {
20
23
  "Flex" = "bg-[#7101FF]",
21
24
  "Playable" = "bg-[#F9830B]",
22
25
  "Import" = "bg-[#00a3ff]",
23
- "Ready" = "bg-[#0060A5]"
26
+ "Ready" = "bg-[#0060A5]",
27
+ "Fusion" = "bg-[#171717]"
24
28
  }
25
29
  export declare enum CheckBoxAccentColor {
26
30
  "Flex" = "accent-[#7101FF]",
27
31
  "Playable" = "accent-[#F9830B]",
28
32
  "Import" = "accent-[#00a3ff]",
29
- "Ready" = "accent-[#0060A5]"
33
+ "Ready" = "accent-[#0060A5]",
34
+ "Fusion" = "accent-[#171717]"
30
35
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gearboxdownloadmodal",
3
3
  "private": false,
4
- "version": "6.0.45",
4
+ "version": "6.0.47",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.esm.js",
@@ -29,6 +29,7 @@
29
29
  "axios": "^1.5.0",
30
30
  "classnames": "^2.3.2",
31
31
  "gearboxdownloadmodal": "^5.0.22",
32
+ "jotai": "^2.9.1",
32
33
  "nanoid": "^3.3.1",
33
34
  "path": "^0.12.7",
34
35
  "react": "^18.2.0",
@@ -55,4 +56,4 @@
55
56
  "vite": "^4.4.5",
56
57
  "vite-plugin-dts": "^3.5.4"
57
58
  }
58
- }
59
+ }