@blueking/bkui-form 1.0.0-beta.6 → 1.0.0-beta.7
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/dist/esm/index.esm.js +14818 -15473
- package/dist/umd/index.umd.js +14697 -15333
- package/package.json +2 -2
- package/readme.md +8 -7
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-beta.
|
|
2
|
+
"version": "1.0.0-beta.7",
|
|
3
3
|
"main": "dist/umd/index.umd.js",
|
|
4
4
|
"name": "@blueking/bkui-form",
|
|
5
5
|
"scripts": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/jest": "^27.0.3",
|
|
28
28
|
"@types/json-schema": "^7.0.9",
|
|
29
29
|
"@types/node": "^20.10.1",
|
|
30
|
-
"bkui-vue": "^
|
|
30
|
+
"bkui-vue": "^2.0.2-beta.62",
|
|
31
31
|
"fs-extra": "^11.2.0",
|
|
32
32
|
"gulp": "^4.0.2",
|
|
33
33
|
"jest": "^27.4.4",
|
package/readme.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
## 表单化渲染器
|
|
2
2
|
|
|
3
|
-
基于
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
基于 bkui-vue 3.0组件库和JSON Schema协议的表单渲染器
|
|
6
4
|
|
|
7
5
|
### 安装
|
|
8
6
|
|
|
@@ -12,6 +10,7 @@
|
|
|
12
10
|
```shell
|
|
13
11
|
npm i @blueking/bkui-form
|
|
14
12
|
```
|
|
13
|
+
|
|
15
14
|
### 使用
|
|
16
15
|
|
|
17
16
|
```vue
|
|
@@ -182,9 +181,10 @@ export default {
|
|
|
182
181
|
|
|
183
182
|
### 迁移
|
|
184
183
|
|
|
185
|
-
|
|
184
|
+
vue2 版本的schema中的`ui:components`下的`props`属性需要放到上一层级
|
|
185
|
+
|
|
186
|
+
vue2 版本schema 写法
|
|
186
187
|
|
|
187
|
-
0.0.x版本schema 写法
|
|
188
188
|
```
|
|
189
189
|
{
|
|
190
190
|
"uri": {
|
|
@@ -200,7 +200,8 @@ export default {
|
|
|
200
200
|
}
|
|
201
201
|
```
|
|
202
202
|
|
|
203
|
-
|
|
203
|
+
vue3 以上版本schema 写法
|
|
204
|
+
|
|
204
205
|
```
|
|
205
206
|
{
|
|
206
207
|
"uri": {
|
|
@@ -212,4 +213,4 @@ export default {
|
|
|
212
213
|
}
|
|
213
214
|
}
|
|
214
215
|
}
|
|
215
|
-
```
|
|
216
|
+
```
|