@ioca/react 1.0.1 → 1.0.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/README.md +2 -1
- package/lib/css/index.css +3 -0
- package/lib/css/index.css.map +1 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -0
- package/lib/types/index.d.ts +741 -0
- package/package.json +86 -82
package/package.json
CHANGED
|
@@ -1,84 +1,88 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
2
|
+
"name": "@ioca/react",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite",
|
|
7
|
+
"build": "tsc && vite build",
|
|
8
|
+
"preview": "vite preview",
|
|
9
|
+
"make": "node templates/index.js",
|
|
10
|
+
"lib": "tsc && npx rollup -c"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@ricons/material": "^0.12.0",
|
|
14
|
+
"radash": "^12.1.0",
|
|
15
|
+
"classnames": "^2.5.1",
|
|
16
|
+
"ahooks": "^3.8.1",
|
|
17
|
+
"dayjs": "^1.11.13",
|
|
18
|
+
"pubsub-js": "^1.9.5",
|
|
19
|
+
"rc-virtual-list": "^3.15.0",
|
|
20
|
+
"react": "^18.3.1",
|
|
21
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
22
|
+
"react-dom": "^18.3.1",
|
|
23
|
+
"react-router-dom": "^6.28.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
27
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
28
|
+
"@rollup/plugin-typescript": "^12.1.1",
|
|
29
|
+
"@types/mockjs": "^1.0.10",
|
|
30
|
+
"@types/node": "^22.10.1",
|
|
31
|
+
"@types/pubsub-js": "^1.8.5",
|
|
32
|
+
"@types/react": "18.2.52",
|
|
33
|
+
"@types/react-dom": "^18.3.1",
|
|
34
|
+
"@vitejs/plugin-react": "^4.3.3",
|
|
35
|
+
"mockjs": "^1.1.0",
|
|
36
|
+
"path": "^0.12.7",
|
|
37
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
38
|
+
"rollup": "^4.28.0",
|
|
39
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
40
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
41
|
+
"rollup-plugin-scss": "^4.0.0",
|
|
42
|
+
"sass": "^1.18.0",
|
|
43
|
+
"typescript": "^5.7.2",
|
|
44
|
+
"vite": "^6.0.2",
|
|
45
|
+
"vite-plugin-dynamic-import": "^1.6.0"
|
|
46
|
+
},
|
|
47
|
+
"main": "./lib/index.js",
|
|
48
|
+
"module": "./lib/index.js",
|
|
49
|
+
"types": "./lib/types/index.d.ts",
|
|
50
|
+
"exports": {
|
|
51
|
+
".": {
|
|
52
|
+
"default": "./lib/index.js",
|
|
53
|
+
"import": "./lib/index.js",
|
|
54
|
+
"types": "./lib/types/index.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./types": {
|
|
57
|
+
"import": "./lib/types/index.d.ts"
|
|
58
|
+
},
|
|
59
|
+
"./index.css": {
|
|
60
|
+
"import": "./lib/css/index.css"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"lib"
|
|
65
|
+
],
|
|
66
|
+
"publishConfig": {
|
|
67
|
+
"access": "public"
|
|
68
|
+
},
|
|
69
|
+
"license": "MIT",
|
|
70
|
+
"description": "<p align=\"center\">\r <a href=\"https://www.npmjs.org/package/@ioca/react\">\r <img src=\"https://img.shields.io/npm/v/@ioca/react.svg\">\r </a>\r </p>",
|
|
71
|
+
"directories": {
|
|
72
|
+
"doc": "docs"
|
|
73
|
+
},
|
|
74
|
+
"repository": {
|
|
75
|
+
"type": "git",
|
|
76
|
+
"url": "git+https://github.com/MunGaaKei/ioca-react.git"
|
|
77
|
+
},
|
|
78
|
+
"keywords": [
|
|
79
|
+
"ioca",
|
|
80
|
+
"react",
|
|
81
|
+
"ui"
|
|
82
|
+
],
|
|
83
|
+
"author": "iannman",
|
|
84
|
+
"bugs": {
|
|
85
|
+
"url": "https://github.com/MunGaaKei/ioca-react/issues"
|
|
86
|
+
},
|
|
87
|
+
"homepage": "https://github.com/MunGaaKei/ioca-react#readme"
|
|
84
88
|
}
|