@openvort/vort-ui 1.0.1 → 1.0.4

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Vortmall Team
3
+ Copyright (c) 2026 OpenVort Team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # @vortmall/ui
1
+ # @openvort/vort-ui
2
2
 
3
- 融合 Ant Design 5.x 精致视觉与 Element Plus 开发体验的企业级 Vue 3 组件库。
3
+ OpenVort UI:融合 Ant Design 5.x 精致视觉与 Element Plus 开发体验的企业级 Vue 3 组件库。
4
4
 
5
5
  ## 特性
6
6
 
@@ -16,13 +16,13 @@
16
16
 
17
17
  ```bash
18
18
  # npm
19
- npm install @vortmall/ui
19
+ npm install @openvort/vort-ui
20
20
 
21
21
  # pnpm
22
- pnpm add @vortmall/ui
22
+ pnpm add @openvort/vort-ui
23
23
 
24
24
  # yarn
25
- yarn add @vortmall/ui
25
+ yarn add @openvort/vort-ui
26
26
  ```
27
27
 
28
28
  ## 快速开始
@@ -32,8 +32,8 @@ yarn add @vortmall/ui
32
32
  ```typescript
33
33
  // main.ts
34
34
  import { createApp } from 'vue'
35
- import VortUI from '@vortmall/ui'
36
- import '@vortmall/ui/styles'
35
+ import VortUI from '@openvort/vort-ui'
36
+ import '@openvort/vort-ui/styles'
37
37
 
38
38
  const app = createApp(App)
39
39
  app.use(VortUI)
@@ -43,8 +43,8 @@ app.mount('#app')
43
43
  ### 按需引入
44
44
 
45
45
  ```typescript
46
- import { Button, Input } from '@vortmall/ui'
47
- import '@vortmall/ui/styles'
46
+ import { Button, Input } from '@openvort/vort-ui'
47
+ import '@openvort/vort-ui/styles'
48
48
  ```
49
49
 
50
50
  ### 自动导入(推荐)
@@ -52,7 +52,7 @@ import '@vortmall/ui/styles'
52
52
  ```typescript
53
53
  // vite.config.ts
54
54
  import Components from 'unplugin-vue-components/vite'
55
- import { VortResolver } from '@vortmall/ui/resolver'
55
+ import { VortResolver } from '@openvort/vort-ui/resolver'
56
56
 
57
57
  export default defineConfig({
58
58
  plugins: [
@@ -74,6 +74,10 @@ export default defineConfig({
74
74
 
75
75
  ## 组件列表
76
76
 
77
+ ### 在线文档
78
+
79
+ 📚 **完整文档请访问**:https://vortui.com/components/introduction
80
+
77
81
  ### 通用
78
82
  - Button 按钮
79
83
  - Dropdown 下拉菜单
@@ -110,56 +114,6 @@ export default defineConfig({
110
114
  - Notification 通知
111
115
  - ... 更多
112
116
 
113
- ## 开发
114
-
115
- ### 同步组件
116
-
117
- 从 Vort-Admin 同步最新组件:
118
-
119
- ```bash
120
- pnpm sync:components
121
- ```
122
-
123
- 从 Vort-Admin 同步演示页面:
124
-
125
- ```bash
126
- pnpm sync:demo
127
- ```
128
-
129
- 同步所有:
130
-
131
- ```bash
132
- pnpm sync:all
133
- ```
134
-
135
- ### 本地开发
136
-
137
- ```bash
138
- pnpm dev
139
- ```
140
-
141
- ### 构建库
142
-
143
- ```bash
144
- pnpm build:lib
145
- ```
146
-
147
- ### 构建演示站
148
-
149
- ```bash
150
- pnpm build:demo
151
- ```
152
-
153
- ### 发布到 npm
154
-
155
- ```bash
156
- # 准备发布(同步、检查、构建)
157
- pnpm publish:prepare
158
-
159
- # 发布
160
- npm publish --access public
161
- ```
162
-
163
117
  ## 浏览器支持
164
118
 
165
119
  现代浏览器和 IE11+(需要 polyfills)