zhytech-ui 1.1.32 → 1.1.34
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 +5 -0
- package/dist/src/components/dynamicForm/formDesigner.vue.d.ts +16 -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 +1638 -1628
- package/dist/zhytech-ui.umd.js +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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;
|
|
@@ -320,12 +315,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
320
315
|
};
|
|
321
316
|
realTimeDisplayAnswerMode: {
|
|
322
317
|
type: BooleanConstructor;
|
|
318
|
+
/**
|
|
319
|
+
* @description: 清空组件
|
|
320
|
+
*/
|
|
323
321
|
default: boolean;
|
|
324
322
|
};
|
|
325
323
|
everyItemDisplayAnalysisSwitch: {
|
|
326
324
|
type: BooleanConstructor;
|
|
327
325
|
default: boolean;
|
|
328
326
|
};
|
|
327
|
+
showAnswerSheet: {
|
|
328
|
+
type: BooleanConstructor;
|
|
329
|
+
default: boolean;
|
|
330
|
+
};
|
|
329
331
|
showCorrectOrNot: {
|
|
330
332
|
type: BooleanConstructor;
|
|
331
333
|
default: boolean;
|
|
@@ -358,6 +360,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
358
360
|
device: string;
|
|
359
361
|
watching: boolean;
|
|
360
362
|
hiddenTitle: boolean;
|
|
363
|
+
showAnswerSheet: boolean;
|
|
361
364
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
362
365
|
formRenderer: unknown;
|
|
363
366
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -391,11 +394,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
391
394
|
type: StringConstructor;
|
|
392
395
|
default: string;
|
|
393
396
|
};
|
|
394
|
-
/**
|
|
395
|
-
* @description: 删除组件
|
|
396
|
-
* @param deleteComponent
|
|
397
|
-
* @return
|
|
398
|
-
*/
|
|
399
397
|
watching: {
|
|
400
398
|
type: BooleanConstructor;
|
|
401
399
|
default: boolean;
|
|
@@ -418,12 +416,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
418
416
|
};
|
|
419
417
|
realTimeDisplayAnswerMode: {
|
|
420
418
|
type: BooleanConstructor;
|
|
419
|
+
/**
|
|
420
|
+
* @description: 清空组件
|
|
421
|
+
*/
|
|
421
422
|
default: boolean;
|
|
422
423
|
};
|
|
423
424
|
everyItemDisplayAnalysisSwitch: {
|
|
424
425
|
type: BooleanConstructor;
|
|
425
426
|
default: boolean;
|
|
426
427
|
};
|
|
428
|
+
showAnswerSheet: {
|
|
429
|
+
type: BooleanConstructor;
|
|
430
|
+
default: boolean;
|
|
431
|
+
};
|
|
427
432
|
showCorrectOrNot: {
|
|
428
433
|
type: BooleanConstructor;
|
|
429
434
|
default: boolean;
|
|
@@ -453,6 +458,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
453
458
|
device: string;
|
|
454
459
|
watching: boolean;
|
|
455
460
|
hiddenTitle: boolean;
|
|
461
|
+
showAnswerSheet: boolean;
|
|
456
462
|
}> | null;
|
|
457
463
|
}, any>, {
|
|
458
464
|
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;
|