zhytech-ui 1.1.30 → 1.1.31

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
@@ -70,6 +70,11 @@ setTheme("dark");
70
70
 
71
71
  > #### 版本更新清单:
72
72
 
73
+ **V 1.1.31**
74
+ ```html
75
+ 1.调整zhy-dynamic-designer新增realTimeDisplayAnswerMode(考核模式是否实时显示答案)、everyItemDisplayAnalysisSwitch(考核模式是否每道题都显示显示答案的开关)、showCorrectOrNot(考核模式 答题卡是否显示正确答案)参数
76
+ ```
77
+
73
78
  **V 1.1.30**
74
79
  ```html
75
80
  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;
@@ -251,7 +299,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
251
299
  };
252
300
  disabled: {
253
301
  type: BooleanConstructor;
254
- default: boolean;
302
+ default: boolean; /**
303
+ * @description: 删除组件
304
+ * @param deleteComponent
305
+ * @return
306
+ */
255
307
  };
256
308
  selectMode: {
257
309
  type: BooleanConstructor;
@@ -344,7 +396,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
344
396
  };
345
397
  disabled: {
346
398
  type: BooleanConstructor;
347
- default: boolean;
399
+ default: boolean; /**
400
+ * @description: 删除组件
401
+ * @param deleteComponent
402
+ * @return
403
+ */
348
404
  };
349
405
  selectMode: {
350
406
  type: BooleanConstructor;