zhytech-ui 1.1.18 → 1.1.20
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 +25 -1
- package/dist/src/components/dynamicForm/components/application/employee/index.d.ts +2 -2
- package/dist/src/components/dynamicForm/components/application/post/index.d.ts +2 -2
- package/dist/src/components/dynamicForm/formRenderer.vue.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +3687 -3703
- package/dist/zhytech-ui.umd.js +10 -10
- package/package.json +105 -105
package/README.md
CHANGED
|
@@ -71,7 +71,31 @@ setTheme("dark");
|
|
|
71
71
|
|
|
72
72
|
> #### 版本更新清单:
|
|
73
73
|
|
|
74
|
-
**V 1.1.
|
|
74
|
+
**V 1.1.20**
|
|
75
|
+
```html
|
|
76
|
+
1.修复zhy-dynamic-designer中tabs默认值为0
|
|
77
|
+
2.修复zhy-dynamic-designer中多个图片上传或文件上传时,上传时显示异常
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**V 1.1.19**
|
|
81
|
+
```html
|
|
82
|
+
1.修复zhy-dynamic-designer清空时,不可复制的组件没有回到左侧组件列表内
|
|
83
|
+
2.修复zhy-dynamic-designer选择已有组件时被误认为组件异动
|
|
84
|
+
3.修复zhy-dynamic-designer设置动态条件时,人员、岗位组件无法选择条件值
|
|
85
|
+
4.修复zhy-dynamic-designer设置左缩进无效的的问题
|
|
86
|
+
5.优化zhy-dynamic-designer组件,去除tabs组件现实标题相关属性
|
|
87
|
+
6.优化zhy-dynamic-renderer组件返回值,按照模板顺序返回
|
|
88
|
+
7.优化zhy-dynamic-renderer组件返回值逻辑,精简代码
|
|
89
|
+
8.优化zhy-dynamic-designer试卷模式下样式
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**V 1.1.18**
|
|
93
|
+
```html
|
|
94
|
+
1.修复zhy-dynamic-designer在试卷模式下标题显示异常
|
|
95
|
+
2.修复zhy-dynamic-renderer在试卷模式下标题显示异常
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**V 1.1.17**
|
|
75
99
|
```html
|
|
76
100
|
1.修复zhy-dynamic-renderer勾选不同单选/多选组的相同选项时,返回值异常
|
|
77
101
|
```
|
|
@@ -16,10 +16,10 @@ declare class component extends baseComponent {
|
|
|
16
16
|
* @param componentProps
|
|
17
17
|
* @return
|
|
18
18
|
*/
|
|
19
|
-
getFilterConditionProps(componentProps: Record<string, any>):
|
|
19
|
+
getFilterConditionProps(componentProps: Record<string, any>): {
|
|
20
20
|
type: string;
|
|
21
21
|
options: any;
|
|
22
|
-
}
|
|
22
|
+
};
|
|
23
23
|
/**
|
|
24
24
|
* @description: 获取组件要排除的过滤条件集合
|
|
25
25
|
*/
|
|
@@ -16,10 +16,10 @@ declare class component extends baseComponent {
|
|
|
16
16
|
* @param componentProps
|
|
17
17
|
* @return
|
|
18
18
|
*/
|
|
19
|
-
getFilterConditionProps(componentProps: Record<string, any>):
|
|
19
|
+
getFilterConditionProps(componentProps: Record<string, any>): {
|
|
20
20
|
type: string;
|
|
21
21
|
options: any;
|
|
22
|
-
}
|
|
22
|
+
};
|
|
23
23
|
/**
|
|
24
24
|
* @description: 获取组件要排除的过滤条件集合
|
|
25
25
|
*/
|