gearboxdownloadmodal 9.5.17 → 9.5.18
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.
|
@@ -34,6 +34,7 @@ interface CardProps {
|
|
|
34
34
|
downloadableVersionIds: string[];
|
|
35
35
|
setDownloadableVersionIds: (ids: string[]) => void;
|
|
36
36
|
selectedGtmThresholds: number[];
|
|
37
|
+
allSelectedIds: string[];
|
|
37
38
|
}
|
|
38
39
|
declare const GearboxAICard: FC<CardProps>;
|
|
39
40
|
export default GearboxAICard;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MAX_ALLOWED_SELECTABLE_NETWORKS = 15;
|
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "gearboxdownloadmodal",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "9.5.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.umd.js",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.es.js",
|
|
12
|
-
"require": "./dist/index.umd.js"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"/dist"
|
|
17
|
-
],
|
|
18
|
-
"peerDependencies": {
|
|
19
|
-
"react": "^18.2.0 || ^19.2.3",
|
|
20
|
-
"react-dom": "^18.2.0 || ^19.2.3"
|
|
21
|
-
},
|
|
22
|
-
"publishConfig": {
|
|
23
|
-
"access": "public"
|
|
24
|
-
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"dev": "vite",
|
|
27
|
-
"build": "tsc && vite build",
|
|
28
|
-
"prepare": "npm run build",
|
|
29
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
30
|
-
"preview": "vite preview",
|
|
31
|
-
"publish:v8": "npm publish --tag previous"
|
|
32
|
-
},
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"axios": "^1.5.0",
|
|
35
|
-
"classnames": "^2.3.2",
|
|
36
|
-
"i18next": "^23.16.4",
|
|
37
|
-
"jotai": "^2.9.1",
|
|
38
|
-
"nanoid": "^3.3.1",
|
|
39
|
-
"path": "^0.12.7",
|
|
40
|
-
"react": "^19.2.3",
|
|
41
|
-
"react-dom": "^19.2.3",
|
|
42
|
-
"react-modal": "^3.16.1",
|
|
43
|
-
"react-qr-code": "^2.0.12",
|
|
44
|
-
"react-toastify": "^9.1.3",
|
|
45
|
-
"socket.io-client": "^4.8.1",
|
|
46
|
-
"typescript-cookie": "^1.0.6"
|
|
47
|
-
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"@types/react": "^19.2.7",
|
|
50
|
-
"@types/react-dom": "^19.2.3",
|
|
51
|
-
"@types/react-modal": "^3.16.0",
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
53
|
-
"@typescript-eslint/parser": "^6.0.0",
|
|
54
|
-
"@vitejs/plugin-react": "^4.0.3",
|
|
55
|
-
"autoprefixer": "^10.4.16",
|
|
56
|
-
"eslint": "^8.45.0",
|
|
57
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
58
|
-
"eslint-plugin-react-refresh": "^0.4.3",
|
|
59
|
-
"postcss": "^8.4.30",
|
|
60
|
-
"tailwindcss": "^3.3.3",
|
|
61
|
-
"tailwindcss-scoped-preflight": "^3.5.7",
|
|
62
|
-
"typescript": "^5.0.2",
|
|
63
|
-
"vite": "^4.4.5",
|
|
64
|
-
"vite-plugin-dts": "^3.5.4",
|
|
65
|
-
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
66
|
-
}
|
|
67
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "gearboxdownloadmodal",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "9.5.18",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.umd.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.es.js",
|
|
12
|
+
"require": "./dist/index.umd.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"/dist"
|
|
17
|
+
],
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"react": "^18.2.0 || ^19.2.3",
|
|
20
|
+
"react-dom": "^18.2.0 || ^19.2.3"
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build": "tsc && vite build",
|
|
28
|
+
"prepare": "npm run build",
|
|
29
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
30
|
+
"preview": "vite preview",
|
|
31
|
+
"publish:v8": "npm publish --tag previous"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"axios": "^1.5.0",
|
|
35
|
+
"classnames": "^2.3.2",
|
|
36
|
+
"i18next": "^23.16.4",
|
|
37
|
+
"jotai": "^2.9.1",
|
|
38
|
+
"nanoid": "^3.3.1",
|
|
39
|
+
"path": "^0.12.7",
|
|
40
|
+
"react": "^19.2.3",
|
|
41
|
+
"react-dom": "^19.2.3",
|
|
42
|
+
"react-modal": "^3.16.1",
|
|
43
|
+
"react-qr-code": "^2.0.12",
|
|
44
|
+
"react-toastify": "^9.1.3",
|
|
45
|
+
"socket.io-client": "^4.8.1",
|
|
46
|
+
"typescript-cookie": "^1.0.6"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/react": "^19.2.7",
|
|
50
|
+
"@types/react-dom": "^19.2.3",
|
|
51
|
+
"@types/react-modal": "^3.16.0",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
53
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
54
|
+
"@vitejs/plugin-react": "^4.0.3",
|
|
55
|
+
"autoprefixer": "^10.4.16",
|
|
56
|
+
"eslint": "^8.45.0",
|
|
57
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
58
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
59
|
+
"postcss": "^8.4.30",
|
|
60
|
+
"tailwindcss": "^3.3.3",
|
|
61
|
+
"tailwindcss-scoped-preflight": "^3.5.7",
|
|
62
|
+
"typescript": "^5.0.2",
|
|
63
|
+
"vite": "^4.4.5",
|
|
64
|
+
"vite-plugin-dts": "^3.5.4",
|
|
65
|
+
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
66
|
+
}
|
|
67
|
+
}
|