@a2simcode/dui 0.0.41 → 0.0.43
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/dist/components-dui/biDesign/index.d.ts +57 -0
- package/dist/components-dui/biDesign/src/biDesign.vue.d.ts +70 -0
- package/dist/components-dui/biDesign/src/biViewer.vue.d.ts +15 -0
- package/dist/components-dui/biDesign/src/interface.d.ts +4 -0
- package/dist/dui.es.js +5339 -5202
- package/dist/dui.umd.js +8 -8
- package/package.json +2 -2
|
@@ -13,6 +13,21 @@ declare const DBiDesign: {
|
|
|
13
13
|
componentInit: FunctionConstructor;
|
|
14
14
|
componentConfigInit: FunctionConstructor;
|
|
15
15
|
componentConfigChange: FunctionConstructor;
|
|
16
|
+
flowComponents: {
|
|
17
|
+
type: import('vue').PropType<Record<string, any>[]>;
|
|
18
|
+
default: () => never[];
|
|
19
|
+
};
|
|
20
|
+
flowInit: FunctionConstructor;
|
|
21
|
+
flowComponentConfigInit: FunctionConstructor;
|
|
22
|
+
flowComponentConfigChange: FunctionConstructor;
|
|
23
|
+
flowComponentConfigs: {
|
|
24
|
+
type: import('vue').PropType<Record<string, import('../../components').FormSchemaConfig[]>>;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
27
|
+
actions: {
|
|
28
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
29
|
+
default: () => {};
|
|
30
|
+
};
|
|
16
31
|
imgUrlPrefix: {
|
|
17
32
|
type: import('vue').PropType<string>;
|
|
18
33
|
default: string;
|
|
@@ -38,6 +53,7 @@ declare const DBiDesign: {
|
|
|
38
53
|
display: boolean;
|
|
39
54
|
lock: boolean;
|
|
40
55
|
config: Record<string, any>;
|
|
56
|
+
$refs?: any;
|
|
41
57
|
};
|
|
42
58
|
};
|
|
43
59
|
getImg: () => Promise<unknown>;
|
|
@@ -46,7 +62,10 @@ declare const DBiDesign: {
|
|
|
46
62
|
"update:scale": (...args: any[]) => void;
|
|
47
63
|
}, import('vue').PublicProps, {
|
|
48
64
|
components: Record<string, any>[];
|
|
65
|
+
flowComponents: Record<string, any>[];
|
|
49
66
|
scale: number;
|
|
67
|
+
flowComponentConfigs: Record<string, import('../../components').FormSchemaConfig[]>;
|
|
68
|
+
actions: Record<string, any>;
|
|
50
69
|
componentConfigs: Record<string, import('../../components').FormSchemaConfig[]>;
|
|
51
70
|
imgUrlPrefix: string;
|
|
52
71
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -74,6 +93,21 @@ declare const DBiDesign: {
|
|
|
74
93
|
componentInit: FunctionConstructor;
|
|
75
94
|
componentConfigInit: FunctionConstructor;
|
|
76
95
|
componentConfigChange: FunctionConstructor;
|
|
96
|
+
flowComponents: {
|
|
97
|
+
type: import('vue').PropType<Record<string, any>[]>;
|
|
98
|
+
default: () => never[];
|
|
99
|
+
};
|
|
100
|
+
flowInit: FunctionConstructor;
|
|
101
|
+
flowComponentConfigInit: FunctionConstructor;
|
|
102
|
+
flowComponentConfigChange: FunctionConstructor;
|
|
103
|
+
flowComponentConfigs: {
|
|
104
|
+
type: import('vue').PropType<Record<string, import('../../components').FormSchemaConfig[]>>;
|
|
105
|
+
default: () => {};
|
|
106
|
+
};
|
|
107
|
+
actions: {
|
|
108
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
109
|
+
default: () => {};
|
|
110
|
+
};
|
|
77
111
|
imgUrlPrefix: {
|
|
78
112
|
type: import('vue').PropType<string>;
|
|
79
113
|
default: string;
|
|
@@ -99,13 +133,17 @@ declare const DBiDesign: {
|
|
|
99
133
|
display: boolean;
|
|
100
134
|
lock: boolean;
|
|
101
135
|
config: Record<string, any>;
|
|
136
|
+
$refs?: any;
|
|
102
137
|
};
|
|
103
138
|
};
|
|
104
139
|
getImg: () => Promise<unknown>;
|
|
105
140
|
preview: () => void;
|
|
106
141
|
}, {}, {}, {}, {
|
|
107
142
|
components: Record<string, any>[];
|
|
143
|
+
flowComponents: Record<string, any>[];
|
|
108
144
|
scale: number;
|
|
145
|
+
flowComponentConfigs: Record<string, import('../../components').FormSchemaConfig[]>;
|
|
146
|
+
actions: Record<string, any>;
|
|
109
147
|
componentConfigs: Record<string, import('../../components').FormSchemaConfig[]>;
|
|
110
148
|
imgUrlPrefix: string;
|
|
111
149
|
}>;
|
|
@@ -124,6 +162,21 @@ declare const DBiDesign: {
|
|
|
124
162
|
componentInit: FunctionConstructor;
|
|
125
163
|
componentConfigInit: FunctionConstructor;
|
|
126
164
|
componentConfigChange: FunctionConstructor;
|
|
165
|
+
flowComponents: {
|
|
166
|
+
type: import('vue').PropType<Record<string, any>[]>;
|
|
167
|
+
default: () => never[];
|
|
168
|
+
};
|
|
169
|
+
flowInit: FunctionConstructor;
|
|
170
|
+
flowComponentConfigInit: FunctionConstructor;
|
|
171
|
+
flowComponentConfigChange: FunctionConstructor;
|
|
172
|
+
flowComponentConfigs: {
|
|
173
|
+
type: import('vue').PropType<Record<string, import('../../components').FormSchemaConfig[]>>;
|
|
174
|
+
default: () => {};
|
|
175
|
+
};
|
|
176
|
+
actions: {
|
|
177
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
178
|
+
default: () => {};
|
|
179
|
+
};
|
|
127
180
|
imgUrlPrefix: {
|
|
128
181
|
type: import('vue').PropType<string>;
|
|
129
182
|
default: string;
|
|
@@ -149,6 +202,7 @@ declare const DBiDesign: {
|
|
|
149
202
|
display: boolean;
|
|
150
203
|
lock: boolean;
|
|
151
204
|
config: Record<string, any>;
|
|
205
|
+
$refs?: any;
|
|
152
206
|
};
|
|
153
207
|
};
|
|
154
208
|
getImg: () => Promise<unknown>;
|
|
@@ -157,7 +211,10 @@ declare const DBiDesign: {
|
|
|
157
211
|
"update:scale": (...args: any[]) => void;
|
|
158
212
|
}, string, {
|
|
159
213
|
components: Record<string, any>[];
|
|
214
|
+
flowComponents: Record<string, any>[];
|
|
160
215
|
scale: number;
|
|
216
|
+
flowComponentConfigs: Record<string, import('../../components').FormSchemaConfig[]>;
|
|
217
|
+
actions: Record<string, any>;
|
|
161
218
|
componentConfigs: Record<string, import('../../components').FormSchemaConfig[]>;
|
|
162
219
|
imgUrlPrefix: string;
|
|
163
220
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
@@ -27,6 +27,39 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
27
27
|
* @zh 配置值变更方法
|
|
28
28
|
*/
|
|
29
29
|
componentConfigChange: FunctionConstructor;
|
|
30
|
+
/**
|
|
31
|
+
* @zh 组件集合
|
|
32
|
+
*/
|
|
33
|
+
flowComponents: {
|
|
34
|
+
type: PropType<Record<string, any>[]>;
|
|
35
|
+
default: () => never[];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @zh 编排组件初始化方法
|
|
39
|
+
*/
|
|
40
|
+
flowInit: FunctionConstructor;
|
|
41
|
+
/**
|
|
42
|
+
* @zh 组件配置初始化方法
|
|
43
|
+
*/
|
|
44
|
+
flowComponentConfigInit: FunctionConstructor;
|
|
45
|
+
/**
|
|
46
|
+
* @zh 编排组件设置变更方法
|
|
47
|
+
*/
|
|
48
|
+
flowComponentConfigChange: FunctionConstructor;
|
|
49
|
+
/**
|
|
50
|
+
* @zh 编排组件设置方法
|
|
51
|
+
*/
|
|
52
|
+
flowComponentConfigs: {
|
|
53
|
+
type: PropType<Record<string, FormSchemaConfig[]>>;
|
|
54
|
+
default: () => {};
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* @zh 操作集合(预览时使用)
|
|
58
|
+
*/
|
|
59
|
+
actions: {
|
|
60
|
+
type: PropType<Record<string, any>>;
|
|
61
|
+
default: () => {};
|
|
62
|
+
};
|
|
30
63
|
/**
|
|
31
64
|
* @zh 图片路由前缀
|
|
32
65
|
*/
|
|
@@ -56,6 +89,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
56
89
|
display: boolean;
|
|
57
90
|
lock: boolean;
|
|
58
91
|
config: Record<string, any>;
|
|
92
|
+
$refs?: any;
|
|
59
93
|
};
|
|
60
94
|
};
|
|
61
95
|
getImg: () => Promise<unknown>;
|
|
@@ -89,6 +123,39 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
123
|
* @zh 配置值变更方法
|
|
90
124
|
*/
|
|
91
125
|
componentConfigChange: FunctionConstructor;
|
|
126
|
+
/**
|
|
127
|
+
* @zh 组件集合
|
|
128
|
+
*/
|
|
129
|
+
flowComponents: {
|
|
130
|
+
type: PropType<Record<string, any>[]>;
|
|
131
|
+
default: () => never[];
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* @zh 编排组件初始化方法
|
|
135
|
+
*/
|
|
136
|
+
flowInit: FunctionConstructor;
|
|
137
|
+
/**
|
|
138
|
+
* @zh 组件配置初始化方法
|
|
139
|
+
*/
|
|
140
|
+
flowComponentConfigInit: FunctionConstructor;
|
|
141
|
+
/**
|
|
142
|
+
* @zh 编排组件设置变更方法
|
|
143
|
+
*/
|
|
144
|
+
flowComponentConfigChange: FunctionConstructor;
|
|
145
|
+
/**
|
|
146
|
+
* @zh 编排组件设置方法
|
|
147
|
+
*/
|
|
148
|
+
flowComponentConfigs: {
|
|
149
|
+
type: PropType<Record<string, FormSchemaConfig[]>>;
|
|
150
|
+
default: () => {};
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* @zh 操作集合(预览时使用)
|
|
154
|
+
*/
|
|
155
|
+
actions: {
|
|
156
|
+
type: PropType<Record<string, any>>;
|
|
157
|
+
default: () => {};
|
|
158
|
+
};
|
|
92
159
|
/**
|
|
93
160
|
* @zh 图片路由前缀
|
|
94
161
|
*/
|
|
@@ -107,7 +174,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
107
174
|
"onUpdate:scale"?: ((...args: any[]) => any) | undefined;
|
|
108
175
|
}>, {
|
|
109
176
|
components: Record<string, any>[];
|
|
177
|
+
flowComponents: Record<string, any>[];
|
|
110
178
|
scale: number;
|
|
179
|
+
flowComponentConfigs: Record<string, FormSchemaConfig[]>;
|
|
180
|
+
actions: Record<string, any>;
|
|
111
181
|
componentConfigs: Record<string, FormSchemaConfig[]>;
|
|
112
182
|
imgUrlPrefix: string;
|
|
113
183
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
@@ -15,6 +15,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
15
15
|
type: PropType<BiDesignComponent>;
|
|
16
16
|
default: () => {};
|
|
17
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* @zh 操作集合
|
|
20
|
+
*/
|
|
21
|
+
actions: {
|
|
22
|
+
type: PropType<Record<string, any>>;
|
|
23
|
+
default: () => {};
|
|
24
|
+
};
|
|
18
25
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
19
26
|
/**
|
|
20
27
|
* @zh 组件配置
|
|
@@ -30,8 +37,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
37
|
type: PropType<BiDesignComponent>;
|
|
31
38
|
default: () => {};
|
|
32
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* @zh 操作集合
|
|
42
|
+
*/
|
|
43
|
+
actions: {
|
|
44
|
+
type: PropType<Record<string, any>>;
|
|
45
|
+
default: () => {};
|
|
46
|
+
};
|
|
33
47
|
}>> & Readonly<{}>, {
|
|
34
48
|
layout: Layout;
|
|
49
|
+
actions: Record<string, any>;
|
|
35
50
|
indexPage: BiDesignComponent;
|
|
36
51
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
37
52
|
biViewer: HTMLDivElement;
|