zhytech-ui 1.0.0 → 1.0.2

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.
Files changed (65) hide show
  1. package/dist/src/components/drag/draggable/src/vuedraggable.d.ts +74 -0
  2. package/dist/src/components/dynamicFilter/index.vue.d.ts +134 -0
  3. package/dist/src/components/dynamicForm/components/advanced/groupLayout/index.d.ts +57 -0
  4. package/dist/src/components/dynamicForm/components/advanced/groupLayout/propsEditor.vue.d.ts +8 -0
  5. package/dist/src/components/dynamicForm/components/advanced/groupLayout/renderer.vue.d.ts +67 -0
  6. package/dist/src/components/dynamicForm/components/advanced/index.d.ts +4 -0
  7. package/dist/src/components/dynamicForm/components/advanced/upload/index.d.ts +62 -0
  8. package/dist/src/components/dynamicForm/components/advanced/upload/propsEditor.vue.d.ts +8 -0
  9. package/dist/src/components/dynamicForm/components/advanced/upload/renderer.vue.d.ts +79 -0
  10. package/dist/src/components/dynamicForm/components/advanced/uploadImage/index.d.ts +62 -0
  11. package/dist/src/components/dynamicForm/components/advanced/uploadImage/propsEditor.vue.d.ts +8 -0
  12. package/dist/src/components/dynamicForm/components/advanced/uploadImage/renderer.vue.d.ts +79 -0
  13. package/dist/src/components/dynamicForm/components/application/employee/index.d.ts +113 -0
  14. package/dist/src/components/dynamicForm/components/application/employee/propsEditor.vue.d.ts +13 -0
  15. package/dist/src/components/dynamicForm/components/application/employee/renderer.vue.d.ts +100 -0
  16. package/dist/src/components/dynamicForm/components/application/grade/hooks/useGrade.d.ts +8 -0
  17. package/dist/src/components/dynamicForm/components/application/grade/index.d.ts +92 -0
  18. package/dist/src/components/dynamicForm/components/application/grade/propsEditor.vue.d.ts +2 -0
  19. package/dist/src/components/dynamicForm/components/application/grade/renderer.vue.d.ts +98 -0
  20. package/dist/src/components/dynamicForm/components/application/index.d.ts +4 -0
  21. package/dist/src/components/dynamicForm/components/application/post/index.d.ts +93 -0
  22. package/dist/src/components/dynamicForm/components/application/post/propsEditor.vue.d.ts +2 -0
  23. package/dist/src/components/dynamicForm/components/application/post/renderer.vue.d.ts +100 -0
  24. package/dist/src/components/dynamicForm/components/base/checkbox/index.d.ts +103 -0
  25. package/dist/src/components/dynamicForm/components/base/checkbox/propsEditor.vue.d.ts +21 -0
  26. package/dist/src/components/dynamicForm/components/base/checkbox/renderer.vue.d.ts +98 -0
  27. package/dist/src/components/dynamicForm/components/base/index.d.ts +5 -0
  28. package/dist/src/components/dynamicForm/components/base/input/index.d.ts +107 -0
  29. package/dist/src/components/dynamicForm/components/base/input/propsEditor.vue.d.ts +2 -0
  30. package/dist/src/components/dynamicForm/components/base/input/renderer.vue.d.ts +113 -0
  31. package/dist/src/components/dynamicForm/components/base/label/index.d.ts +24 -0
  32. package/dist/src/components/dynamicForm/components/base/label/renderer.vue.d.ts +13 -0
  33. package/dist/src/components/dynamicForm/components/base/radio/index.d.ts +103 -0
  34. package/dist/src/components/dynamicForm/components/base/radio/propsEditor.vue.d.ts +21 -0
  35. package/dist/src/components/dynamicForm/components/base/radio/renderer.vue.d.ts +98 -0
  36. package/dist/src/components/dynamicForm/components/batchAddDialog.vue.d.ts +33 -0
  37. package/dist/src/components/dynamicForm/components/common/componentAdvancedPropsEditor.vue.d.ts +2 -0
  38. package/dist/src/components/dynamicForm/components/common/componentBasePropsEditor.vue.d.ts +21 -0
  39. package/dist/src/components/dynamicForm/components/common/componentDesigner.vue.d.ts +24 -0
  40. package/dist/src/components/dynamicForm/components/common/componentRenderer.vue.d.ts +53 -0
  41. package/dist/src/components/dynamicForm/components/common/conditionInput.vue.d.ts +112 -0
  42. package/dist/src/components/dynamicForm/components/common/dictionaryBinder.vue.d.ts +71 -0
  43. package/dist/src/components/dynamicForm/components/common/formPropsEditor.vue.d.ts +12 -0
  44. package/dist/src/components/dynamicForm/components/common/toolbar.vue.d.ts +60 -0
  45. package/dist/src/components/dynamicForm/components/componentType.d.ts +4 -0
  46. package/dist/src/components/dynamicForm/formDesigner.vue.d.ts +173 -0
  47. package/dist/src/components/dynamicForm/formRenderer.vue.d.ts +170 -0
  48. package/dist/src/components/dynamicForm/index.d.ts +8 -0
  49. package/dist/src/components/dynamicForm/types/batchAddComponentParam.d.ts +37 -0
  50. package/dist/src/components/dynamicForm/types/componentAttribute/advanced/groupLayoutAttribute.d.ts +29 -0
  51. package/dist/src/components/dynamicForm/types/componentAttribute/advanced/uploadAttribute.d.ts +25 -0
  52. package/dist/src/components/dynamicForm/types/componentAttribute/application/employeeAttribute.d.ts +29 -0
  53. package/dist/src/components/dynamicForm/types/componentAttribute/application/gradeAttribute.d.ts +45 -0
  54. package/dist/src/components/dynamicForm/types/componentAttribute/application/postAttribute.d.ts +29 -0
  55. package/dist/src/components/dynamicForm/types/componentAttribute/base/checkboxAttribute.d.ts +21 -0
  56. package/dist/src/components/dynamicForm/types/componentAttribute/base/inputAttribute.d.ts +21 -0
  57. package/dist/src/components/dynamicForm/types/componentAttribute/base/radioAttribute.d.ts +13 -0
  58. package/dist/src/components/dynamicForm/types/componentAttribute/baseAttribute.d.ts +73 -0
  59. package/dist/src/components/dynamicForm/types/componentAttribute/editAttribute.d.ts +61 -0
  60. package/dist/src/components/dynamicForm/types/componentAttribute/index.d.ts +11 -0
  61. package/dist/src/components/dynamicForm/types/documentView.d.ts +101 -0
  62. package/dist/src/components/dynamicForm/types/formAttribute.d.ts +84 -0
  63. package/dist/src/components/dynamicForm/types/uploadOption.d.ts +22 -0
  64. package/dist/src/components/index.d.ts +8 -0
  65. package/package.json +71 -58
