zhytech-ui 1.1.32 → 1.1.33

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.32**
74
+ ```html
75
+ 1.zhy-dynamic-renderer新增是否显示答题卡开关属性
76
+ ```
77
+
73
78
  **V 1.1.32**
74
79
  ```html
75
80
  1.修复zhy-dynamic-renderer组件渲染试卷时realTimeDisplayAnswerMode、everyItemDisplayAnalysisSwitch两个参数没有双向同步
@@ -293,11 +293,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
293
293
  type: StringConstructor;
294
294
  default: string;
295
295
  };
296
- /**
297
- * @description: 删除组件
298
- * @param deleteComponent
299
- * @return
300
- */
301
296
  watching: {
302
297
  type: BooleanConstructor;
303
298
  default: boolean;
@@ -326,6 +321,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
326
321
  type: BooleanConstructor;
327
322
  default: boolean;
328
323
  };
324
+ showAnswerSheet: {
325
+ type: BooleanConstructor;
326
+ default: boolean;
327
+ };
329
328
  showCorrectOrNot: {
330
329
  type: BooleanConstructor;
331
330
  default: boolean;
@@ -358,6 +357,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
358
357
  device: string;
359
358
  watching: boolean;
360
359
  hiddenTitle: boolean;
360
+ showAnswerSheet: boolean;
361
361
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
362
362
  formRenderer: unknown;
363
363
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -391,11 +391,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
391
391
  type: StringConstructor;
392
392
  default: string;
393
393
  };
394
- /**
395
- * @description: 删除组件
396
- * @param deleteComponent
397
- * @return
398
- */
399
394
  watching: {
400
395
  type: BooleanConstructor;
401
396
  default: boolean;
@@ -424,6 +419,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
424
419
  type: BooleanConstructor;
425
420
  default: boolean;
426
421
  };
422
+ showAnswerSheet: {
423
+ type: BooleanConstructor;
424
+ default: boolean;
425
+ };
427
426
  showCorrectOrNot: {
428
427
  type: BooleanConstructor;
429
428
  default: boolean;
@@ -453,6 +452,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
453
452
  device: string;
454
453
  watching: boolean;
455
454
  hiddenTitle: boolean;
455
+ showAnswerSheet: boolean;
456
456
  }> | null;
457
457
  }, any>, {
458
458
  formBeforeExtendProps?(_: {}): any;
@@ -82,6 +82,13 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
82
82
  type: BooleanConstructor;
83
83
  default: boolean;
84
84
  };
85
+ /**
86
+ *是否显示答题卡
87
+ */
88
+ showAnswerSheet: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
85
92
  /**
86
93
  * 答题卡显示正确与否
87
94
  */
@@ -210,6 +217,13 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
210
217
  type: BooleanConstructor;
211
218
  default: boolean;
212
219
  };
220
+ /**
221
+ *是否显示答题卡
222
+ */
223
+ showAnswerSheet: {
224
+ type: BooleanConstructor;
225
+ default: boolean;
226
+ };
213
227
  /**
214
228
  * 答题卡显示正确与否
215
229
  */
@@ -232,6 +246,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
232
246
  device: string;
233
247
  watching: boolean;
234
248
  hiddenTitle: boolean;
249
+ showAnswerSheet: boolean;
235
250
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
236
251
  formRenderer: unknown;
237
252
  }, HTMLDivElement>;
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export interface datetimeAttribute {
5
5
  /**
6
- * @description: 日期时间类型:'year' | 'years' |'month' | 'months' | 'date' | 'dates' | 'datetime' | 'week' | 'datetimerange' | 'daterange' | 'monthrange' | 'yearrange'
6
+ * @description: 日期时间类型:'year' | 'years' |'month' | 'months' | 'date' | 'dates' | 'datetime' | 'week' | 'datetimerange' | 'daterange' | 'monthrange' | 'yearrange' | 'timeSelect' | 'timePicker'
7
7
  *
8
8
  */
9
9
  datetimeType?: string;