affiliate-front-shared 1.3.31 → 1.3.32
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/README.md +75 -75
- package/dist/components/two-factor-popup/SelectOtherMethod.d.ts +14 -0
- package/dist/components/two-factor-popup/TwoFactorPopup.d.ts +16 -6
- package/dist/components/two-factor-popup/style.d.ts +1 -0
- package/dist/index.cjs +159 -155
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1605 -1550
- package/dist/index.mjs.map +1 -1
- package/package.json +60 -60
package/package.json
CHANGED
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "affiliate-front-shared",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "./dist/index.cjs",
|
|
6
|
-
"module": "./dist/index.mjs",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"import": "./dist/index.mjs",
|
|
11
|
-
"require": "./dist/index.cjs",
|
|
12
|
-
"types": "./dist/index.d.ts"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"sideEffects": false,
|
|
19
|
-
"scripts": {
|
|
20
|
-
"dev": "vite",
|
|
21
|
-
"build": "tsc -b && vite build",
|
|
22
|
-
"lint": "eslint .",
|
|
23
|
-
"preview": "vite preview",
|
|
24
|
-
"format": "prettier --write ."
|
|
25
|
-
},
|
|
26
|
-
"peerDependencies": {
|
|
27
|
-
"@geist-ui/react": "^2.2.5",
|
|
28
|
-
"@react-oauth/google": "^0.13.4",
|
|
29
|
-
"antd": "^5.24.2",
|
|
30
|
-
"echarts": "^5.6.0",
|
|
31
|
-
"i18next-browser-languagedetector": "^8.2.0",
|
|
32
|
-
"i18next-http-backend": "^3.0.2",
|
|
33
|
-
"lodash": "^4.17.21",
|
|
34
|
-
"react": "^18.2.0",
|
|
35
|
-
"react-dom": "^18.2.0",
|
|
36
|
-
"react-i18next": "^16.5.4",
|
|
37
|
-
"react-router": "^7.2.0",
|
|
38
|
-
"styled-components": "^6.1.15",
|
|
39
|
-
"xlsx": "^0.18.5",
|
|
40
|
-
"zustand": "^5.0.3"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@eslint/js": "^9.21.0",
|
|
44
|
-
"@types/lodash": "^4.17.18",
|
|
45
|
-
"@types/node": "^24.9.1",
|
|
46
|
-
"@types/react": "^18.0.0",
|
|
47
|
-
"@types/react-dom": "^18.0.0",
|
|
48
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
49
|
-
"eslint": "^9.21.0",
|
|
50
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
51
|
-
"eslint-plugin-react-refresh": "^0.4.19",
|
|
52
|
-
"globals": "^15.15.0",
|
|
53
|
-
"prettier": "^3.5.3",
|
|
54
|
-
"typescript": "~5.7.2",
|
|
55
|
-
"typescript-eslint": "^8.24.1",
|
|
56
|
-
"vite": "^6.2.0",
|
|
57
|
-
"vite-plugin-dts": "^4.5.4",
|
|
58
|
-
"vite-plugin-svgr": "^4.3.0"
|
|
59
|
-
}
|
|
60
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "affiliate-front-shared",
|
|
3
|
+
"version": "1.3.32",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.cjs",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc -b && vite build",
|
|
22
|
+
"lint": "eslint .",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"format": "prettier --write ."
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@geist-ui/react": "^2.2.5",
|
|
28
|
+
"@react-oauth/google": "^0.13.4",
|
|
29
|
+
"antd": "^5.24.2",
|
|
30
|
+
"echarts": "^5.6.0",
|
|
31
|
+
"i18next-browser-languagedetector": "^8.2.0",
|
|
32
|
+
"i18next-http-backend": "^3.0.2",
|
|
33
|
+
"lodash": "^4.17.21",
|
|
34
|
+
"react": "^18.2.0",
|
|
35
|
+
"react-dom": "^18.2.0",
|
|
36
|
+
"react-i18next": "^16.5.4",
|
|
37
|
+
"react-router": "^7.2.0",
|
|
38
|
+
"styled-components": "^6.1.15",
|
|
39
|
+
"xlsx": "^0.18.5",
|
|
40
|
+
"zustand": "^5.0.3"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@eslint/js": "^9.21.0",
|
|
44
|
+
"@types/lodash": "^4.17.18",
|
|
45
|
+
"@types/node": "^24.9.1",
|
|
46
|
+
"@types/react": "^18.0.0",
|
|
47
|
+
"@types/react-dom": "^18.0.0",
|
|
48
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
49
|
+
"eslint": "^9.21.0",
|
|
50
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
51
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
52
|
+
"globals": "^15.15.0",
|
|
53
|
+
"prettier": "^3.5.3",
|
|
54
|
+
"typescript": "~5.7.2",
|
|
55
|
+
"typescript-eslint": "^8.24.1",
|
|
56
|
+
"vite": "^6.2.0",
|
|
57
|
+
"vite-plugin-dts": "^4.5.4",
|
|
58
|
+
"vite-plugin-svgr": "^4.3.0"
|
|
59
|
+
}
|
|
60
|
+
}
|