@@ -0,0 +1,74 @@
1
+ declare const draggableComponent: import('vue').DefineComponent<{
2
+ list: {
3
+ type: ArrayConstructor;
4
+ required: boolean;
5
+ default: any;
6
+ };
7
+ modelValue: {
8
+ type: ArrayConstructor;
9
+ required: boolean;
10
+ default: any;
11
+ };
12
+ itemKey: {
13
+ type: (FunctionConstructor | StringConstructor)[];
14
+ required: boolean;
15
+ };
16
+ clone: {
17
+ type: FunctionConstructor;
18
+ default: (original: any) => any;
19
+ };
20
+ tag: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ move: {
25
+ type: FunctionConstructor;
26
+ default: any;
27
+ };
28
+ componentData: {
29
+ type: ObjectConstructor;
30
+ required: boolean;
31
+ default: any;
32
+ };
33
+ }, unknown, {
34
+ error: boolean;
35
+ }, {
36
+ realList(): any;
37
+ getKey(): any;
38
+ }, {
39
+ getUnderlyingVm(domElement: any): any;
40
+ getUnderlyingPotencialDraggableComponent(htmElement: any): any;
41
+ emitChanges(evt: any): void;
42
+ alterList(onList: any): void;
43
+ spliceList(): void;
44
+ updatePosition(oldIndex: any, newIndex: any): void;
45
+ getRelatedContextFromMoveEvent({ to, related }: {
46
+ to: any;
47
+ related: any;
48
+ }): any;
49
+ getVmIndexFromDomIndex(domIndex: any): any;
50
+ onDragStart(evt: any): void;
51
+ onDragAdd(evt: any): void;
52
+ onDragRemove(evt: any): void;
53
+ onDragUpdate(evt: any): void;
54
+ computeFutureIndex(relatedContext: any, evt: any): any;
55
+ onDragMove(evt: any, originalEvent: any): any;
56
+ onDragEnd(): void;
57
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any[], any, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<{
58
+ move: Function;
59
+ tag: string;
60
+ clone: Function;
61
+ list: unknown[];
62
+ modelValue: unknown[];
63
+ componentData: Record<string, any>;
64
+ } & {
65
+ itemKey?: string | Function;
66
+ }>, {
67
+ move: Function;
68
+ tag: string;
69
+ clone: Function;
70
+ list: unknown[];
71
+ modelValue: unknown[];
72
+ componentData: Record<string, any>;
73
+ }>;
74
+ export default draggableComponent;
@@ -0,0 +1,134 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ /**
3
+ * 项目集合
4
+ */
5
+ items: {
6
+ type: {
7
+ (arrayLength: number): Record<string, any>[];
8
+ (...items: Record<string, any>[]): Record<string, any>[];
9
+ new (arrayLength: number): Record<string, any>[];
10
+ new (...items: Record<string, any>[]): Record<string, any>[];
11
+ isArray(arg: any): arg is any[];
12
+ readonly prototype: any[];
13
+ from<T>(arrayLike: ArrayLike<T>): T[];
14
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
15
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
16
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
17
+ of<T_4>(...items: T_4[]): T_4[];
18
+ readonly [Symbol.species]: ArrayConstructor;
19
+ };
20
+ required: true;
21
+ };
22
+ /**
23
+ * 过滤条件类型集合
24
+ */
25
+ conditionTypes: {
26
+ type: globalThis.PropType<Record<string, ("EQUALS" | "NOT_EQUALS" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUALS" | "LESS_THAN_OR_EQUALS" | "EMPTY" | "INCLUDES" | "EXCLUDE" | "RANGE")[]>>;
27
+ required: true;
28
+ };
29
+ /**
30
+ * 过滤属性的可选值集合
31
+ */
32
+ conditionProps: {
33
+ type: globalThis.PropType<Record<string, any>>;
34
+ required: true;
35
+ };
36
+ /**
37
+ * 是否显示样式
38
+ */
39
+ showStyle: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ /**
44
+ * 默认值
45
+ */
46
+ defaultValue: {
47
+ type: {
48
+ (arrayLength: number): Record<string, any>[];
49
+ (...items: Record<string, any>[]): Record<string, any>[];
50
+ new (arrayLength: number): Record<string, any>[];
51
+ new (...items: Record<string, any>[]): Record<string, any>[];
52
+ isArray(arg: any): arg is any[];
53
+ readonly prototype: any[];
54
+ from<T>(arrayLike: ArrayLike<T>): T[];
55
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
56
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
57
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
58
+ of<T_4>(...items: T_4[]): T_4[];
59
+ readonly [Symbol.species]: ArrayConstructor;
60
+ };
61
+ default: () => never[];
62
+ };
63
+ }, {
64
+ /**
65
+ * @description: 获取过滤条件
66
+ */
67
+ getFilterData: () => Record<string, any>;
68
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
69
+ /**
70
+ * 项目集合
71
+ */
72
+ items: {
73
+ type: {
74
+ (arrayLength: number): Record<string, any>[];
75
+ (...items: Record<string, any>[]): Record<string, any>[];
76
+ new (arrayLength: number): Record<string, any>[];
77
+ new (...items: Record<string, any>[]): Record<string, any>[];
78
+ isArray(arg: any): arg is any[];
79
+ readonly prototype: any[];
80
+ from<T>(arrayLike: ArrayLike<T>): T[];
81
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
82
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
83
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
84
+ of<T_4>(...items: T_4[]): T_4[];
85
+ readonly [Symbol.species]: ArrayConstructor;
86
+ };
87
+ required: true;
88
+ };
89
+ /**
90
+ * 过滤条件类型集合
91
+ */
92
+ conditionTypes: {
93
+ type: globalThis.PropType<Record<string, ("EQUALS" | "NOT_EQUALS" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUALS" | "LESS_THAN_OR_EQUALS" | "EMPTY" | "INCLUDES" | "EXCLUDE" | "RANGE")[]>>;
94
+ required: true;
95
+ };
96
+ /**
97
+ * 过滤属性的可选值集合
98
+ */
99
+ conditionProps: {
100
+ type: globalThis.PropType<Record<string, any>>;
101
+ required: true;
102
+ };
103
+ /**
104
+ * 是否显示样式
105
+ */
106
+ showStyle: {
107
+ type: BooleanConstructor;
108
+ default: boolean;
109
+ };
110
+ /**
111
+ * 默认值
112
+ */
113
+ defaultValue: {
114
+ type: {
115
+ (arrayLength: number): Record<string, any>[];
116
+ (...items: Record<string, any>[]): Record<string, any>[];
117
+ new (arrayLength: number): Record<string, any>[];
118
+ new (...items: Record<string, any>[]): Record<string, any>[];
119
+ isArray(arg: any): arg is any[];
120
+ readonly prototype: any[];
121
+ from<T>(arrayLike: ArrayLike<T>): T[];
122
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
123
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
124
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
125
+ of<T_4>(...items: T_4[]): T_4[];
126
+ readonly [Symbol.species]: ArrayConstructor;
127
+ };
128
+ default: () => never[];
129
+ };
130
+ }>>, {
131
+ showStyle: boolean;
132
+ defaultValue: Record<string, any>[];
133
+ }, {}>;
134
+ export default _default;
@@ -0,0 +1,57 @@
1
+ import { default as baseComponent } from '../../../types/baseComponent';
2
+ declare class component extends baseComponent {
3
+ constructor();
4
+ }
5
+ declare const _default: {
6
+ component: typeof component;
7
+ renderer: import('vue').DefineComponent<{
8
+ isDesigner: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ componentID: {
13
+ type: (StringConstructor | NumberConstructor)[];
14
+ required: true;
15
+ };
16
+ component: {
17
+ type: globalThis.PropType<Record<string, any>>;
18
+ required: true;
19
+ };
20
+ showDescription: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
+ deleteComponent: (...args: any[]) => void;
26
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
27
+ isDesigner: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ componentID: {
32
+ type: (StringConstructor | NumberConstructor)[];
33
+ required: true;
34
+ };
35
+ component: {
36
+ type: globalThis.PropType<Record<string, any>>;
37
+ required: true;
38
+ };
39
+ showDescription: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ }>> & {
44
+ onDeleteComponent?: ((...args: any[]) => any) | undefined;
45
+ }, {
46
+ showDescription: boolean;
47
+ isDesigner: boolean;
48
+ }, {}>;
49
+ propEditor: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
50
+ [x: string]: unknown;
51
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, readonly string[] | Readonly<globalThis.ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
52
+ [x: string]: unknown;
53
+ }>>>>, {
54
+ [x: number]: string;
55
+ } | {}, {}>;
56
+ };
57
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
2
+ [x: string]: unknown;
3
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, readonly string[] | Readonly<globalThis.ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
4
+ [x: string]: unknown;
5
+ }>>>>, {
6
+ [x: number]: string;
7
+ } | {}, {}>;
8
+ export default _default;
@@ -0,0 +1,67 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ /**
3
+ * 是否为设计模式
4
+ */
5
+ isDesigner: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ /**
10
+ * 组件ID
11
+ */
12
+ componentID: {
13
+ type: (StringConstructor | NumberConstructor)[];
14
+ required: true;
15
+ };
16
+ /**
17
+ * 组件
18
+ */
19
+ component: {
20
+ type: globalThis.PropType<Record<string, any>>;
21
+ required: true;
22
+ };
23
+ /**
24
+ * 是否项目说明/答案解析
25
+ */
26
+ showDescription: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
31
+ deleteComponent: (...args: any[]) => void;
32
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
33
+ /**
34
+ * 是否为设计模式
35
+ */
36
+ isDesigner: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ /**
41
+ * 组件ID
42
+ */
43
+ componentID: {
44
+ type: (StringConstructor | NumberConstructor)[];
45
+ required: true;
46
+ };
47
+ /**
48
+ * 组件
49
+ */
50
+ component: {
51
+ type: globalThis.PropType<Record<string, any>>;
52
+ required: true;
53
+ };
54
+ /**
55
+ * 是否项目说明/答案解析
56
+ */
57
+ showDescription: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ }>> & {
62
+ onDeleteComponent?: ((...args: any[]) => any) | undefined;
63
+ }, {
64
+ showDescription: boolean;
65
+ isDesigner: boolean;
66
+ }, {}>;
67
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as groupLayout } from './groupLayout';
2
+ import { default as upload } from './upload';
3
+ import { default as uploadImage } from './uploadImage';
4
+ export { upload, uploadImage, groupLayout };
@@ -0,0 +1,62 @@
1
+ import { default as baseComponent } from '../../../types/baseComponent';
2
+ import { baseAttribute, uploadAttribute } from '../../../types/componentAttribute/index';
3
+ declare class component extends baseComponent {
4
+ constructor();
5
+ }
6
+ declare const _default: {
7
+ component: typeof component;
8
+ renderer: import('vue').DefineComponent<{
9
+ isDesigner: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ componentID: {
14
+ type: (StringConstructor | NumberConstructor)[];
15
+ required: true;
16
+ };
17
+ datas: {
18
+ type: globalThis.PropType<Record<string, any>>;
19
+ required: true;
20
+ };
21
+ componentProps: {
22
+ type: globalThis.PropType<baseAttribute & uploadAttribute>;
23
+ required: true;
24
+ };
25
+ showDescription: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
30
+ isDesigner: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ componentID: {
35
+ type: (StringConstructor | NumberConstructor)[];
36
+ required: true;
37
+ };
38
+ datas: {
39
+ type: globalThis.PropType<Record<string, any>>;
40
+ required: true;
41
+ };
42
+ componentProps: {
43
+ type: globalThis.PropType<baseAttribute & uploadAttribute>;
44
+ required: true;
45
+ };
46
+ showDescription: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ }>>, {
51
+ showDescription: boolean;
52
+ isDesigner: boolean;
53
+ }, {}>;
54
+ propEditor: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
55
+ [x: string]: unknown;
56
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, readonly string[] | Readonly<globalThis.ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
57
+ [x: string]: unknown;
58
+ }>>>>, {
59
+ [x: number]: string;
60
+ } | {}, {}>;
61
+ };
62
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
2
+ [x: string]: unknown;
3
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, readonly string[] | Readonly<globalThis.ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
4
+ [x: string]: unknown;
5
+ }>>>>, {
6
+ [x: number]: string;
7
+ } | {}, {}>;
8
+ export default _default;
@@ -0,0 +1,79 @@
1
+ import { baseAttribute, uploadAttribute } from '../../../types/componentAttribute/index';
2
+ type componentType = baseAttribute & uploadAttribute;
3
+ declare const _default: import('vue').DefineComponent<{
4
+ /**
5
+ * 是否为设计模式
6
+ */
7
+ isDesigner: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ /**
12
+ * 组件ID
13
+ */
14
+ componentID: {
15
+ type: (StringConstructor | NumberConstructor)[];
16
+ required: true;
17
+ };
18
+ /**
19
+ * 表单数据
20
+ */
21
+ datas: {
22
+ type: globalThis.PropType<Record<string, any>>;
23
+ required: true;
24
+ };
25
+ /**
26
+ * 组件属性
27
+ */
28
+ componentProps: {
29
+ type: globalThis.PropType<componentType>;
30
+ required: true;
31
+ };
32
+ /**
33
+ * 是否项目说明/答案解析
34
+ */
35
+ showDescription: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
40
+ /**
41
+ * 是否为设计模式
42
+ */
43
+ isDesigner: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ /**
48
+ * 组件ID
49
+ */
50
+ componentID: {
51
+ type: (StringConstructor | NumberConstructor)[];
52
+ required: true;
53
+ };
54
+ /**
55
+ * 表单数据
56
+ */
57
+ datas: {
58
+ type: globalThis.PropType<Record<string, any>>;
59
+ required: true;
60
+ };
61
+ /**
62
+ * 组件属性
63
+ */
64
+ componentProps: {
65
+ type: globalThis.PropType<componentType>;
66
+ required: true;
67
+ };
68
+ /**
69
+ * 是否项目说明/答案解析
70
+ */
71
+ showDescription: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
75
+ }>>, {
76
+ showDescription: boolean;
77
+ isDesigner: boolean;
78
+ }, {}>;
79
+ export default _default;
@@ -0,0 +1,62 @@
1
+ import { default as baseComponent } from '../../../types/baseComponent';
2
+ import { baseAttribute, uploadAttribute } from '../../../types/componentAttribute/index';
3
+ declare class component extends baseComponent {
4
+ constructor();
5
+ }
6
+ declare const _default: {
7
+ component: typeof component;
8
+ renderer: import('vue').DefineComponent<{
9
+ isDesigner: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ componentID: {
14
+ type: (StringConstructor | NumberConstructor)[];
15
+ required: true;
16
+ };
17
+ datas: {
18
+ type: globalThis.PropType<Record<string, any>>;
19
+ required: true;
20
+ };
21
+ componentProps: {
22
+ type: globalThis.PropType<baseAttribute & uploadAttribute>;
23
+ required: true;
24
+ };
25
+ showDescription: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
30
+ isDesigner: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ componentID: {
35
+ type: (StringConstructor | NumberConstructor)[];
36
+ required: true;
37
+ };
38
+ datas: {
39
+ type: globalThis.PropType<Record<string, any>>;
40
+ required: true;
41
+ };
42
+ componentProps: {
43
+ type: globalThis.PropType<baseAttribute & uploadAttribute>;
44
+ required: true;
45
+ };
46
+ showDescription: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ }>>, {
51
+ showDescription: boolean;
52
+ isDesigner: boolean;
53
+ }, {}>;
54
+ propEditor: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
55
+ [x: string]: unknown;
56
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, readonly string[] | Readonly<globalThis.ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
57
+ [x: string]: unknown;
58
+ }>>>>, {
59
+ [x: number]: string;
60
+ } | {}, {}>;
61
+ };
62
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
2
+ [x: string]: unknown;
3
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, readonly string[] | Readonly<globalThis.ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
4
+ [x: string]: unknown;
5
+ }>>>>, {
6
+ [x: number]: string;
7
+ } | {}, {}>;
8
+ export default _default;
@@ -0,0 +1,79 @@
1
+ import { baseAttribute, uploadAttribute } from '../../../types/componentAttribute/index';
2
+ type componentType = baseAttribute & uploadAttribute;
3
+ declare const _default: import('vue').DefineComponent<{
4
+ /**
5
+ * 是否为设计模式
6
+ */
7
+ isDesigner: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ /**
12
+ * 组件ID
13
+ */
14
+ componentID: {
15
+ type: (StringConstructor | NumberConstructor)[];
16
+ required: true;
17
+ };
18
+ /**
19
+ * 表单数据
20
+ */
21
+ datas: {
22
+ type: globalThis.PropType<Record<string, any>>;
23
+ required: true;
24
+ };
25
+ /**
26
+ * 组件属性
27
+ */
28
+ componentProps: {
29
+ type: globalThis.PropType<componentType>;
30
+ required: true;
31
+ };
32
+ /**
33
+ * 是否项目说明/答案解析
34
+ */
35
+ showDescription: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
40
+ /**
41
+ * 是否为设计模式
42
+ */
43
+ isDesigner: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ /**
48
+ * 组件ID
49
+ */
50
+ componentID: {
51
+ type: (StringConstructor | NumberConstructor)[];
52
+ required: true;
53
+ };
54
+ /**
55
+ * 表单数据
56
+ */
57
+ datas: {
58
+ type: globalThis.PropType<Record<string, any>>;
59
+ required: true;
60
+ };
61
+ /**
62
+ * 组件属性
63
+ */
64
+ componentProps: {
65
+ type: globalThis.PropType<componentType>;
66
+ required: true;
67
+ };
68
+ /**
69
+ * 是否项目说明/答案解析
70
+ */
71
+ showDescription: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
75
+ }>>, {
76
+ showDescription: boolean;
77
+ isDesigner: boolean;
78
+ }, {}>;
79
+ export default _default;