zhytech-ui 1.1.26 → 1.1.27
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 +9 -0
- package/dist/src/components/dynamicForm/components/common/componentRenderer.vue.d.ts +1 -1
- package/dist/src/components/dynamicForm/types/componentAttribute/baseAttribute.d.ts +5 -1
- package/dist/src/components/dynamicForm/types/formAttribute.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +3467 -3398
- package/dist/zhytech-ui.umd.js +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,6 +71,15 @@ setTheme("dark");
|
|
|
71
71
|
|
|
72
72
|
> #### 版本更新清单:
|
|
73
73
|
|
|
74
|
+
**V 1.1.27**
|
|
75
|
+
```html
|
|
76
|
+
1.调整zhy-dynamic-designer修复tabs组件调整标签顺序,子组件不同步
|
|
77
|
+
2.调整zhy-dynamic-designer字典选择组件显示字典ID,搜索可模糊查询字典ID
|
|
78
|
+
3.调整zhy-dynamic-designer支持横向布局
|
|
79
|
+
4.调整zhy-dynamic-designer横向布局时支持任意组件设置换行
|
|
80
|
+
5.调整zhy-dynamic-designer的group组件横向布局时支持任意组件设置换行
|
|
81
|
+
```
|
|
82
|
+
|
|
74
83
|
**V 1.1.26**
|
|
75
84
|
```html
|
|
76
85
|
1.调整zhy-dynamic-designer支持复选框项目解析异常
|
|
@@ -62,7 +62,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
62
62
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
63
63
|
}, {
|
|
64
64
|
selectMode: boolean;
|
|
65
|
-
showDescription: boolean;
|
|
66
65
|
layoutMode: "horizontal" | "vertical";
|
|
66
|
+
showDescription: boolean;
|
|
67
67
|
}, {}>;
|
|
68
68
|
export default _default;
|