zhytech-ui 1.1.31 → 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 +10 -0
- package/dist/src/components/dynamicForm/formDesigner.vue.d.ts +12 -10
- package/dist/src/components/dynamicForm/formRenderer.vue.d.ts +15 -0
- package/dist/src/components/dynamicForm/types/componentAttribute/base/datetimeAttribute.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +1880 -1873
- package/dist/zhytech-ui.umd.js +3 -3
- 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新增是否显示答题卡开关属性
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**V 1.1.32**
|
|
79
|
+
```html
|
|
80
|
+
1.修复zhy-dynamic-renderer组件渲染试卷时realTimeDisplayAnswerMode、everyItemDisplayAnalysisSwitch两个参数没有双向同步
|
|
81
|
+
```
|
|
82
|
+
|
|
73
83
|
**V 1.1.31**
|
|
74
84
|
```html
|
|
75
85
|
1.调整zhy-dynamic-designer新增realTimeDisplayAnswerMode(考核模式是否实时显示答案)、everyItemDisplayAnalysisSwitch(考核模式是否每道题都显示显示答案的开关)、showCorrectOrNot(考核模式 答题卡是否显示正确答案)参数
|
|
@@ -299,11 +299,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
299
299
|
};
|
|
300
300
|
disabled: {
|
|
301
301
|
type: BooleanConstructor;
|
|
302
|
-
default: boolean;
|
|
303
|
-
* @description: 删除组件
|
|
304
|
-
* @param deleteComponent
|
|
305
|
-
* @return
|
|
306
|
-
*/
|
|
302
|
+
default: boolean;
|
|
307
303
|
};
|
|
308
304
|
selectMode: {
|
|
309
305
|
type: BooleanConstructor;
|
|
@@ -325,6 +321,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
325
321
|
type: BooleanConstructor;
|
|
326
322
|
default: boolean;
|
|
327
323
|
};
|
|
324
|
+
showAnswerSheet: {
|
|
325
|
+
type: BooleanConstructor;
|
|
326
|
+
default: boolean;
|
|
327
|
+
};
|
|
328
328
|
showCorrectOrNot: {
|
|
329
329
|
type: BooleanConstructor;
|
|
330
330
|
default: boolean;
|
|
@@ -357,6 +357,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
357
357
|
device: string;
|
|
358
358
|
watching: boolean;
|
|
359
359
|
hiddenTitle: boolean;
|
|
360
|
+
showAnswerSheet: boolean;
|
|
360
361
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
361
362
|
formRenderer: unknown;
|
|
362
363
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -396,11 +397,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
396
397
|
};
|
|
397
398
|
disabled: {
|
|
398
399
|
type: BooleanConstructor;
|
|
399
|
-
default: boolean;
|
|
400
|
-
* @description: 删除组件
|
|
401
|
-
* @param deleteComponent
|
|
402
|
-
* @return
|
|
403
|
-
*/
|
|
400
|
+
default: boolean;
|
|
404
401
|
};
|
|
405
402
|
selectMode: {
|
|
406
403
|
type: BooleanConstructor;
|
|
@@ -422,6 +419,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
422
419
|
type: BooleanConstructor;
|
|
423
420
|
default: boolean;
|
|
424
421
|
};
|
|
422
|
+
showAnswerSheet: {
|
|
423
|
+
type: BooleanConstructor;
|
|
424
|
+
default: boolean;
|
|
425
|
+
};
|
|
425
426
|
showCorrectOrNot: {
|
|
426
427
|
type: BooleanConstructor;
|
|
427
428
|
default: boolean;
|
|
@@ -451,6 +452,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
451
452
|
device: string;
|
|
452
453
|
watching: boolean;
|
|
453
454
|
hiddenTitle: boolean;
|
|
455
|
+
showAnswerSheet: boolean;
|
|
454
456
|
}> | null;
|
|
455
457
|
}, any>, {
|
|
456
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>;
|
package/dist/src/components/dynamicForm/types/componentAttribute/base/datetimeAttribute.d.ts
CHANGED
|
@@ -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;
|