@byteluck-fe/model-driven-shared 1.3.0-beta.27 → 1.3.0-beta.28
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/types/EventLogic.d.ts +241 -0
- package/dist/types/RulesMessage.d.ts +14 -0
- package/dist/types/calc.d.ts +74 -0
- package/dist/types/constant.d.ts +2 -0
- package/dist/types/entity/Department.d.ts +15 -0
- package/dist/types/entity/User.d.ts +85 -0
- package/dist/types/entity/index.d.ts +2 -0
- package/dist/types/enum.d.ts +231 -0
- package/dist/types/genNonDuplicateId.d.ts +1 -0
- package/dist/types/index.d.ts +13 -0
- package/dist/types/locales/index.d.ts +195 -0
- package/dist/types/log.d.ts +5 -0
- package/dist/types/loopControls.d.ts +1 -0
- package/dist/types/updateValueFromKeys.d.ts +8 -0
- package/dist/types/utils.d.ts +34 -0
- package/dist/types/watcher.d.ts +14 -0
- package/package.json +1 -1
- package/dist/index.umd.js +0 -1
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
import { FieldTypes } from './enum';
|
|
2
|
+
export interface CustomEventItem {
|
|
3
|
+
key: string;
|
|
4
|
+
name: string;
|
|
5
|
+
namespace?: string;
|
|
6
|
+
args?: {
|
|
7
|
+
key: string;
|
|
8
|
+
type: FieldTypes;
|
|
9
|
+
name: string;
|
|
10
|
+
}[];
|
|
11
|
+
returnType?: FieldTypes;
|
|
12
|
+
falseToStop?: false;
|
|
13
|
+
}
|
|
14
|
+
export interface EventItem {
|
|
15
|
+
key: string;
|
|
16
|
+
name: string;
|
|
17
|
+
code: string;
|
|
18
|
+
}
|
|
19
|
+
declare const eventMap: readonly [{
|
|
20
|
+
readonly key: "on_click";
|
|
21
|
+
readonly name: "点击时";
|
|
22
|
+
readonly code: "click";
|
|
23
|
+
}, {
|
|
24
|
+
readonly key: "on_click_finish";
|
|
25
|
+
readonly name: "执行完成时";
|
|
26
|
+
readonly code: "click-finish";
|
|
27
|
+
}, {
|
|
28
|
+
readonly key: "on_change";
|
|
29
|
+
readonly name: "值发生变化时";
|
|
30
|
+
readonly code: "change";
|
|
31
|
+
}, {
|
|
32
|
+
readonly key: "on_search";
|
|
33
|
+
readonly name: "搜索时";
|
|
34
|
+
readonly code: "search";
|
|
35
|
+
}, {
|
|
36
|
+
readonly key: "on_list_change";
|
|
37
|
+
readonly name: "列表数据变化时";
|
|
38
|
+
readonly code: "list-change";
|
|
39
|
+
}, {
|
|
40
|
+
readonly key: "on_list_search";
|
|
41
|
+
readonly name: "列表数据查询构建时";
|
|
42
|
+
readonly code: "list-search";
|
|
43
|
+
}, {
|
|
44
|
+
readonly key: "on_list_mounted";
|
|
45
|
+
readonly name: "列表数据返回时";
|
|
46
|
+
readonly code: "list-mounted";
|
|
47
|
+
}, {
|
|
48
|
+
readonly key: "on_list_delete";
|
|
49
|
+
readonly name: "列表数据删除时";
|
|
50
|
+
readonly code: "list-delete";
|
|
51
|
+
}, {
|
|
52
|
+
readonly key: "on_input";
|
|
53
|
+
readonly name: "用户输入时";
|
|
54
|
+
readonly code: "input";
|
|
55
|
+
}, {
|
|
56
|
+
readonly key: "on_blur";
|
|
57
|
+
readonly name: "失去焦点时";
|
|
58
|
+
readonly code: "blur";
|
|
59
|
+
}, {
|
|
60
|
+
readonly key: "on_focus";
|
|
61
|
+
readonly name: "获取焦点时";
|
|
62
|
+
readonly code: "focus";
|
|
63
|
+
}, {
|
|
64
|
+
readonly key: "on_wps_open";
|
|
65
|
+
readonly name: "打开文件时";
|
|
66
|
+
readonly code: "wps-open";
|
|
67
|
+
}, {
|
|
68
|
+
readonly key: "on_wps_save";
|
|
69
|
+
readonly name: "保存文件时";
|
|
70
|
+
readonly code: "wps-save";
|
|
71
|
+
}, {
|
|
72
|
+
readonly key: "on_wps_rename";
|
|
73
|
+
readonly name: "重命名时";
|
|
74
|
+
readonly code: "wps-rename";
|
|
75
|
+
}, {
|
|
76
|
+
readonly key: "on_list_actions";
|
|
77
|
+
readonly name: "点击操作按钮时";
|
|
78
|
+
readonly code: "list-actions";
|
|
79
|
+
}, {
|
|
80
|
+
readonly key: "on_list_rowclick";
|
|
81
|
+
readonly name: "行点击时";
|
|
82
|
+
readonly code: "list-rowclick";
|
|
83
|
+
}, {
|
|
84
|
+
readonly key: "on_list_before_rowdelete";
|
|
85
|
+
readonly name: "行删除前";
|
|
86
|
+
readonly code: "list-before-rowdelete";
|
|
87
|
+
}, {
|
|
88
|
+
readonly key: "on_list_before_import";
|
|
89
|
+
readonly name: "列表数据导入前";
|
|
90
|
+
readonly code: "list-before-import";
|
|
91
|
+
}];
|
|
92
|
+
export declare type InnerEventCode = typeof eventMap[number]['code'];
|
|
93
|
+
export declare class EventLogic {
|
|
94
|
+
static readonly events: readonly [{
|
|
95
|
+
readonly key: "on_click";
|
|
96
|
+
readonly name: "点击时";
|
|
97
|
+
readonly code: "click";
|
|
98
|
+
}, {
|
|
99
|
+
readonly key: "on_click_finish";
|
|
100
|
+
readonly name: "执行完成时";
|
|
101
|
+
readonly code: "click-finish";
|
|
102
|
+
}, {
|
|
103
|
+
readonly key: "on_change";
|
|
104
|
+
readonly name: "值发生变化时";
|
|
105
|
+
readonly code: "change";
|
|
106
|
+
}, {
|
|
107
|
+
readonly key: "on_search";
|
|
108
|
+
readonly name: "搜索时";
|
|
109
|
+
readonly code: "search";
|
|
110
|
+
}, {
|
|
111
|
+
readonly key: "on_list_change";
|
|
112
|
+
readonly name: "列表数据变化时";
|
|
113
|
+
readonly code: "list-change";
|
|
114
|
+
}, {
|
|
115
|
+
readonly key: "on_list_search";
|
|
116
|
+
readonly name: "列表数据查询构建时";
|
|
117
|
+
readonly code: "list-search";
|
|
118
|
+
}, {
|
|
119
|
+
readonly key: "on_list_mounted";
|
|
120
|
+
readonly name: "列表数据返回时";
|
|
121
|
+
readonly code: "list-mounted";
|
|
122
|
+
}, {
|
|
123
|
+
readonly key: "on_list_delete";
|
|
124
|
+
readonly name: "列表数据删除时";
|
|
125
|
+
readonly code: "list-delete";
|
|
126
|
+
}, {
|
|
127
|
+
readonly key: "on_input";
|
|
128
|
+
readonly name: "用户输入时";
|
|
129
|
+
readonly code: "input";
|
|
130
|
+
}, {
|
|
131
|
+
readonly key: "on_blur";
|
|
132
|
+
readonly name: "失去焦点时";
|
|
133
|
+
readonly code: "blur";
|
|
134
|
+
}, {
|
|
135
|
+
readonly key: "on_focus";
|
|
136
|
+
readonly name: "获取焦点时";
|
|
137
|
+
readonly code: "focus";
|
|
138
|
+
}, {
|
|
139
|
+
readonly key: "on_wps_open";
|
|
140
|
+
readonly name: "打开文件时";
|
|
141
|
+
readonly code: "wps-open";
|
|
142
|
+
}, {
|
|
143
|
+
readonly key: "on_wps_save";
|
|
144
|
+
readonly name: "保存文件时";
|
|
145
|
+
readonly code: "wps-save";
|
|
146
|
+
}, {
|
|
147
|
+
readonly key: "on_wps_rename";
|
|
148
|
+
readonly name: "重命名时";
|
|
149
|
+
readonly code: "wps-rename";
|
|
150
|
+
}, {
|
|
151
|
+
readonly key: "on_list_actions";
|
|
152
|
+
readonly name: "点击操作按钮时";
|
|
153
|
+
readonly code: "list-actions";
|
|
154
|
+
}, {
|
|
155
|
+
readonly key: "on_list_rowclick";
|
|
156
|
+
readonly name: "行点击时";
|
|
157
|
+
readonly code: "list-rowclick";
|
|
158
|
+
}, {
|
|
159
|
+
readonly key: "on_list_before_rowdelete";
|
|
160
|
+
readonly name: "行删除前";
|
|
161
|
+
readonly code: "list-before-rowdelete";
|
|
162
|
+
}, {
|
|
163
|
+
readonly key: "on_list_before_import";
|
|
164
|
+
readonly name: "列表数据导入前";
|
|
165
|
+
readonly code: "list-before-import";
|
|
166
|
+
}];
|
|
167
|
+
getEventsFromKeys(keys: string | string[]): ({
|
|
168
|
+
readonly key: "on_click";
|
|
169
|
+
readonly name: "点击时";
|
|
170
|
+
readonly code: "click";
|
|
171
|
+
} | {
|
|
172
|
+
readonly key: "on_click_finish";
|
|
173
|
+
readonly name: "执行完成时";
|
|
174
|
+
readonly code: "click-finish";
|
|
175
|
+
} | {
|
|
176
|
+
readonly key: "on_change";
|
|
177
|
+
readonly name: "值发生变化时";
|
|
178
|
+
readonly code: "change";
|
|
179
|
+
} | {
|
|
180
|
+
readonly key: "on_search";
|
|
181
|
+
readonly name: "搜索时";
|
|
182
|
+
readonly code: "search";
|
|
183
|
+
} | {
|
|
184
|
+
readonly key: "on_list_change";
|
|
185
|
+
readonly name: "列表数据变化时";
|
|
186
|
+
readonly code: "list-change";
|
|
187
|
+
} | {
|
|
188
|
+
readonly key: "on_list_search";
|
|
189
|
+
readonly name: "列表数据查询构建时";
|
|
190
|
+
readonly code: "list-search";
|
|
191
|
+
} | {
|
|
192
|
+
readonly key: "on_list_mounted";
|
|
193
|
+
readonly name: "列表数据返回时";
|
|
194
|
+
readonly code: "list-mounted";
|
|
195
|
+
} | {
|
|
196
|
+
readonly key: "on_list_delete";
|
|
197
|
+
readonly name: "列表数据删除时";
|
|
198
|
+
readonly code: "list-delete";
|
|
199
|
+
} | {
|
|
200
|
+
readonly key: "on_input";
|
|
201
|
+
readonly name: "用户输入时";
|
|
202
|
+
readonly code: "input";
|
|
203
|
+
} | {
|
|
204
|
+
readonly key: "on_blur";
|
|
205
|
+
readonly name: "失去焦点时";
|
|
206
|
+
readonly code: "blur";
|
|
207
|
+
} | {
|
|
208
|
+
readonly key: "on_focus";
|
|
209
|
+
readonly name: "获取焦点时";
|
|
210
|
+
readonly code: "focus";
|
|
211
|
+
} | {
|
|
212
|
+
readonly key: "on_wps_open";
|
|
213
|
+
readonly name: "打开文件时";
|
|
214
|
+
readonly code: "wps-open";
|
|
215
|
+
} | {
|
|
216
|
+
readonly key: "on_wps_save";
|
|
217
|
+
readonly name: "保存文件时";
|
|
218
|
+
readonly code: "wps-save";
|
|
219
|
+
} | {
|
|
220
|
+
readonly key: "on_wps_rename";
|
|
221
|
+
readonly name: "重命名时";
|
|
222
|
+
readonly code: "wps-rename";
|
|
223
|
+
} | {
|
|
224
|
+
readonly key: "on_list_actions";
|
|
225
|
+
readonly name: "点击操作按钮时";
|
|
226
|
+
readonly code: "list-actions";
|
|
227
|
+
} | {
|
|
228
|
+
readonly key: "on_list_rowclick";
|
|
229
|
+
readonly name: "行点击时";
|
|
230
|
+
readonly code: "list-rowclick";
|
|
231
|
+
} | {
|
|
232
|
+
readonly key: "on_list_before_rowdelete";
|
|
233
|
+
readonly name: "行删除前";
|
|
234
|
+
readonly code: "list-before-rowdelete";
|
|
235
|
+
} | {
|
|
236
|
+
readonly key: "on_list_before_import";
|
|
237
|
+
readonly name: "列表数据导入前";
|
|
238
|
+
readonly code: "list-before-import";
|
|
239
|
+
})[];
|
|
240
|
+
}
|
|
241
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import OkI18n from 'ok-i18n';
|
|
2
|
+
import messages from './locales';
|
|
3
|
+
declare type Message = Partial<typeof messages['zhCN']>;
|
|
4
|
+
declare type Keys = 'caption' | 'placeholder' | 'max' | 'min';
|
|
5
|
+
declare type Variable = {
|
|
6
|
+
[key in Keys]?: string | number;
|
|
7
|
+
};
|
|
8
|
+
export declare class RulesMessage {
|
|
9
|
+
static $i18n: OkI18n;
|
|
10
|
+
static getMessage(messageKey: keyof Message, variable?: Variable): string;
|
|
11
|
+
static resetI18n(locale?: string): OkI18n;
|
|
12
|
+
static setLocale(locale: string): void;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
export declare enum CALC_TOKEN_TYPE {
|
|
2
|
+
/**
|
|
3
|
+
* 数值
|
|
4
|
+
* */
|
|
5
|
+
Number = "Number",
|
|
6
|
+
/**
|
|
7
|
+
* 公式符号
|
|
8
|
+
* */
|
|
9
|
+
Operator = "Operator",
|
|
10
|
+
/**
|
|
11
|
+
* 变量存在于主页面中
|
|
12
|
+
* */
|
|
13
|
+
VariableInMainTable = "VariableInMainTable",
|
|
14
|
+
/**
|
|
15
|
+
* 变量存在当前明细子表内
|
|
16
|
+
* 说明计算公式在明细子表的某一行,且依赖项也在同一行内
|
|
17
|
+
* */
|
|
18
|
+
VariableInCurrentSubTable = "VariableInCurrentSubTable",
|
|
19
|
+
/**
|
|
20
|
+
* 变量存在其它明细子表内
|
|
21
|
+
* 说明计算公式依赖于其它明细子表,计算公式可能在明细子表内,也可能不在
|
|
22
|
+
* */
|
|
23
|
+
VariableInOtherSubTable = "VariableInOtherSubTable",
|
|
24
|
+
/**
|
|
25
|
+
* 未定义的变量
|
|
26
|
+
* 当绑定的变量在schema中不存在时,会成为该项,在设计态会报错
|
|
27
|
+
* */
|
|
28
|
+
UndefinedVariable = "UndefinedVariable"
|
|
29
|
+
}
|
|
30
|
+
export declare enum CALC_AGGREGATE_TYPE {
|
|
31
|
+
/**
|
|
32
|
+
* 总和
|
|
33
|
+
* */
|
|
34
|
+
SUM = "SUM",
|
|
35
|
+
/**
|
|
36
|
+
* 平均值
|
|
37
|
+
* */
|
|
38
|
+
AVG = "AVG",
|
|
39
|
+
/**
|
|
40
|
+
* 最大值
|
|
41
|
+
* */
|
|
42
|
+
MAX = "MAX",
|
|
43
|
+
/**
|
|
44
|
+
* 最小值
|
|
45
|
+
* */
|
|
46
|
+
MIN = "MIN"
|
|
47
|
+
}
|
|
48
|
+
export declare class CalcScriptEchoItem {
|
|
49
|
+
/**
|
|
50
|
+
* 变量名称或者公式符号或者数值
|
|
51
|
+
* */
|
|
52
|
+
name: string;
|
|
53
|
+
/**
|
|
54
|
+
* 如果是变量的话,id为控件id
|
|
55
|
+
* */
|
|
56
|
+
id: string;
|
|
57
|
+
/**
|
|
58
|
+
* 当前值的类型
|
|
59
|
+
* */
|
|
60
|
+
type: CALC_TOKEN_TYPE;
|
|
61
|
+
/**
|
|
62
|
+
* 绑定的是明细子表变量时,必须有subTableId
|
|
63
|
+
* */
|
|
64
|
+
subTableId?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 绑定的是明细子表内变量时,必须有subTableName
|
|
67
|
+
* */
|
|
68
|
+
subTableName?: string;
|
|
69
|
+
/**
|
|
70
|
+
* 绑定的是其它明细子表内变量时,必须有aggregateType
|
|
71
|
+
* */
|
|
72
|
+
aggregateType?: CALC_AGGREGATE_TYPE;
|
|
73
|
+
constructor(props: Partial<CalcScriptEchoItem>);
|
|
74
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author qiyu
|
|
3
|
+
* @description 属性只是简单从接口拿过来,还未仔细考虑
|
|
4
|
+
*/
|
|
5
|
+
export declare class UserEntity {
|
|
6
|
+
'avatar_big'?: string;
|
|
7
|
+
'avatar_small'?: string;
|
|
8
|
+
/**
|
|
9
|
+
* 员工头像地址
|
|
10
|
+
*/
|
|
11
|
+
'avatar_url'?: string;
|
|
12
|
+
/**
|
|
13
|
+
* 归属部门英文名称
|
|
14
|
+
*/
|
|
15
|
+
'belong_dept_en_name'?: string;
|
|
16
|
+
'belong_dept_id_list'?: Array<string>;
|
|
17
|
+
/**
|
|
18
|
+
* 归属部门ID
|
|
19
|
+
*/
|
|
20
|
+
'belong_dept_ids'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* 归属部门名称
|
|
23
|
+
*/
|
|
24
|
+
'belong_dept_name'?: string;
|
|
25
|
+
/**
|
|
26
|
+
* 当前语言版本
|
|
27
|
+
*/
|
|
28
|
+
'cookie_language_enum'?: 'ZH_CN' | 'EN_US' | 'JA_JP';
|
|
29
|
+
/**
|
|
30
|
+
* 部门id
|
|
31
|
+
*/
|
|
32
|
+
'department_id'?: string;
|
|
33
|
+
/**
|
|
34
|
+
* 部门名称
|
|
35
|
+
*/
|
|
36
|
+
'department_name'?: string;
|
|
37
|
+
/**
|
|
38
|
+
* 员工邮箱
|
|
39
|
+
*/
|
|
40
|
+
'email'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 工号
|
|
43
|
+
*/
|
|
44
|
+
'employee_card'?: string;
|
|
45
|
+
/**
|
|
46
|
+
* 英文名
|
|
47
|
+
*/
|
|
48
|
+
'employee_en_name'?: string;
|
|
49
|
+
/**
|
|
50
|
+
* 员工编号
|
|
51
|
+
*/
|
|
52
|
+
'employee_id'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* 员工姓名
|
|
55
|
+
*/
|
|
56
|
+
'employee_name'?: string;
|
|
57
|
+
'external_user'?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* 性别
|
|
60
|
+
*/
|
|
61
|
+
'gender'?: number;
|
|
62
|
+
'is_show_chat_group'?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* 负责部门英文名称
|
|
65
|
+
*/
|
|
66
|
+
'manage_dept_en_name'?: string;
|
|
67
|
+
/**
|
|
68
|
+
* 负责部门ID
|
|
69
|
+
*/
|
|
70
|
+
'manage_dept_ids'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* 负责部门名称
|
|
73
|
+
*/
|
|
74
|
+
'manage_dept_name'?: string;
|
|
75
|
+
'msg_relation_type'?: string;
|
|
76
|
+
/**
|
|
77
|
+
* 职级
|
|
78
|
+
*/
|
|
79
|
+
'sequence'?: string;
|
|
80
|
+
/**
|
|
81
|
+
* 固定电话
|
|
82
|
+
*/
|
|
83
|
+
'telephone'?: string;
|
|
84
|
+
'tenant_id'?: string;
|
|
85
|
+
}
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
export declare enum CONTROL_BASE_TYPE {
|
|
2
|
+
BASE = "base",
|
|
3
|
+
FORM = "form",
|
|
4
|
+
LAYOUT = "layout",
|
|
5
|
+
WRAP = "wrap",
|
|
6
|
+
COLUMN = "column",
|
|
7
|
+
LIST = "list",
|
|
8
|
+
SEARCH = "search"
|
|
9
|
+
}
|
|
10
|
+
export declare enum CONTROL_TYPE {
|
|
11
|
+
TITLE = "title",
|
|
12
|
+
LINK = "link",
|
|
13
|
+
BUTTON = "button",
|
|
14
|
+
DIVIDER = "divider",
|
|
15
|
+
TEXT = "text",
|
|
16
|
+
CREATE_FORM_LIST_BUTTON = "list-page-btn-create-form",
|
|
17
|
+
BATCH_SUBMISSION_LIST_BUTTON = "list-page-btn-batch-submission",
|
|
18
|
+
SUBMISSION_RECORD_LIST_BUTTON = "list-page-btn-submission-record",
|
|
19
|
+
IMPORT_RECORD_LIST_BUTTON = "list-page-btn-import-record",
|
|
20
|
+
EXPORT_RECORD_LIST_BUTTON = "list-page-btn-export-record",
|
|
21
|
+
EXPORT_LIST_BUTTON = "list-page-btn-export-list",
|
|
22
|
+
LIST_SELECT_BUTTON = "list-select-button",
|
|
23
|
+
FORM_SELECT_BUTTON = "form-select-button",
|
|
24
|
+
LIST_VIEW_SELECT = "list-view-select",
|
|
25
|
+
TEXT_OCR_BUTTON = "text-ocr-button",
|
|
26
|
+
INVOICE_CHECK_BUTTON = "invoice-check-button",
|
|
27
|
+
LIST_PAGE_BTN_BATCH_PRINT = "list-page-btn-batch-print",
|
|
28
|
+
LIST_PAGE_BTN_BATCH_PRINT_RECORD = "list-page-btn-batch-print-record",
|
|
29
|
+
VARCHAR_COLUMN = "varchar-column",
|
|
30
|
+
TEXT_COLUMN = "text-column",
|
|
31
|
+
DECIMAL_COLUMN = "decimal-column",
|
|
32
|
+
TIMESCOPE_COLUMN = "timescope-column",
|
|
33
|
+
TIMESTAMP_COLUMN = "timestamp-column",
|
|
34
|
+
ARRAY_COLUMN = "array-column",
|
|
35
|
+
DEPARTMENT_COLUMN = "department-column",
|
|
36
|
+
AUTO_NUMBER_COLUMN = "auto-number-column",
|
|
37
|
+
FILE_COLUMN = "file-column",
|
|
38
|
+
IMAGE_COLUMN = "image-column",
|
|
39
|
+
PEOPLE_COLUMN = "people-column",
|
|
40
|
+
LOCATION_COLUMN = "location-column",
|
|
41
|
+
CUSTOM_COLUMN = "custom-column",
|
|
42
|
+
ORDER_COLUMN = "order-column",
|
|
43
|
+
OPERATION_COLUMN = "operation-column",
|
|
44
|
+
EMPLOYEE_COLUMN = "employee-column",
|
|
45
|
+
ADDRESS = "address",
|
|
46
|
+
AMOUNT = "amount",
|
|
47
|
+
ATTACHMENT = "attachment",
|
|
48
|
+
AUTO_NUMBER = "auto-number",
|
|
49
|
+
CALC = "calc",
|
|
50
|
+
CHECKBOX = "checkbox",
|
|
51
|
+
DATE_PICKER = "date-picker",
|
|
52
|
+
DATE_RANGE = "date-range",
|
|
53
|
+
DEPARTMENT = "department",
|
|
54
|
+
EMPLOYEE = "employee",
|
|
55
|
+
IMAGE = "image",
|
|
56
|
+
INPUT = "input",
|
|
57
|
+
NUMBER = "number",
|
|
58
|
+
RADIO = "radio",
|
|
59
|
+
RICH_TEXT = "rich-text",
|
|
60
|
+
SCORE = "score",
|
|
61
|
+
SEARCH_DATE_RANGE = "search-date-range",
|
|
62
|
+
SEARCH_NUMBER_RANGE = "search-number-range",
|
|
63
|
+
SEARCH_INPUT = "search-input",
|
|
64
|
+
SELECT = "select",
|
|
65
|
+
SELECT_MULTIPLE = "select-multiple",
|
|
66
|
+
SELECT_RELATION = "select-relation",
|
|
67
|
+
VUE_FORM_ITEM = "vue-form-item",
|
|
68
|
+
TEXTAREA = "textarea",
|
|
69
|
+
EMAIL = "email",
|
|
70
|
+
FOOTER = "footer",
|
|
71
|
+
HEADER = "header",
|
|
72
|
+
ID_CARD = "id-card",
|
|
73
|
+
MOBILE = "mobile",
|
|
74
|
+
PHONE = "phone",
|
|
75
|
+
RADIO_IMAGE = "radio-image",
|
|
76
|
+
ELECTRONIC_SIGNATURE = "electronic-signature",
|
|
77
|
+
WPS = "wps",
|
|
78
|
+
CARD_GROUP = "card-group",
|
|
79
|
+
COL = "col",
|
|
80
|
+
GRID = "grid",
|
|
81
|
+
GRID_ROW = "grid-row",
|
|
82
|
+
GRID_TABLE_COLUMN = "grid-table-column",
|
|
83
|
+
ROW = "row",
|
|
84
|
+
TWO_COLUMNS = "two-columns",
|
|
85
|
+
SUBTABLE_COLUMN = "subtable-column",
|
|
86
|
+
SUBTABLE_ROW = "subtable-row",
|
|
87
|
+
TAB = "tab",
|
|
88
|
+
TAB_PANE = "tab-pane",
|
|
89
|
+
TOOLBOX = "toolbox",
|
|
90
|
+
DATA_VIEW = "data-view",
|
|
91
|
+
LIST_VIEW = "list-view",
|
|
92
|
+
SUBTABLE = "subtable",
|
|
93
|
+
GRID_TABLE = "grid-table",
|
|
94
|
+
SIMPLE_SEARCH = "simple-search",
|
|
95
|
+
PAGINATION = "pagination",
|
|
96
|
+
CHECKBOX_IMAGE = "checkbox-image",
|
|
97
|
+
DASHBOARD = "dashboard",
|
|
98
|
+
TREE = "tree",
|
|
99
|
+
EMPLOYEE2 = "employee2"
|
|
100
|
+
}
|
|
101
|
+
export declare enum FieldTypes {
|
|
102
|
+
/**
|
|
103
|
+
* 短文本,string
|
|
104
|
+
* */
|
|
105
|
+
VARCHAR = "varchar",
|
|
106
|
+
/**
|
|
107
|
+
* 长文本, string
|
|
108
|
+
* */
|
|
109
|
+
TEXT = "text",
|
|
110
|
+
/**
|
|
111
|
+
* 数组, Array<string>
|
|
112
|
+
* */
|
|
113
|
+
ARRAY = "array",
|
|
114
|
+
/**
|
|
115
|
+
* 地址, AddressValue { city:string, district:string, province: string }
|
|
116
|
+
* */
|
|
117
|
+
ADDRESS = "location",
|
|
118
|
+
/**
|
|
119
|
+
* 数字, number
|
|
120
|
+
* */
|
|
121
|
+
DECIMAL = "decimal",
|
|
122
|
+
/**
|
|
123
|
+
* 数字区间, Array<number>
|
|
124
|
+
* */
|
|
125
|
+
DECIMAL_RANGE = "decimal_range",
|
|
126
|
+
/**
|
|
127
|
+
* 日期, 时间戳字符串 string
|
|
128
|
+
* */
|
|
129
|
+
TIMESTAMP = "timestamp",
|
|
130
|
+
/**
|
|
131
|
+
* 人员, Array<人员id string>
|
|
132
|
+
* */
|
|
133
|
+
EMPLOYEES = "people",
|
|
134
|
+
/**
|
|
135
|
+
* 部门, Array<部门id string>
|
|
136
|
+
* */
|
|
137
|
+
DEPARTMENTS = "department",
|
|
138
|
+
/**
|
|
139
|
+
* 金额, AmountValue { amount: number, currency: string }
|
|
140
|
+
* */
|
|
141
|
+
MONEY = "money",
|
|
142
|
+
/**
|
|
143
|
+
* 日期区间, DateRangeValue { max: string, min: string }
|
|
144
|
+
* */
|
|
145
|
+
TIMESCOPE = "timescope",
|
|
146
|
+
/**
|
|
147
|
+
* 附件, Array<附件id string>
|
|
148
|
+
* */
|
|
149
|
+
FILE = "file",
|
|
150
|
+
/**
|
|
151
|
+
* 图片, Array<图片id string>
|
|
152
|
+
* */
|
|
153
|
+
IMAGE = "image",
|
|
154
|
+
/**
|
|
155
|
+
* 自动编号, string
|
|
156
|
+
* */
|
|
157
|
+
AUTO_NUMBER = "auto_number",
|
|
158
|
+
/**
|
|
159
|
+
* 计算公式, CalcValue { result: number, unit: string }
|
|
160
|
+
* */
|
|
161
|
+
CALC = "calc",
|
|
162
|
+
/**
|
|
163
|
+
* 关联键, string
|
|
164
|
+
* */
|
|
165
|
+
RELATION = "relation",
|
|
166
|
+
/**
|
|
167
|
+
* 列表 Array<any>
|
|
168
|
+
* */
|
|
169
|
+
LIST = "list",
|
|
170
|
+
/**
|
|
171
|
+
* 关联字段
|
|
172
|
+
* */
|
|
173
|
+
RELATION_FIELD = "relation-field",
|
|
174
|
+
/**
|
|
175
|
+
* 引用字段
|
|
176
|
+
* */
|
|
177
|
+
REFERENCE_FIELD = "reference-field",
|
|
178
|
+
/**
|
|
179
|
+
* 计算公式字段
|
|
180
|
+
* */
|
|
181
|
+
CALC_FIELD = "calc",
|
|
182
|
+
/**
|
|
183
|
+
* JSON字段
|
|
184
|
+
* */
|
|
185
|
+
JSON = "json",
|
|
186
|
+
/**
|
|
187
|
+
* 整数类型
|
|
188
|
+
* */
|
|
189
|
+
BIGINT = "bigint",
|
|
190
|
+
/**
|
|
191
|
+
* 任意类型
|
|
192
|
+
* */
|
|
193
|
+
ANY = "ANY",
|
|
194
|
+
/**
|
|
195
|
+
* 加密字段
|
|
196
|
+
* */
|
|
197
|
+
ENCRYPTED_FIELD = "encrypted_field"
|
|
198
|
+
}
|
|
199
|
+
export declare const FieldTypeToColumnType: {
|
|
200
|
+
array: CONTROL_TYPE;
|
|
201
|
+
auto_number: CONTROL_TYPE;
|
|
202
|
+
decimal: CONTROL_TYPE;
|
|
203
|
+
department: CONTROL_TYPE;
|
|
204
|
+
file: CONTROL_TYPE;
|
|
205
|
+
image: CONTROL_TYPE;
|
|
206
|
+
location: CONTROL_TYPE;
|
|
207
|
+
people: CONTROL_TYPE;
|
|
208
|
+
text: CONTROL_TYPE;
|
|
209
|
+
timescope: CONTROL_TYPE;
|
|
210
|
+
timestamp: CONTROL_TYPE;
|
|
211
|
+
varchar: CONTROL_TYPE;
|
|
212
|
+
relation: CONTROL_TYPE;
|
|
213
|
+
};
|
|
214
|
+
export declare enum DateType {
|
|
215
|
+
/**
|
|
216
|
+
* 年
|
|
217
|
+
* */
|
|
218
|
+
YEAR = "year",
|
|
219
|
+
/**
|
|
220
|
+
* 年月
|
|
221
|
+
* */
|
|
222
|
+
MONTH = "month",
|
|
223
|
+
/**
|
|
224
|
+
* 年月日
|
|
225
|
+
* */
|
|
226
|
+
DATE = "date",
|
|
227
|
+
/**
|
|
228
|
+
* 年月日时分秒
|
|
229
|
+
* */
|
|
230
|
+
DATETIME = "datetime"
|
|
231
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function genNonDuplicateId(n?: number): string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './entity';
|
|
2
|
+
export * from './locales';
|
|
3
|
+
export * from './calc';
|
|
4
|
+
export * from './constant';
|
|
5
|
+
export * from './enum';
|
|
6
|
+
export * from './genNonDuplicateId';
|
|
7
|
+
export * from './log';
|
|
8
|
+
export * from './loopControls';
|
|
9
|
+
export * from './RulesMessage';
|
|
10
|
+
export * from './updateValueFromKeys';
|
|
11
|
+
export * from './utils';
|
|
12
|
+
export * from './watcher';
|
|
13
|
+
export * from './EventLogic';
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
zhCN: {
|
|
3
|
+
isNotNumber: string;
|
|
4
|
+
isNotString: string;
|
|
5
|
+
isNotObject: string;
|
|
6
|
+
isNotArray: string;
|
|
7
|
+
isNotBoolean: string;
|
|
8
|
+
runtimeRequired: string;
|
|
9
|
+
pleaseEnterCaption: string;
|
|
10
|
+
pleaseEnterCaptionTip: string;
|
|
11
|
+
pleaseEnterPlaceholder: string;
|
|
12
|
+
pleaseEnterFieldCode: string;
|
|
13
|
+
pleaseEnterForm: string;
|
|
14
|
+
pleaseEnterList: string;
|
|
15
|
+
pleaseEnterProcess: string;
|
|
16
|
+
pleaseEnterLabel: string;
|
|
17
|
+
pleaseEnterValue: string;
|
|
18
|
+
bizKeyNotBindFiled: string;
|
|
19
|
+
pleaseEnterNumberRange: string;
|
|
20
|
+
pleaseEnterAValueGreaterThanMin: string;
|
|
21
|
+
pleaseEnterAValueLessThanMax: string;
|
|
22
|
+
numberRangeSetError: string;
|
|
23
|
+
stringRangeError: string;
|
|
24
|
+
attachmentMaxSize: string;
|
|
25
|
+
pleaseEnterTotalScoreSetting: string;
|
|
26
|
+
theTotalScoreMustNotBeLessThan1: string;
|
|
27
|
+
scoreDefaultValueRange: string;
|
|
28
|
+
attachmentLimitError: string;
|
|
29
|
+
PleaseReselectTheOptionalQuantity: string;
|
|
30
|
+
TheMaximumLengthIsGreaterThanTheMinimumLength: string;
|
|
31
|
+
TheMinimumLengthIsGreaterThanTheMaximumLength: string;
|
|
32
|
+
PleaseSelectTheCorrectOptionSettings: string;
|
|
33
|
+
optionIdIsRepeat: string;
|
|
34
|
+
optionIsRequired: string;
|
|
35
|
+
pleaseEnterDataCode: string;
|
|
36
|
+
pleaseEnterValueFieldCode: string;
|
|
37
|
+
pleaseEnterSvcCode: string;
|
|
38
|
+
pleaseBindAtLeastOneDisplayValue: string;
|
|
39
|
+
pleaseSelectProvince: string;
|
|
40
|
+
pleaseSelectCity: string;
|
|
41
|
+
pleaseSelectDistrict: string;
|
|
42
|
+
limitRowsCannotBeLessThan0: string;
|
|
43
|
+
TheNumberOfRowsCannotBeLessThanMinRows: string;
|
|
44
|
+
pleaseEnterColumnWidth: string;
|
|
45
|
+
pleaseSetTheLogicalRelationshipOfAllRuleConditions: string;
|
|
46
|
+
pleaseCompleteAllRulesAndConditions: string;
|
|
47
|
+
pleaseSelectControl: string;
|
|
48
|
+
pleaseSelectAtLeastOneColumn: string;
|
|
49
|
+
pleaseSelectFillBackMode: string;
|
|
50
|
+
pleaseSelectDashboard: string;
|
|
51
|
+
rootNodeIsRequired: string;
|
|
52
|
+
theViewNameCannotBeEmpty: string;
|
|
53
|
+
pleaseSelectOcrType: string;
|
|
54
|
+
pleaseSelectAtLeastOneFieldToFillIn: string;
|
|
55
|
+
pleaseChooseAtLeastOne: string;
|
|
56
|
+
pleaseEnterButtonContent: string;
|
|
57
|
+
pleaseEnterDataCodeInDataSetting: string;
|
|
58
|
+
pleaseEnterValueFieldCodeInDataSetting: string;
|
|
59
|
+
pleaseEnterSvcCodeInDataSetting: string;
|
|
60
|
+
pleaseBindAtLeastOneDisplayValueInDataSetting: string;
|
|
61
|
+
rootNodeIsRequiredInDataSetting: string;
|
|
62
|
+
pleaseEnterMaxHeight: string;
|
|
63
|
+
pleaseEnter: string;
|
|
64
|
+
pleaseEnterWatermark: string;
|
|
65
|
+
pleaseEnterFileName: string;
|
|
66
|
+
pleaseUploadAtLeastOnePrintTemplate: string;
|
|
67
|
+
};
|
|
68
|
+
enUS: {
|
|
69
|
+
isNotNumber: string;
|
|
70
|
+
isNotString: string;
|
|
71
|
+
isNotObject: string;
|
|
72
|
+
isNotArray: string;
|
|
73
|
+
isNotBoolean: string;
|
|
74
|
+
runtimeRequired: string;
|
|
75
|
+
pleaseEnterCaption: string;
|
|
76
|
+
pleaseEnterCaptionTip: string;
|
|
77
|
+
pleaseEnterPlaceholder: string;
|
|
78
|
+
pleaseEnterFieldCode: string;
|
|
79
|
+
pleaseEnterForm: string;
|
|
80
|
+
pleaseEnterList: string;
|
|
81
|
+
pleaseEnterProcess: string;
|
|
82
|
+
pleaseEnterLabel: string;
|
|
83
|
+
pleaseEnterValue: string;
|
|
84
|
+
bizKeyNotBindFiled: string;
|
|
85
|
+
pleaseEnterNumberRange: string;
|
|
86
|
+
pleaseEnterAValueGreaterThanMin: string;
|
|
87
|
+
pleaseEnterAValueLessThanMax: string;
|
|
88
|
+
numberRangeSetError: string;
|
|
89
|
+
stringRangeError: string;
|
|
90
|
+
attachmentMaxSize: string;
|
|
91
|
+
pleaseEnterTotalScoreSetting: string;
|
|
92
|
+
theTotalScoreMustNotBeLessThan1: string;
|
|
93
|
+
scoreDefaultValueRange: string;
|
|
94
|
+
attachmentLimitError: string;
|
|
95
|
+
PleaseReselectTheOptionalQuantity: string;
|
|
96
|
+
TheMaximumLengthIsGreaterThanTheMinimumLength: string;
|
|
97
|
+
TheMinimumLengthIsGreaterThanTheMaximumLength: string;
|
|
98
|
+
PleaseSelectTheCorrectOptionSettings: string;
|
|
99
|
+
optionIdIsRepeat: string;
|
|
100
|
+
optionIsRequired: string;
|
|
101
|
+
pleaseEnterDataCode: string;
|
|
102
|
+
pleaseEnterValueFieldCode: string;
|
|
103
|
+
pleaseEnterSvcCode: string;
|
|
104
|
+
pleaseBindAtLeastOneDisplayValue: string;
|
|
105
|
+
pleaseSelectProvince: string;
|
|
106
|
+
pleaseSelectCity: string;
|
|
107
|
+
pleaseSelectDistrict: string;
|
|
108
|
+
limitRowsCannotBeLessThan0: string;
|
|
109
|
+
TheNumberOfRowsCannotBeLessThanMinRows: string;
|
|
110
|
+
pleaseEnterColumnWidth: string;
|
|
111
|
+
pleaseSetTheLogicalRelationshipOfAllRuleConditions: string;
|
|
112
|
+
pleaseCompleteAllRulesAndConditions: string;
|
|
113
|
+
pleaseSelectControl: string;
|
|
114
|
+
pleaseSelectDashboard: string;
|
|
115
|
+
theViewNameCannotBeEmpty: string;
|
|
116
|
+
pleaseSelectOcrType: string;
|
|
117
|
+
pleaseSelectAtLeastOneFieldToFillIn: string;
|
|
118
|
+
pleaseChooseAtLeastOne: string;
|
|
119
|
+
pleaseEnterButtonContent: string;
|
|
120
|
+
pleaseEnterDataCodeInDataSetting: string;
|
|
121
|
+
pleaseEnterValueFieldCodeInDataSetting: string;
|
|
122
|
+
pleaseEnterSvcCodeInDataSetting: string;
|
|
123
|
+
pleaseBindAtLeastOneDisplayValueInDataSetting: string;
|
|
124
|
+
rootNodeIsRequiredInDataSetting: string;
|
|
125
|
+
pleaseEnterMaxHeight: string;
|
|
126
|
+
pleaseEnter: string;
|
|
127
|
+
pleaseEnterWatermark: string;
|
|
128
|
+
pleaseEnterFileName: string;
|
|
129
|
+
pleaseUploadAtLeastOnePrintTemplate: string;
|
|
130
|
+
};
|
|
131
|
+
jaJP: {
|
|
132
|
+
isNotNumber: string;
|
|
133
|
+
isNotString: string;
|
|
134
|
+
isNotObject: string;
|
|
135
|
+
isNotArray: string;
|
|
136
|
+
isNotBoolean: string;
|
|
137
|
+
runtimeRequired: string;
|
|
138
|
+
pleaseEnterCaption: string;
|
|
139
|
+
pleaseEnterCaptionTip: string;
|
|
140
|
+
pleaseEnterPlaceholder: string;
|
|
141
|
+
pleaseEnterFieldCode: string;
|
|
142
|
+
pleaseEnterForm: string;
|
|
143
|
+
pleaseEnterList: string;
|
|
144
|
+
pleaseEnterProcess: string;
|
|
145
|
+
pleaseEnterLabel: string;
|
|
146
|
+
pleaseEnterValue: string;
|
|
147
|
+
bizKeyNotBindFiled: string;
|
|
148
|
+
pleaseEnterNumberRange: string;
|
|
149
|
+
pleaseEnterAValueGreaterThanMin: string;
|
|
150
|
+
pleaseEnterAValueLessThanMax: string;
|
|
151
|
+
numberRangeSetError: string;
|
|
152
|
+
stringRangeError: string;
|
|
153
|
+
attachmentMaxSize: string;
|
|
154
|
+
pleaseEnterTotalScoreSetting: string;
|
|
155
|
+
theTotalScoreMustNotBeLessThan1: string;
|
|
156
|
+
scoreDefaultValueRange: string;
|
|
157
|
+
attachmentLimitError: string;
|
|
158
|
+
PleaseReselectTheOptionalQuantity: string;
|
|
159
|
+
TheMaximumLengthIsGreaterThanTheMinimumLength: string;
|
|
160
|
+
TheMinimumLengthIsGreaterThanTheMaximumLength: string;
|
|
161
|
+
PleaseSelectTheCorrectOptionSettings: string;
|
|
162
|
+
optionIdIsRepeat: string;
|
|
163
|
+
optionIsRequired: string;
|
|
164
|
+
pleaseEnterDataCode: string;
|
|
165
|
+
pleaseEnterValueFieldCode: string;
|
|
166
|
+
pleaseEnterSvcCode: string;
|
|
167
|
+
pleaseBindAtLeastOneDisplayValue: string;
|
|
168
|
+
pleaseSelectProvince: string;
|
|
169
|
+
pleaseSelectCity: string;
|
|
170
|
+
pleaseSelectDistrict: string;
|
|
171
|
+
limitRowsCannotBeLessThan0: string;
|
|
172
|
+
TheNumberOfRowsCannotBeLessThanMinRows: string;
|
|
173
|
+
pleaseEnterColumnWidth: string;
|
|
174
|
+
pleaseSetTheLogicalRelationshipOfAllRuleConditions: string;
|
|
175
|
+
pleaseCompleteAllRulesAndConditions: string;
|
|
176
|
+
pleaseSelectControl: string;
|
|
177
|
+
pleaseSelectDashboard: string;
|
|
178
|
+
theViewNameCannotBeEmpty: string;
|
|
179
|
+
pleaseSelectOcrType: string;
|
|
180
|
+
pleaseSelectAtLeastOneFieldToFillIn: string;
|
|
181
|
+
pleaseChooseAtLeastOne: string;
|
|
182
|
+
pleaseEnterButtonContent: string;
|
|
183
|
+
pleaseEnterDataCodeInDataSetting: string;
|
|
184
|
+
pleaseEnterValueFieldCodeInDataSetting: string;
|
|
185
|
+
pleaseEnterSvcCodeInDataSetting: string;
|
|
186
|
+
pleaseBindAtLeastOneDisplayValueInDataSetting: string;
|
|
187
|
+
rootNodeIsRequiredInDataSetting: string;
|
|
188
|
+
pleaseEnterMaxHeight: string;
|
|
189
|
+
pleaseEnter: string;
|
|
190
|
+
pleaseEnterWatermark: string;
|
|
191
|
+
pleaseEnterFileName: string;
|
|
192
|
+
pleaseUploadAtLeastOnePrintTemplate: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare function warn(...data: any[]): void;
|
|
2
|
+
export declare function log(...data: any[]): void;
|
|
3
|
+
export declare function error(error: string): never;
|
|
4
|
+
export declare function referenceError(error: string): never;
|
|
5
|
+
export declare function logerror(error: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function loopFormSchema(schema: any[], callback: (item: any) => any): void;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 通过key字符串类修改对象上边的属性
|
|
3
|
+
* @param obj 执行修改的对象
|
|
4
|
+
* @param key 修改的key,可以是 name,可以是0,可以是深层嵌套的obj.0,obj[0].name等等
|
|
5
|
+
* @param value 修改的值
|
|
6
|
+
* @return boolean 是否修改成功
|
|
7
|
+
* */
|
|
8
|
+
export declare function updateValueFromKeys(obj: object, key: string, value: unknown): boolean;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare function JSONCopy(value: any): any;
|
|
2
|
+
export declare function isLanguageObject(arg: unknown): arg is Record<'zh', string>;
|
|
3
|
+
export declare function isPlainObject(arg: unknown): arg is Record<string, unknown>;
|
|
4
|
+
export declare function isObject(val: unknown): boolean;
|
|
5
|
+
export declare function isArray(val: unknown): val is Array<unknown>;
|
|
6
|
+
export declare function isString(val: unknown): val is string;
|
|
7
|
+
export declare function isNumber(val: unknown): val is number;
|
|
8
|
+
export declare function isFunction(val: unknown): val is Function;
|
|
9
|
+
export declare function isStringArray(value: unknown): value is string[];
|
|
10
|
+
export declare function isNumberArray(value: unknown): value is number[];
|
|
11
|
+
export declare function isNumberAndEmptyStringArray(value: unknown): value is (number | '')[];
|
|
12
|
+
export declare function isJSONArray(value: string): boolean;
|
|
13
|
+
export declare function isJSONObject(value: string): boolean;
|
|
14
|
+
export declare function toNumberOrEmpty(value: string): number | "";
|
|
15
|
+
export declare function getNotRepeatItems(arr: string[]): string[];
|
|
16
|
+
export declare function debounce(func: Function, wait?: number): (...args: any[]) => void;
|
|
17
|
+
export declare function wait(time?: number): Promise<unknown>;
|
|
18
|
+
/**
|
|
19
|
+
* schema逐个遍历,提供转换回调
|
|
20
|
+
* @author qiyu
|
|
21
|
+
* @param schemaItems
|
|
22
|
+
* @param convertion
|
|
23
|
+
* @example
|
|
24
|
+
import { loop, camelizeKeys } from 'model-driven-front/lib/utils/dataCleaner'
|
|
25
|
+
new_model = loop(new_model, (item: any) => {
|
|
26
|
+
return camelizeKeys(item)
|
|
27
|
+
})
|
|
28
|
+
*/
|
|
29
|
+
export declare function loop(schemaItems: any[], convertion: (item: any) => any): any;
|
|
30
|
+
export declare function camelizeKeys(arg: object[]): object[];
|
|
31
|
+
export declare function camelizeKeys(arg: object): object;
|
|
32
|
+
export declare function decamelizeKeys(arg: object[]): object[];
|
|
33
|
+
export declare function decamelizeKeys(arg: object): object;
|
|
34
|
+
export declare function isBuiltInControls(type: string): boolean;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
interface Callback {
|
|
2
|
+
(...args: any[]): unknown | Promise<unknown>;
|
|
3
|
+
applyingPluginName?: string;
|
|
4
|
+
}
|
|
5
|
+
declare class Watcher<EventKeys extends string = string> {
|
|
6
|
+
private _events;
|
|
7
|
+
debug: boolean;
|
|
8
|
+
emit(key: EventKeys, ...payload: any[]): Promise<unknown[]>;
|
|
9
|
+
on(key: EventKeys, callback: Callback): void;
|
|
10
|
+
off(key: EventKeys, callback: Callback): void;
|
|
11
|
+
delete(key: EventKeys): void;
|
|
12
|
+
clear(): void;
|
|
13
|
+
}
|
|
14
|
+
export { Watcher, Callback };
|
package/package.json
CHANGED
package/dist/index.umd.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
var ee=(a,F,A)=>new Promise((f,g)=>{var S=B=>{try{h(A.next(B))}catch(d){g(d)}},b=B=>{try{h(A.throw(B))}catch(d){g(d)}},h=B=>B.done?f(B.value):Promise.resolve(B.value).then(S,b);h((A=A.apply(a,F)).next())});(function(a,F){typeof exports=="object"&&typeof module!="undefined"?F(exports):typeof define=="function"&&define.amd?define(["exports"],F):(a=typeof globalThis!="undefined"?globalThis:a||self,F(a.modelDrivenShared={}))})(this,function(a){"use strict";class F{}class A{}var f="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",g="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",S="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",b="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",h="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",B="{caption}\u5FC5\u586B",d="\u8BF7\u8F93\u5165\u6807\u9898",ue="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",te="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",ae="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",ne="\u8BF7\u7ED1\u5B9A\u8868\u5355",re="\u8BF7\u7ED1\u5B9A\u5217\u8868",ie="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",se="\u8BF7\u8F93\u5165\u663E\u793A\u503C",le="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",oe="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Ee="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ce="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Be="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",me="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Fe="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E{min}\u4E14\u5C0F\u4E8E{max}\u7684\u503C",Ae="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",pe="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",he="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",de="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ve="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",De="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",ge="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Ce="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",fe="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Se="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",be="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Ie="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ye="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Me="\u8BF7\u7ED1\u5B9A\u670D\u52A1",$e="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Le="\u8BF7\u9009\u62E9\u7701",we="\u8BF7\u9009\u62E9\u5E02",Ne="\u8BF7\u9009\u62E9\u533A",Re="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Ue="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Ve="\u8BF7\u8F93\u5165\u5217\u5BBD",_e="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Te="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",ze="\u8BF7\u9009\u62E9\u63A7\u4EF6",ke="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",xe="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",je="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ge="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Ke="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",He="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",We="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",qe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Pe="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Xe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Je="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Oe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ze="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ye="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",eu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",uu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",tu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",au="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",nu={isNotNumber:f,isNotString:g,isNotObject:S,isNotArray:b,isNotBoolean:h,runtimeRequired:B,pleaseEnterCaption:d,pleaseEnterCaptionTip:ue,pleaseEnterPlaceholder:te,pleaseEnterFieldCode:ae,pleaseEnterForm:ne,pleaseEnterList:re,pleaseEnterProcess:ie,pleaseEnterLabel:se,pleaseEnterValue:le,bizKeyNotBindFiled:oe,pleaseEnterNumberRange:Ee,pleaseEnterAValueGreaterThanMin:ce,pleaseEnterAValueLessThanMax:Be,numberRangeSetError:me,stringRangeError:Fe,attachmentMaxSize:Ae,pleaseEnterTotalScoreSetting:pe,theTotalScoreMustNotBeLessThan1:he,scoreDefaultValueRange:de,attachmentLimitError:ve,PleaseReselectTheOptionalQuantity:De,TheMaximumLengthIsGreaterThanTheMinimumLength:ge,TheMinimumLengthIsGreaterThanTheMaximumLength:Ce,PleaseSelectTheCorrectOptionSettings:fe,optionIdIsRepeat:Se,optionIsRequired:be,pleaseEnterDataCode:Ie,pleaseEnterValueFieldCode:ye,pleaseEnterSvcCode:Me,pleaseBindAtLeastOneDisplayValue:$e,pleaseSelectProvince:Le,pleaseSelectCity:we,pleaseSelectDistrict:Ne,limitRowsCannotBeLessThan0:Re,TheNumberOfRowsCannotBeLessThanMinRows:Ue,pleaseEnterColumnWidth:Ve,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_e,pleaseCompleteAllRulesAndConditions:Te,pleaseSelectControl:ze,pleaseSelectAtLeastOneColumn:ke,pleaseSelectFillBackMode:xe,pleaseSelectDashboard:je,rootNodeIsRequired:Ge,theViewNameCannotBeEmpty:Ke,pleaseSelectOcrType:He,pleaseSelectAtLeastOneFieldToFillIn:We,pleaseChooseAtLeastOne:qe,pleaseEnterButtonContent:Pe,pleaseEnterDataCodeInDataSetting:Xe,pleaseEnterValueFieldCodeInDataSetting:Je,pleaseEnterSvcCodeInDataSetting:Oe,pleaseBindAtLeastOneDisplayValueInDataSetting:Qe,rootNodeIsRequiredInDataSetting:Ze,pleaseEnterMaxHeight:Ye,pleaseEnter:eu,pleaseEnterWatermark:uu,pleaseEnterFileName:tu,pleaseUploadAtLeastOnePrintTemplate:au},ru="Please enter a number",iu="Please enter a string",su="Please enter an object",lu="Please enter an array",ou="Please enter a boolean",Eu="{caption} Required",cu="Please enter the title",Bu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",mu="Please enter the prompt text",Fu="Please bind data items",Au="Please bind the form",pu="Please bind the list",hu="Please bind the process",du="Please enter the displayed value",vu="Please enter the stored value",Du="The document number is not bound to the data item",gu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Cu="Please enter a value greater than or equal to {min}",fu="Please enter a value less than or equal to {max}",Su="The value range is set incorrectly",bu="Please enter a value longer than {min} and less than {max}",Iu="The attachment size must be between 0MB and 1000MB",yu="Please fill in the total score setting",Mu="The total score cannot be less than 1",$u="The default value must be between {min} and {max}",Lu="The number of attachments uploaded must be between {min} and {max}",wu="Please re-select the optional quantity",Nu="The maximum length of the control must be greater than the minimum length",Ru="The minimum length of the control must be less than the maximum length",Uu="Please select the correct option setting",Vu="Option ID cannot be repeated",_u="Please enter at least one option",Tu="Please bind the data source",zu="Please bind the stored value",ku="Please bind the service",xu="At least one display value must be bound",ju="Please select a province",Gu="Please select a city",Ku="Please select a district",Hu="The minimum number of lines to fill in cannot be less than 0",Wu="The number of rows cannot be less than {min} rows",qu="Please enter the column width",Pu="Please set the logical relationship of all rule conditions",Xu="Please complete all rules and conditions",Ju="please select control",Ou="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Qu="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zu="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",et="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ut="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",tt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",at="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",nt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",rt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",it="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",st="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",lt="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ot="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Et="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ct="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Bt={isNotNumber:ru,isNotString:iu,isNotObject:su,isNotArray:lu,isNotBoolean:ou,runtimeRequired:Eu,pleaseEnterCaption:cu,pleaseEnterCaptionTip:Bu,pleaseEnterPlaceholder:mu,pleaseEnterFieldCode:Fu,pleaseEnterForm:Au,pleaseEnterList:pu,pleaseEnterProcess:hu,pleaseEnterLabel:du,pleaseEnterValue:vu,bizKeyNotBindFiled:Du,pleaseEnterNumberRange:gu,pleaseEnterAValueGreaterThanMin:Cu,pleaseEnterAValueLessThanMax:fu,numberRangeSetError:Su,stringRangeError:bu,attachmentMaxSize:Iu,pleaseEnterTotalScoreSetting:yu,theTotalScoreMustNotBeLessThan1:Mu,scoreDefaultValueRange:$u,attachmentLimitError:Lu,PleaseReselectTheOptionalQuantity:wu,TheMaximumLengthIsGreaterThanTheMinimumLength:Nu,TheMinimumLengthIsGreaterThanTheMaximumLength:Ru,PleaseSelectTheCorrectOptionSettings:Uu,optionIdIsRepeat:Vu,optionIsRequired:_u,pleaseEnterDataCode:Tu,pleaseEnterValueFieldCode:zu,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:xu,pleaseSelectProvince:ju,pleaseSelectCity:Gu,pleaseSelectDistrict:Ku,limitRowsCannotBeLessThan0:Hu,TheNumberOfRowsCannotBeLessThanMinRows:Wu,pleaseEnterColumnWidth:qu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Pu,pleaseCompleteAllRulesAndConditions:Xu,pleaseSelectControl:Ju,pleaseSelectDashboard:Ou,theViewNameCannotBeEmpty:Qu,pleaseSelectOcrType:Zu,pleaseSelectAtLeastOneFieldToFillIn:Yu,pleaseChooseAtLeastOne:et,pleaseEnterButtonContent:ut,pleaseEnterDataCodeInDataSetting:tt,pleaseEnterValueFieldCodeInDataSetting:at,pleaseEnterSvcCodeInDataSetting:nt,pleaseBindAtLeastOneDisplayValueInDataSetting:rt,rootNodeIsRequiredInDataSetting:it,pleaseEnterMaxHeight:st,pleaseEnter:lt,pleaseEnterWatermark:ot,pleaseEnterFileName:Et,pleaseUploadAtLeastOnePrintTemplate:ct},mt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ft="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",At="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",pt="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ht="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",dt="{caption}\u5FC5\u9808",vt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Dt="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",gt="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ct="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ft="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",St="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",bt="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",It="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yt="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",$t="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Lt="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",wt="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Nt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Rt="\u6587\u5B57\u6570{min}\u3088\u308A\u5927\u304D\u304F\u3001{max}\u3088\u308A\u5C0F\u3055\u3044\u6570\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ut="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Vt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",_t="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Tt="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",zt="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",kt="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",xt="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",jt="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Gt="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Kt="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ht="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Wt="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qt="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pt="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Xt="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Jt="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ot="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qt="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zt="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Yt="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ea="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ua="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ta="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",aa="please select control",na="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ra="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ia="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",sa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",la="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",oa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Ea="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ba="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ma="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Aa="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",pa="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ha="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",da="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",va="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Da={isNotNumber:mt,isNotString:Ft,isNotObject:At,isNotArray:pt,isNotBoolean:ht,runtimeRequired:dt,pleaseEnterCaption:vt,pleaseEnterCaptionTip:Dt,pleaseEnterPlaceholder:gt,pleaseEnterFieldCode:Ct,pleaseEnterForm:ft,pleaseEnterList:St,pleaseEnterProcess:bt,pleaseEnterLabel:It,pleaseEnterValue:yt,bizKeyNotBindFiled:Mt,pleaseEnterNumberRange:$t,pleaseEnterAValueGreaterThanMin:Lt,pleaseEnterAValueLessThanMax:wt,numberRangeSetError:Nt,stringRangeError:Rt,attachmentMaxSize:Ut,pleaseEnterTotalScoreSetting:Vt,theTotalScoreMustNotBeLessThan1:_t,scoreDefaultValueRange:Tt,attachmentLimitError:zt,PleaseReselectTheOptionalQuantity:kt,TheMaximumLengthIsGreaterThanTheMinimumLength:xt,TheMinimumLengthIsGreaterThanTheMaximumLength:jt,PleaseSelectTheCorrectOptionSettings:Gt,optionIdIsRepeat:Kt,optionIsRequired:Ht,pleaseEnterDataCode:Wt,pleaseEnterValueFieldCode:qt,pleaseEnterSvcCode:Pt,pleaseBindAtLeastOneDisplayValue:Xt,pleaseSelectProvince:Jt,pleaseSelectCity:Ot,pleaseSelectDistrict:Qt,limitRowsCannotBeLessThan0:Zt,TheNumberOfRowsCannotBeLessThanMinRows:Yt,pleaseEnterColumnWidth:ea,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ua,pleaseCompleteAllRulesAndConditions:ta,pleaseSelectControl:aa,pleaseSelectDashboard:na,theViewNameCannotBeEmpty:ra,pleaseSelectOcrType:ia,pleaseSelectAtLeastOneFieldToFillIn:sa,pleaseChooseAtLeastOne:la,pleaseEnterButtonContent:oa,pleaseEnterDataCodeInDataSetting:Ea,pleaseEnterValueFieldCodeInDataSetting:ca,pleaseEnterSvcCodeInDataSetting:Ba,pleaseBindAtLeastOneDisplayValueInDataSetting:ma,rootNodeIsRequiredInDataSetting:Fa,pleaseEnterMaxHeight:Aa,pleaseEnter:pa,pleaseEnterWatermark:ha,pleaseEnterFileName:da,pleaseUploadAtLeastOnePrintTemplate:va},ga={zhCN:nu,enUS:Bt,jaJP:Da},V=(e=>(e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable",e))(V||{}),_=(e=>(e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN",e))(_||{});class Ca{constructor(u){var t,n,s,o,l,E;this.name=(t=u==null?void 0:u.name)!=null?t:"",this.id=(n=u==null?void 0:u.id)!=null?n:"",this.type=(s=u==null?void 0:u.type)!=null?s:"Number",this.subTableId=(o=u==null?void 0:u.subTableId)!=null?o:void 0,this.subTableName=(l=u==null?void 0:u.subTableId)!=null?l:void 0,this.aggregateType=(E=u==null?void 0:u.aggregateType)!=null?E:void 0}}const T="zh-CN",fa=()=>{};var z=(e=>(e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e))(z||{}),I=(e=>(e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e))(I||{}),k=(e=>(e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field",e))(k||{});const Sa={array:"array-column",auto_number:"auto-number-column",decimal:"decimal-column",department:"department-column",file:"file-column",image:"image-column",location:"location-column",people:"employee-column",text:"text-column",timescope:"timescope-column",timestamp:"timestamp-column",varchar:"varchar-column",relation:"varchar-column"};var x=(e=>(e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime",e))(x||{});const j="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",ba=j+"0123456789";function Ia(e=15){let u="";for(let t=0;t<e;t++){const n=t===0?j:ba,s=Math.random()*n.length;u+=n[parseInt(String(s),10)]}return u}const y=console;function G(...e){const u=e.slice(1);y.warn("\u{1F9D0} Driven Warning:"+e[0],...u)}function M(...e){const u=e.slice(1);y.log("\u{1F680} Driven Log:"+e[0],...u)}function ya(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}class $ extends Error{constructor(u){super(u),this.name="\u{1F4A5} Driven Error",this.message=u?ya(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}"}}class Ma extends ${constructor(u){super(u),this.name="\u{1F6A8} Driven Reference Error"}}function $a(e){throw new $(e)}function La(e){throw new Ma(e)}function K(e){y.error(new $(e))}function L(e,u){Array.isArray(e)&&e.map(t=>{switch(t.controlType){case"layout":L(t==null?void 0:t.children,u);break;case"search":L(t==null?void 0:t.children,u);break;case"form":u(t)}})}var wa=Object.prototype.toString;function H(e,u){return wa.call(e)==="[object "+u+"]"}function Na(e){return H(e,"String")}function Ra(e){return H(e,"Promise")}var Ua=function(){function e(u){var t,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(t=u.messages)!==null&&t!==void 0?t:this.getPreImport(u.locale))!==null&&n!==void 0?n:{}),u.variableRegExp&&(this.variableRegExp=u.variableRegExp),this.setLocale(u.locale)}return e.prototype.setLocale=function(u){var t=this;this.locale=u,this._messageCache.clear();var n=this.getMessageData();Ra(n)?n.then(function(s){t._messageCache.clear(),t.messages[t.localeInMessageKey]=s}):this.messages[this.localeInMessageKey]=n},e.prototype.getMessageData=function(){var u=this._messages[this.localeInMessageKey];return typeof u=="function"?u():u},e.prototype.translate=function(u,t,n){var s=this.getMessage(u);return s?this.formatMessage(s,n):this.formatMessage(t,n)},e.prototype.getMessage=function(u){if(this._messageCache.has(u))return this._messageCache.get(u);var t=this.getPathArray(u),n=t.reduce(function(s,o,l,E){if(s!==void 0){var p=s[o];if(!(l===E.length-1&&!Na(p)))return p}},this.message);return this._messageCache.set(u,n),n},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(n,s){var o=t[s];return o!==void 0?String(o):n}):u},e.prototype.getPreImport=function(u){var t;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(u);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(t={},t[n]=window.okI18nPreImport,t)}},e.prototype.getPathArray=function(u){return u.split(".")},e.prototype.getLocaleInMessageKey=function(u){return u.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var u;return(u=this.messages[this.localeInMessageKey])!==null&&u!==void 0?u:{}},enumerable:!1,configurable:!0}),e}();const W=class{static getMessage(e,u={}){return this.$i18n.$t(e,"",u)}static resetI18n(e=T){return new Ua({locale:e,messages:ga})}static setLocale(e){return this.$i18n.setLocale(e)}};let q=W;q.$i18n=W.resetI18n();function Va(e,u,t){const n=u.replace(/\[(\d)]/g,(o,l)=>"."+l).split(".");let s=!1;return n.reduce((o,l,E,p)=>{const v=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,l)){G(`Can not set ${u}'s ${l} property in current %o, Because there is no ${l} property on the %o`,o,o);return}return E===p.length-1&&!Object.is(v[l],t)&&(v[l]=t,s=!0),v[l]}},e),s}var _a=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},w={exports:{}};(function(e){(function(u){var t=function(r,i,c){if(!v(i)||tn(i)||an(i)||nn(i)||p(i))return i;var m,D=0,Y=0;if(un(i))for(m=[],Y=i.length;D<Y;D++)m.push(t(r,i[D],c));else{m={};for(var U in i)Object.prototype.hasOwnProperty.call(i,U)&&(m[r(U,c)]=t(r,i[U],c))}return m},n=function(r,i){i=i||{};var c=i.separator||"_",m=i.split||/(?=[A-Z])/;return r.split(m).join(c)},s=function(r){return rn(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(i,c){return c?c.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},o=function(r){var i=s(r);return i.substr(0,1).toUpperCase()+i.substr(1)},l=function(r,i){return n(r,i).toLowerCase()},E=Object.prototype.toString,p=function(r){return typeof r=="function"},v=function(r){return r===Object(r)},un=function(r){return E.call(r)=="[object Array]"},tn=function(r){return E.call(r)=="[object Date]"},an=function(r){return E.call(r)=="[object RegExp]"},nn=function(r){return E.call(r)=="[object Boolean]"},rn=function(r){return r=r-0,r===r},R=function(r,i){var c=i&&"process"in i?i.process:i;return typeof c!="function"?r:function(m,D){return c(m,r,D)}},Z={camelize:s,decamelize:l,pascalize:o,depascalize:l,camelizeKeys:function(r,i){return t(R(s,i),r)},decamelizeKeys:function(r,i){return t(R(l,i),r,i)},pascalizeKeys:function(r,i){return t(R(o,i),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=Z:u.humps=Z})(_a)})(w);function Ta(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function za(e){return P(e)&&"zh"in e}function P(e){return Object.prototype.toString.call(e)==="[object Object]"}function ka(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function C(e){return Array.isArray(e)}function X(e){return typeof e=="string"}function N(e){return typeof e=="number"}function xa(e){return typeof e=="function"}function ja(e){return C(e)&&e.every(u=>X(u))}function Ga(e){return C(e)&&e.every(u=>N(u))}function Ka(e){return C(e)&&e.every(u=>N(u)||u==="")}function Ha(e){return/^\[.*?]$/.test(e)}function Wa(e){return/^{.*?}$/.test(e)}function qa(e){return isNaN(parseFloat(e))?"":Number(e)}function Pa(e){return e.reduce((u,t)=>(u.includes(t)||u.push(t),u),[])}function Xa(e,u=500){let t;return function(...n){t||(t=setTimeout(()=>{e.apply(this,n),clearTimeout(t),t=null},u))}}function Ja(e=0){return new Promise(u=>{setTimeout(u,e)})}function J(e,u){let t=[];return Array.isArray(e)&&(t=e.map(n=>{let s=n;return Array.isArray(n==null?void 0:n.children)&&(s.children=J(n.children,u)),u(s)})),t}function Oa(e){return w.exports.camelizeKeys(e)}function Qa(e){return w.exports.decamelizeKeys(e)}function Za(e){return Object.values(I).includes(e)}class Ya{constructor(){this._events=new Map,this.debug=!1}emit(u,...t){return ee(this,null,function*(){const n=this._events.get(u),s=[];if(n){const o=n.slice();for(const l of o)if(!!n.includes(l))try{this.debug&&M(`\u6B63\u5728\u6267\u884C ${u} \u4E8B\u4EF6: ${l.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+l.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${t.map(()=>"%o").join(",")}\u3002`,...t);const E=yield l.apply(null,[...t]);if(this.debug&&M(`\u6B63\u5728\u6267\u884C ${u} \u4E8B\u4EF6: ${l.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+l.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${t.map(()=>"%o").join(",")}; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o`,...t,E),s.push(E),E===!1)break}catch(E){K(String(E))}}return s})}on(u,t){var n;this._events.has(u)?(n=this._events.get(u))==null||n.push(t):this._events.set(u,[t])}off(u,t){if(this._events.has(u)){const n=this._events.get(u),s=n==null?void 0:n.indexOf(t);n==null||n.splice(s,1)}}delete(u){this._events.has(u)&&this._events.delete(u)}clear(){this._events=new Map}}const en=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"}],O=class{getEventsFromKeys(e){const u=typeof e=="string"?[e]:e;return O.events.filter(t=>u.includes(t.key))}};let Q=O;Q.events=en,a.CALC_AGGREGATE_TYPE=_,a.CALC_TOKEN_TYPE=V,a.CONTROL_BASE_TYPE=z,a.CONTROL_TYPE=I,a.CalcScriptEchoItem=Ca,a.DEFAULT_LOCALE=T,a.DateType=x,a.DepartmentEntity=F,a.EventLogic=Q,a.FieldTypeToColumnType=Sa,a.FieldTypes=k,a.JSONCopy=Ta,a.RulesMessage=q,a.UserEntity=A,a.Watcher=Ya,a.camelizeKeys=Oa,a.debounce=Xa,a.decamelizeKeys=Qa,a.error=$a,a.genNonDuplicateId=Ia,a.getNotRepeatItems=Pa,a.isArray=C,a.isBuiltInControls=Za,a.isFunction=xa,a.isJSONArray=Ha,a.isJSONObject=Wa,a.isLanguageObject=za,a.isNumber=N,a.isNumberAndEmptyStringArray=Ka,a.isNumberArray=Ga,a.isObject=ka,a.isPlainObject=P,a.isString=X,a.isStringArray=ja,a.log=M,a.logerror=K,a.loop=J,a.loopFormSchema=L,a.noop=fa,a.referenceError=La,a.toNumberOrEmpty=qa,a.updateValueFromKeys=Va,a.wait=Ja,a.warn=G,Object.defineProperty(a,"__esModule",{value:!0})});
|