zhytech-ui 1.3.0 → 1.3.1
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 +7 -0
- package/dist/src/components/dynamicForm/components/common/conditionInput.vue.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +3701 -3705
- package/dist/zhytech-ui.umd.js +14 -14
- package/package.json +83 -83
package/README.md
CHANGED
|
@@ -90,6 +90,13 @@ npm install --legacy-peer-deps
|
|
|
90
90
|
|
|
91
91
|
> #### 版本更新清单:
|
|
92
92
|
|
|
93
|
+
**V 1.3.1**
|
|
94
|
+
```html
|
|
95
|
+
1.修复动态表单结果返回时,复选框、单选框选值的itemSourceType取错问题
|
|
96
|
+
2.修复网格布局组件(gridLayout),预览模式下显示不完整问题
|
|
97
|
+
3.优化动态筛选组件(dynamicFilter)中“且”改为“同时满足”,“或”改为“任一满足”
|
|
98
|
+
```
|
|
99
|
+
|
|
93
100
|
**V 1.3.0**
|
|
94
101
|
```html
|
|
95
102
|
1.添加支持预览模式,在预览模式下,组件显示为只读状态,可输入组件只显示值,不显示输入框
|
|
@@ -105,10 +105,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
105
105
|
onResult?: ((...args: any[]) => any) | undefined;
|
|
106
106
|
}>, {
|
|
107
107
|
title: string;
|
|
108
|
+
content: string;
|
|
108
109
|
clearable: boolean;
|
|
109
110
|
showStyle: boolean;
|
|
110
111
|
defaultValue: Record<string, any>[];
|
|
111
|
-
content: string;
|
|
112
112
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
113
113
|
dynamicFilterRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
114
114
|
items: {
|