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.
- package/dist/index.es.js +3453 -2957
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +24 -24
- package/dist/index.umd.js.map +1 -1
- package/dist/src/atoms.d.ts +6 -0
- package/dist/src/components/CardSection.d.ts +0 -1
- package/dist/src/components/URLModal.d.ts +2 -0
- package/dist/src/utils/color.d.ts +10 -5
- package/package.json +3 -2
|
@@ -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.
|
|
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
|
+
}
|