@a2simcode/dui 0.0.40 → 0.0.42

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/LICENSE ADDED
@@ -0,0 +1,53 @@
1
+ 专有软件许可协议
2
+
3
+ 版权所有 © 2024 苏州极简搭信息技术有限公司。保留所有权利。
4
+
5
+ 本软件及其相关文档("软件")为专有软件,受版权法和国际条约保护。
6
+
7
+ 许可限制:
8
+
9
+ 1. 本软件仅授权给获得明确书面许可的用户使用。
10
+
11
+ 2. 未经版权所有者事先书面同意,您不得:
12
+ - 复制、修改、改编或翻译本软件
13
+ - 对本软件进行反向工程、反编译或反汇编
14
+ - 出租、出借、分发、转让或再许可本软件
15
+ - 删除或修改本软件中的任何版权声明或其他所有权标记
16
+
17
+ 3. 本软件按"现状"提供,不提供任何明示或暗示的保证,包括但不限于适销性、特定用途适用性和非侵权性的保证。
18
+
19
+ 4. 在任何情况下,版权所有者均不对因使用或无法使用本软件而产生的任何索赔、损害或其他责任负责。
20
+
21
+ 5. 本许可协议受中华人民共和国法律管辖。
22
+
23
+ 如需获得使用许可,请联系版权所有者。
24
+
25
+ ---
26
+
27
+ PROPRIETARY SOFTWARE LICENSE
28
+
29
+ Copyright © 2024 Suzhou Jijian-da Information Technology Co., Ltd. All rights reserved.
30
+
31
+ This software and associated documentation files (the "Software") is proprietary
32
+ software protected by copyright laws and international treaties.
33
+
34
+ License Restrictions:
35
+
36
+ 1. This Software is licensed only to users who have obtained explicit written permission.
37
+
38
+ 2. Without prior written consent from the copyright holder, you may not:
39
+ - Copy, modify, adapt, or translate the Software
40
+ - Reverse engineer, decompile, or disassemble the Software
41
+ - Rent, lease, distribute, transfer, or sublicense the Software
42
+ - Remove or modify any copyright notices or other proprietary markings in the Software
43
+
44
+ 3. The Software is provided "as is" without warranty of any kind, express or implied,
45
+ including but not limited to warranties of merchantability, fitness for a particular
46
+ purpose, and non-infringement.
47
+
48
+ 4. In no event shall the copyright holder be liable for any claims, damages, or other
49
+ liability arising from the use or inability to use the Software.
50
+
51
+ 5. This license agreement is governed by the laws of the People's Republic of China.
52
+
53
+ For licensing inquiries, please contact the copyright holder.
@@ -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;
@@ -31,5 +31,9 @@ export interface BiDesignComponent {
31
31
  * @zh 配置信息
32
32
  */
33
33
  config: Record<string, any>;
34
+ /**
35
+ * @zh 组件实例
36
+ */
37
+ $refs?: any;
34
38
  }
35
39
  export type Layout = Array<BiDesignComponent>;