zhytech-ui 1.1.17 → 1.1.19

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 CHANGED
@@ -71,7 +71,25 @@ setTheme("dark");
71
71
 
72
72
  > #### 版本更新清单:
73
73
 
74
- **V 1.1.16**
74
+ **V 1.1.19**
75
+ ```html
76
+ 1.修复zhy-dynamic-designer清空时,不可复制的组件没有回到左侧组件列表内
77
+ 2.修复zhy-dynamic-designer选择已有组件时被误认为组件异动
78
+ 3.修复zhy-dynamic-designer设置动态条件时,人员、岗位组件无法选择条件值
79
+ 4.修复zhy-dynamic-designer设置左缩进无效的的问题
80
+ 5.优化zhy-dynamic-designer组件,去除tabs组件现实标题相关属性
81
+ 6.优化zhy-dynamic-renderer组件返回值,按照模板顺序返回
82
+ 7.优化zhy-dynamic-renderer组件返回值逻辑,精简代码
83
+ 8.优化zhy-dynamic-designer试卷模式下样式
84
+ ```
85
+
86
+ **V 1.1.18**
87
+ ```html
88
+ 1.修复zhy-dynamic-designer在试卷模式下标题显示异常
89
+ 2.修复zhy-dynamic-renderer在试卷模式下标题显示异常
90
+ ```
91
+
92
+ **V 1.1.17**
75
93
  ```html
76
94
  1.修复zhy-dynamic-renderer勾选不同单选/多选组的相同选项时,返回值异常
77
95
  ```
@@ -16,10 +16,10 @@ declare class component extends baseComponent {
16
16
  * @param componentProps
17
17
  * @return
18
18
  */
19
- getFilterConditionProps(componentProps: Record<string, any>): Promise<{
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>): Promise<{
19
+ getFilterConditionProps(componentProps: Record<string, any>): {
20
20
  type: string;
21
21
  options: any;
22
- }>;
22
+ };
23
23
  /**
24
24
  * @description: 获取组件要排除的过滤条件集合
25
25
  */
@@ -72,7 +72,7 @@ declare const _default: import('vue').DefineComponent<{
72
72
  * @return
73
73
  */
74
74
  getDatas: () => {
75
- data: Record<string, any>[];
75
+ resultData: Record<string, any>[];
76
76
  fileList: Record<string, any>[];
77
77
  };
78
78
  /**