zhytech-ui 1.1.30 → 1.1.32
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 +10 -0
- package/dist/src/components/dynamicForm/formDesigner.vue.d.ts +58 -0
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +2325 -2303
- package/dist/zhytech-ui.umd.js +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,6 +70,16 @@ setTheme("dark");
|
|
|
70
70
|
|
|
71
71
|
> #### 版本更新清单:
|
|
72
72
|
|
|
73
|
+
**V 1.1.32**
|
|
74
|
+
```html
|
|
75
|
+
1.修复zhy-dynamic-renderer组件渲染试卷时realTimeDisplayAnswerMode、everyItemDisplayAnalysisSwitch两个参数没有双向同步
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**V 1.1.31**
|
|
79
|
+
```html
|
|
80
|
+
1.调整zhy-dynamic-designer新增realTimeDisplayAnswerMode(考核模式是否实时显示答案)、everyItemDisplayAnalysisSwitch(考核模式是否每道题都显示显示答案的开关)、showCorrectOrNot(考核模式 答题卡是否显示正确答案)参数
|
|
81
|
+
```
|
|
82
|
+
|
|
73
83
|
**V 1.1.30**
|
|
74
84
|
```html
|
|
75
85
|
1.调整zhy-dynamic-renderer试卷模式支持答题卡
|
|
@@ -78,6 +78,27 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
78
78
|
type: globalThis.PropType<batchAddComponentParam>;
|
|
79
79
|
default: () => void;
|
|
80
80
|
};
|
|
81
|
+
/**
|
|
82
|
+
* 实时显示答案模式
|
|
83
|
+
*/
|
|
84
|
+
realTimeDisplayAnswerMode: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* 每个项目都显示解析开关
|
|
90
|
+
*/
|
|
91
|
+
everyItemDisplayAnalysisSwitch: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* 答题卡显示正确与否
|
|
97
|
+
*/
|
|
98
|
+
showCorrectOrNot: {
|
|
99
|
+
type: BooleanConstructor;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
81
102
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
82
103
|
change: (...args: any[]) => void;
|
|
83
104
|
test: (...args: any[]) => void;
|
|
@@ -158,6 +179,27 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
158
179
|
type: globalThis.PropType<batchAddComponentParam>;
|
|
159
180
|
default: () => void;
|
|
160
181
|
};
|
|
182
|
+
/**
|
|
183
|
+
* 实时显示答案模式
|
|
184
|
+
*/
|
|
185
|
+
realTimeDisplayAnswerMode: {
|
|
186
|
+
type: BooleanConstructor;
|
|
187
|
+
default: boolean;
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* 每个项目都显示解析开关
|
|
191
|
+
*/
|
|
192
|
+
everyItemDisplayAnalysisSwitch: {
|
|
193
|
+
type: BooleanConstructor;
|
|
194
|
+
default: boolean;
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* 答题卡显示正确与否
|
|
198
|
+
*/
|
|
199
|
+
showCorrectOrNot: {
|
|
200
|
+
type: BooleanConstructor;
|
|
201
|
+
default: boolean;
|
|
202
|
+
};
|
|
161
203
|
}>> & Readonly<{
|
|
162
204
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
163
205
|
onTest?: ((...args: any[]) => any) | undefined;
|
|
@@ -165,6 +207,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
165
207
|
defaultSourceType: string;
|
|
166
208
|
dictionary: dictionaryData;
|
|
167
209
|
uploadOptions: uploadOption;
|
|
210
|
+
realTimeDisplayAnswerMode: boolean;
|
|
211
|
+
everyItemDisplayAnalysisSwitch: boolean;
|
|
212
|
+
showCorrectOrNot: boolean;
|
|
168
213
|
componentGroups: Record<string, any>[];
|
|
169
214
|
mergeGroup: boolean;
|
|
170
215
|
saveMethod: Function;
|
|
@@ -204,6 +249,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
204
249
|
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
205
250
|
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
206
251
|
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
252
|
+
/**
|
|
253
|
+
* @description: 监听模板改变(项目新增/删除、项目属性异动)
|
|
254
|
+
*/
|
|
207
255
|
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
208
256
|
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
209
257
|
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
@@ -245,6 +293,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
245
293
|
type: StringConstructor;
|
|
246
294
|
default: string;
|
|
247
295
|
};
|
|
296
|
+
/**
|
|
297
|
+
* @description: 删除组件
|
|
298
|
+
* @param deleteComponent
|
|
299
|
+
* @return
|
|
300
|
+
*/
|
|
248
301
|
watching: {
|
|
249
302
|
type: BooleanConstructor;
|
|
250
303
|
default: boolean;
|
|
@@ -338,6 +391,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
338
391
|
type: StringConstructor;
|
|
339
392
|
default: string;
|
|
340
393
|
};
|
|
394
|
+
/**
|
|
395
|
+
* @description: 删除组件
|
|
396
|
+
* @param deleteComponent
|
|
397
|
+
* @return
|
|
398
|
+
*/
|
|
341
399
|
watching: {
|
|
342
400
|
type: BooleanConstructor;
|
|
343
401
|
default: boolean;
|