react-vant-nova 1.0.9 → 1.1.0
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/bundle/index.css +52 -0
- package/bundle/index.min.css +1 -1
- package/bundle/react-vant-nova.es.js +561 -498
- package/bundle/react-vant-nova.js +85 -21
- package/bundle/react-vant-nova.min.js +2 -2
- package/es/avatar/Avatar.d.ts +4 -0
- package/es/avatar/Avatar.js +68 -0
- package/es/avatar/PropsType.d.ts +34 -0
- package/es/avatar/PropsType.js +1 -0
- package/es/avatar/index.d.ts +5 -0
- package/es/avatar/index.js +4 -0
- package/es/avatar/style/index.css +52 -0
- package/es/avatar/style/var.css +0 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/avatar/Avatar.d.ts +4 -0
- package/lib/avatar/Avatar.js +94 -0
- package/lib/avatar/PropsType.d.ts +34 -0
- package/lib/avatar/PropsType.js +6 -0
- package/lib/avatar/index.d.ts +5 -0
- package/lib/avatar/index.js +16 -0
- package/lib/avatar/style/index.css +52 -0
- package/lib/avatar/style/var.css +0 -0
- package/lib/index.css +52 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +12 -0
- package/lib/index.min.css +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-vant-nova",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "React Mobile UI Components based on Vant UI (兼容 React 19+,新增轻量 Table 组件)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -58,15 +58,15 @@
|
|
|
58
58
|
"typings": "./es/index.d.ts",
|
|
59
59
|
"style": "./bundle/index.css",
|
|
60
60
|
"scripts": {
|
|
61
|
-
"build": "rcdoc build && pnpm build:gulp",
|
|
61
|
+
"build": "node scripts/patch-rcdoc-parser.js && rcdoc build && pnpm build:gulp",
|
|
62
62
|
"build:gulp": "gulp",
|
|
63
63
|
"deploy:gh-pages": "gh-pages -d docs-dist",
|
|
64
|
-
"dev": "rcdoc dev",
|
|
65
|
-
"docs:build": "rcdoc docs-build",
|
|
64
|
+
"dev": "node scripts/patch-rcdoc-parser.js && rcdoc dev",
|
|
65
|
+
"docs:build": "node scripts/patch-rcdoc-parser.js && rcdoc docs-build",
|
|
66
66
|
"lint": "eslint src --ext ts,tsx --fix",
|
|
67
67
|
"lint:tsx": "eslint src --ext ts,tsx",
|
|
68
68
|
"prettier": "npx prettier --write src",
|
|
69
|
-
"preview": "rcdoc preview",
|
|
69
|
+
"preview": "node scripts/patch-rcdoc-parser.js && rcdoc preview",
|
|
70
70
|
"pub": "pnpm publish ./dist",
|
|
71
71
|
"pub:dev": "pnpm publish ./dist --tag dev"
|
|
72
72
|
},
|