@byteluck-fe/model-driven-shared 2.22.2-beta.1 → 2.22.2-beta.12

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.
@@ -18,283 +18,283 @@ export interface EventItem {
18
18
  }
19
19
  declare const eventMap: readonly [{
20
20
  readonly key: "on_click";
21
- readonly name: "点击时";
21
+ readonly name: string;
22
22
  readonly code: "click";
23
23
  }, {
24
24
  readonly key: "on_click_finish";
25
- readonly name: "执行完成时";
25
+ readonly name: string;
26
26
  readonly code: "click-finish";
27
27
  }, {
28
28
  readonly key: "on_change";
29
- readonly name: "值发生变化时";
29
+ readonly name: string;
30
30
  readonly code: "change";
31
31
  }, {
32
32
  readonly key: "on_search";
33
- readonly name: "搜索时";
33
+ readonly name: string;
34
34
  readonly code: "search";
35
35
  }, {
36
36
  readonly key: "on_list_change";
37
- readonly name: "列表数据变化时";
37
+ readonly name: string;
38
38
  readonly code: "list-change";
39
39
  }, {
40
40
  readonly key: "on_list_search";
41
- readonly name: "列表数据查询构建时";
41
+ readonly name: string;
42
42
  readonly code: "list-search";
43
43
  }, {
44
44
  readonly key: "on_list_mounted";
45
- readonly name: "列表数据返回时";
45
+ readonly name: string;
46
46
  readonly code: "list-mounted";
47
47
  }, {
48
48
  readonly key: "on_list_delete";
49
- readonly name: "列表数据删除时";
49
+ readonly name: string;
50
50
  readonly code: "list-delete";
51
51
  }, {
52
52
  readonly key: "on_list_before_insert";
53
- readonly name: "列表数据插入前";
53
+ readonly name: string;
54
54
  readonly code: "list-before-insert";
55
55
  }, {
56
56
  readonly key: "on_input";
57
- readonly name: "用户输入时";
57
+ readonly name: string;
58
58
  readonly code: "input";
59
59
  }, {
60
60
  readonly key: "on_blur";
61
- readonly name: "失去焦点时";
61
+ readonly name: string;
62
62
  readonly code: "blur";
63
63
  }, {
64
64
  readonly key: "on_focus";
65
- readonly name: "获取焦点时";
65
+ readonly name: string;
66
66
  readonly code: "focus";
67
67
  }, {
68
68
  readonly key: "on_wps_open";
69
- readonly name: "打开文件时";
69
+ readonly name: string;
70
70
  readonly code: "wps-open";
71
71
  }, {
72
72
  readonly key: "on_wps_save";
73
- readonly name: "保存文件时";
73
+ readonly name: string;
74
74
  readonly code: "wps-save";
75
75
  }, {
76
76
  readonly key: "on_wps_rename";
77
- readonly name: "重命名时";
77
+ readonly name: string;
78
78
  readonly code: "wps-rename";
79
79
  }, {
80
80
  readonly key: "on_list_actions";
81
- readonly name: "点击操作按钮时";
81
+ readonly name: string;
82
82
  readonly code: "list-actions";
83
83
  }, {
84
84
  readonly key: "on_list_render_operation";
85
- readonly name: "操作列渲染时";
85
+ readonly name: string;
86
86
  readonly code: "list-render-operation";
87
87
  }, {
88
88
  readonly key: "on_list_rowclick";
89
- readonly name: "行点击时";
89
+ readonly name: string;
90
90
  readonly code: "list-rowclick";
91
91
  }, {
92
92
  readonly key: "on_list_before_rowdelete";
93
- readonly name: "行删除前";
93
+ readonly name: string;
94
94
  readonly code: "list-before-rowdelete";
95
95
  }, {
96
96
  readonly key: "on_list_before_import";
97
- readonly name: "列表数据导入前";
97
+ readonly name: string;
98
98
  readonly code: "list-before-import";
99
99
  }, {
100
100
  readonly key: "on_list_rows_checked";
101
- readonly name: "行选中时";
101
+ readonly name: string;
102
102
  readonly code: "list-rows-checked";
103
103
  }, {
104
104
  readonly key: "on_change_tab";
105
- readonly name: "标签页切换时";
105
+ readonly name: string;
106
106
  readonly code: "change-tab";
107
107
  }, {
108
108
  readonly key: "on_modal_ok";
109
- readonly name: "弹窗确认时";
109
+ readonly name: string;
110
110
  readonly code: "modal-ok";
111
111
  }];
112
112
  export type InnerEventCode = (typeof eventMap)[number]['code'];
113
113
  export declare class EventLogic {
114
114
  static readonly events: readonly [{
115
115
  readonly key: "on_click";
116
- readonly name: "点击时";
116
+ readonly name: string;
117
117
  readonly code: "click";
118
118
  }, {
119
119
  readonly key: "on_click_finish";
120
- readonly name: "执行完成时";
120
+ readonly name: string;
121
121
  readonly code: "click-finish";
122
122
  }, {
123
123
  readonly key: "on_change";
124
- readonly name: "值发生变化时";
124
+ readonly name: string;
125
125
  readonly code: "change";
126
126
  }, {
127
127
  readonly key: "on_search";
128
- readonly name: "搜索时";
128
+ readonly name: string;
129
129
  readonly code: "search";
130
130
  }, {
131
131
  readonly key: "on_list_change";
132
- readonly name: "列表数据变化时";
132
+ readonly name: string;
133
133
  readonly code: "list-change";
134
134
  }, {
135
135
  readonly key: "on_list_search";
136
- readonly name: "列表数据查询构建时";
136
+ readonly name: string;
137
137
  readonly code: "list-search";
138
138
  }, {
139
139
  readonly key: "on_list_mounted";
140
- readonly name: "列表数据返回时";
140
+ readonly name: string;
141
141
  readonly code: "list-mounted";
142
142
  }, {
143
143
  readonly key: "on_list_delete";
144
- readonly name: "列表数据删除时";
144
+ readonly name: string;
145
145
  readonly code: "list-delete";
146
146
  }, {
147
147
  readonly key: "on_list_before_insert";
148
- readonly name: "列表数据插入前";
148
+ readonly name: string;
149
149
  readonly code: "list-before-insert";
150
150
  }, {
151
151
  readonly key: "on_input";
152
- readonly name: "用户输入时";
152
+ readonly name: string;
153
153
  readonly code: "input";
154
154
  }, {
155
155
  readonly key: "on_blur";
156
- readonly name: "失去焦点时";
156
+ readonly name: string;
157
157
  readonly code: "blur";
158
158
  }, {
159
159
  readonly key: "on_focus";
160
- readonly name: "获取焦点时";
160
+ readonly name: string;
161
161
  readonly code: "focus";
162
162
  }, {
163
163
  readonly key: "on_wps_open";
164
- readonly name: "打开文件时";
164
+ readonly name: string;
165
165
  readonly code: "wps-open";
166
166
  }, {
167
167
  readonly key: "on_wps_save";
168
- readonly name: "保存文件时";
168
+ readonly name: string;
169
169
  readonly code: "wps-save";
170
170
  }, {
171
171
  readonly key: "on_wps_rename";
172
- readonly name: "重命名时";
172
+ readonly name: string;
173
173
  readonly code: "wps-rename";
174
174
  }, {
175
175
  readonly key: "on_list_actions";
176
- readonly name: "点击操作按钮时";
176
+ readonly name: string;
177
177
  readonly code: "list-actions";
178
178
  }, {
179
179
  readonly key: "on_list_render_operation";
180
- readonly name: "操作列渲染时";
180
+ readonly name: string;
181
181
  readonly code: "list-render-operation";
182
182
  }, {
183
183
  readonly key: "on_list_rowclick";
184
- readonly name: "行点击时";
184
+ readonly name: string;
185
185
  readonly code: "list-rowclick";
186
186
  }, {
187
187
  readonly key: "on_list_before_rowdelete";
188
- readonly name: "行删除前";
188
+ readonly name: string;
189
189
  readonly code: "list-before-rowdelete";
190
190
  }, {
191
191
  readonly key: "on_list_before_import";
192
- readonly name: "列表数据导入前";
192
+ readonly name: string;
193
193
  readonly code: "list-before-import";
194
194
  }, {
195
195
  readonly key: "on_list_rows_checked";
196
- readonly name: "行选中时";
196
+ readonly name: string;
197
197
  readonly code: "list-rows-checked";
198
198
  }, {
199
199
  readonly key: "on_change_tab";
200
- readonly name: "标签页切换时";
200
+ readonly name: string;
201
201
  readonly code: "change-tab";
202
202
  }, {
203
203
  readonly key: "on_modal_ok";
204
- readonly name: "弹窗确认时";
204
+ readonly name: string;
205
205
  readonly code: "modal-ok";
206
206
  }];
207
207
  static getEventsFromKeys(keys: string | string[]): ({
208
208
  readonly key: "on_click";
209
- readonly name: "点击时";
209
+ readonly name: string;
210
210
  readonly code: "click";
211
211
  } | {
212
212
  readonly key: "on_click_finish";
213
- readonly name: "执行完成时";
213
+ readonly name: string;
214
214
  readonly code: "click-finish";
215
215
  } | {
216
216
  readonly key: "on_change";
217
- readonly name: "值发生变化时";
217
+ readonly name: string;
218
218
  readonly code: "change";
219
219
  } | {
220
220
  readonly key: "on_search";
221
- readonly name: "搜索时";
221
+ readonly name: string;
222
222
  readonly code: "search";
223
223
  } | {
224
224
  readonly key: "on_list_change";
225
- readonly name: "列表数据变化时";
225
+ readonly name: string;
226
226
  readonly code: "list-change";
227
227
  } | {
228
228
  readonly key: "on_list_search";
229
- readonly name: "列表数据查询构建时";
229
+ readonly name: string;
230
230
  readonly code: "list-search";
231
231
  } | {
232
232
  readonly key: "on_list_mounted";
233
- readonly name: "列表数据返回时";
233
+ readonly name: string;
234
234
  readonly code: "list-mounted";
235
235
  } | {
236
236
  readonly key: "on_list_delete";
237
- readonly name: "列表数据删除时";
237
+ readonly name: string;
238
238
  readonly code: "list-delete";
239
239
  } | {
240
240
  readonly key: "on_list_before_insert";
241
- readonly name: "列表数据插入前";
241
+ readonly name: string;
242
242
  readonly code: "list-before-insert";
243
243
  } | {
244
244
  readonly key: "on_input";
245
- readonly name: "用户输入时";
245
+ readonly name: string;
246
246
  readonly code: "input";
247
247
  } | {
248
248
  readonly key: "on_blur";
249
- readonly name: "失去焦点时";
249
+ readonly name: string;
250
250
  readonly code: "blur";
251
251
  } | {
252
252
  readonly key: "on_focus";
253
- readonly name: "获取焦点时";
253
+ readonly name: string;
254
254
  readonly code: "focus";
255
255
  } | {
256
256
  readonly key: "on_wps_open";
257
- readonly name: "打开文件时";
257
+ readonly name: string;
258
258
  readonly code: "wps-open";
259
259
  } | {
260
260
  readonly key: "on_wps_save";
261
- readonly name: "保存文件时";
261
+ readonly name: string;
262
262
  readonly code: "wps-save";
263
263
  } | {
264
264
  readonly key: "on_wps_rename";
265
- readonly name: "重命名时";
265
+ readonly name: string;
266
266
  readonly code: "wps-rename";
267
267
  } | {
268
268
  readonly key: "on_list_actions";
269
- readonly name: "点击操作按钮时";
269
+ readonly name: string;
270
270
  readonly code: "list-actions";
271
271
  } | {
272
272
  readonly key: "on_list_render_operation";
273
- readonly name: "操作列渲染时";
273
+ readonly name: string;
274
274
  readonly code: "list-render-operation";
275
275
  } | {
276
276
  readonly key: "on_list_rowclick";
277
- readonly name: "行点击时";
277
+ readonly name: string;
278
278
  readonly code: "list-rowclick";
279
279
  } | {
280
280
  readonly key: "on_list_before_rowdelete";
281
- readonly name: "行删除前";
281
+ readonly name: string;
282
282
  readonly code: "list-before-rowdelete";
283
283
  } | {
284
284
  readonly key: "on_list_before_import";
285
- readonly name: "列表数据导入前";
285
+ readonly name: string;
286
286
  readonly code: "list-before-import";
287
287
  } | {
288
288
  readonly key: "on_list_rows_checked";
289
- readonly name: "行选中时";
289
+ readonly name: string;
290
290
  readonly code: "list-rows-checked";
291
291
  } | {
292
292
  readonly key: "on_change_tab";
293
- readonly name: "标签页切换时";
293
+ readonly name: string;
294
294
  readonly code: "change-tab";
295
295
  } | {
296
296
  readonly key: "on_modal_ok";
297
- readonly name: "弹窗确认时";
297
+ readonly name: string;
298
298
  readonly code: "modal-ok";
299
299
  })[];
300
300
  static getEventsFromControl(control: {
@@ -62,7 +62,6 @@ declare const _default: {
62
62
  pleaseBindAtLeastOneDisplayValueInDataSetting: string;
63
63
  rootNodeIsRequiredInDataSetting: string;
64
64
  pleaseEnterMaxHeight: string;
65
- pleaseEnter: string;
66
65
  pleaseEnterWatermark: string;
67
66
  pleaseEnterFileName: string;
68
67
  pleaseUploadAtLeastOnePrintTemplate: string;
@@ -74,6 +73,156 @@ declare const _default: {
74
73
  pleaseSelectJoinFieldCode: string;
75
74
  pleaseSelectMainFieldCode: string;
76
75
  pleaseSelectSortFieldCode: string;
76
+ batchDeleteButton: string;
77
+ batchPrintListButton: string;
78
+ batchPrintRecordList: string;
79
+ button: string;
80
+ createFormListButton: string;
81
+ dashboard: string;
82
+ divider: string;
83
+ exportListButton: string;
84
+ formSelectButton: string;
85
+ importRecordListButton: string;
86
+ invoiceCheckButton: string;
87
+ link: string;
88
+ listSelectButton: string;
89
+ ListViewSelect: string;
90
+ operationButton: string;
91
+ pagination: string;
92
+ submissionRecordListButton: string;
93
+ text: string;
94
+ textOcrButton: string;
95
+ title: string;
96
+ approvalStatusColumn: string;
97
+ array: string;
98
+ autoNumber: string;
99
+ custom: string;
100
+ decimal: string;
101
+ department: string;
102
+ employee: string;
103
+ file: string;
104
+ image: string;
105
+ location: string;
106
+ operation: string;
107
+ order: string;
108
+ people: string;
109
+ long: string;
110
+ timescope: string;
111
+ timestamp: string;
112
+ varchar: string;
113
+ gridLayoutWrap: string;
114
+ gridTable: string;
115
+ subTable: string;
116
+ address: string;
117
+ amount: string;
118
+ calc: string;
119
+ checkBox: string;
120
+ electronicSignature: string;
121
+ input: string;
122
+ number: string;
123
+ organizationSelection: string;
124
+ radio: string;
125
+ richText: string;
126
+ score: string;
127
+ searchNumberRange: string;
128
+ select: string;
129
+ selectMultiple: string;
130
+ selectRelation: string;
131
+ textarea: string;
132
+ tree: string;
133
+ vueFormItem: string;
134
+ vuePage: string;
135
+ WPS: string;
136
+ actionBar: string;
137
+ advancedContainer: string;
138
+ cardGroup: string;
139
+ col: string;
140
+ dataView: string;
141
+ grid: string;
142
+ gridLayoutContainer: string;
143
+ gridRow: string;
144
+ listView: string;
145
+ page: string;
146
+ position: string;
147
+ positioningContainer: string;
148
+ row: string;
149
+ subtableColumn: string;
150
+ subtableRow: string;
151
+ tab: string;
152
+ tabPane: string;
153
+ toolbox: string;
154
+ batchSubmissionListButton: string;
155
+ exportRecordListButton: string;
156
+ listViewSelect: string;
157
+ endTime: string;
158
+ startTime: string;
159
+ unit: string;
160
+ result: string;
161
+ currency: string;
162
+ endDate: string;
163
+ startDate: string;
164
+ pleaseSelectCompanyName: string;
165
+ pleaseSelectPhoneOrEmail: string;
166
+ pleaseSelectSignType: string;
167
+ pleaseSelectSigner: string;
168
+ pleaseSelectOnlyOne: string;
169
+ pleaseSelectSignFile: string;
170
+ pleaseSelect: string;
171
+ pleaseSelectOrg: string;
172
+ pleaseSelectDept: string;
173
+ pleaseSelectEndDate: string;
174
+ pleaseSelectStartDate: string;
175
+ pleaseChooseAddress: string;
176
+ modalConfirm: string;
177
+ tabChange: string;
178
+ rowSelected: string;
179
+ listDataImport: string;
180
+ rowDelete: string;
181
+ rowClick: string;
182
+ cellRender: string;
183
+ onClickBtn: string;
184
+ rename: string;
185
+ onSaveFile: string;
186
+ onOpenFile: string;
187
+ onFocus: string;
188
+ onBlur: string;
189
+ onInput: string;
190
+ listDataAdd: string;
191
+ listDataDelete: string;
192
+ listDataBack: string;
193
+ listDataCreate: string;
194
+ listDataChange: string;
195
+ search: string;
196
+ valueChange: string;
197
+ finished: string;
198
+ click: string;
199
+ pleaseEnterNameorEmail: string;
200
+ pleaseEnterDate: string;
201
+ pleaseEnterAutonumber: string;
202
+ pleaseEnter: string;
203
+ defaultTemplate: string;
204
+ left: string;
205
+ top: string;
206
+ default: string;
207
+ readonly: string;
208
+ required: string;
209
+ textTip: string;
210
+ hideCaption: string;
211
+ titleRequired: string;
212
+ organizationalForm: string;
213
+ businessType: string;
214
+ deleteConfirm: string;
215
+ hide: string;
216
+ processStatus: string;
217
+ approvedDocuments: string;
218
+ delete: string;
219
+ edit: string;
220
+ view: string;
221
+ loadCtrlErrorTip: string;
222
+ loadCtrlError: string;
223
+ fullLine: string;
224
+ min: string;
225
+ max: string;
77
226
  };
78
227
  enUS: {
79
228
  isNotNumber: string;
@@ -147,6 +296,87 @@ declare const _default: {
147
296
  pleaseSelectJoinFieldCode: string;
148
297
  pleaseSelectMainFieldCode: string;
149
298
  pleaseSelectSortFieldCode: string;
299
+ batchDeleteButton: string;
300
+ batchPrintListButton: string;
301
+ batchPrintRecordList: string;
302
+ button: string;
303
+ createFormListButton: string;
304
+ dashboard: string;
305
+ divider: string;
306
+ exportListButton: string;
307
+ formSelectButton: string;
308
+ importRecordListButton: string;
309
+ invoiceCheckButton: string;
310
+ link: string;
311
+ listSelectButton: string;
312
+ ListViewSelect: string;
313
+ operationButton: string;
314
+ pagination: string;
315
+ submissionRecordListButton: string;
316
+ text: string;
317
+ textOcrButton: string;
318
+ title: string;
319
+ approvalStatusColumn: string;
320
+ array: string;
321
+ autoNumber: string;
322
+ custom: string;
323
+ decimal: string;
324
+ department: string;
325
+ employee: string;
326
+ file: string;
327
+ image: string;
328
+ location: string;
329
+ operation: string;
330
+ order: string;
331
+ people: string;
332
+ long: string;
333
+ timescope: string;
334
+ timestamp: string;
335
+ varchar: string;
336
+ gridLayoutWrap: string;
337
+ gridTable: string;
338
+ subTable: string;
339
+ address: string;
340
+ amount: string;
341
+ calc: string;
342
+ checkBox: string;
343
+ electronicSignature: string;
344
+ input: string;
345
+ number: string;
346
+ organizationSelection: string;
347
+ radio: string;
348
+ richText: string;
349
+ score: string;
350
+ searchNumberRange: string;
351
+ select: string;
352
+ selectMultiple: string;
353
+ selectRelation: string;
354
+ textarea: string;
355
+ tree: string;
356
+ vueFormItem: string;
357
+ vuePage: string;
358
+ WPS: string;
359
+ actionBar: string;
360
+ advancedContainer: string;
361
+ cardGroup: string;
362
+ col: string;
363
+ dataView: string;
364
+ grid: string;
365
+ gridLayoutContainer: string;
366
+ gridRow: string;
367
+ listView: string;
368
+ page: string;
369
+ position: string;
370
+ positioningContainer: string;
371
+ row: string;
372
+ subtableColumn: string;
373
+ subtableRow: string;
374
+ tab: string;
375
+ tabPane: string;
376
+ toolbox: string;
377
+ batchSubmissionListButton: string;
378
+ exportRecordListButton: string;
379
+ listViewSelect: string;
150
380
  };
151
381
  jaJP: {
152
382
  isNotNumber: string;
@@ -220,6 +450,87 @@ declare const _default: {
220
450
  pleaseSelectJoinFieldCode: string;
221
451
  pleaseSelectMainFieldCode: string;
222
452
  pleaseSelectSortFieldCode: string;
453
+ batchDeleteButton: string;
454
+ batchPrintListButton: string;
455
+ batchPrintRecordList: string;
456
+ button: string;
457
+ createFormListButton: string;
458
+ dashboard: string;
459
+ divider: string;
460
+ exportListButton: string;
461
+ formSelectButton: string;
462
+ importRecordListButton: string;
463
+ invoiceCheckButton: string;
464
+ link: string;
465
+ listSelectButton: string;
466
+ ListViewSelect: string;
467
+ operationButton: string;
468
+ pagination: string;
469
+ submissionRecordListButton: string;
470
+ text: string;
471
+ textOcrButton: string;
472
+ title: string;
473
+ approvalStatusColumn: string;
474
+ array: string;
475
+ autoNumber: string;
476
+ custom: string;
477
+ decimal: string;
478
+ department: string;
479
+ employee: string;
480
+ file: string;
481
+ image: string;
482
+ location: string;
483
+ operation: string;
484
+ order: string;
485
+ people: string;
486
+ long: string;
487
+ timescope: string;
488
+ timestamp: string;
489
+ varchar: string;
490
+ gridLayoutWrap: string;
491
+ gridTable: string;
492
+ subTable: string;
493
+ address: string;
494
+ amount: string;
495
+ calc: string;
496
+ checkBox: string;
497
+ electronicSignature: string;
498
+ input: string;
499
+ number: string;
500
+ organizationSelection: string;
501
+ radio: string;
502
+ richText: string;
503
+ score: string;
504
+ searchNumberRange: string;
505
+ select: string;
506
+ selectMultiple: string;
507
+ selectRelation: string;
508
+ textarea: string;
509
+ tree: string;
510
+ vueFormItem: string;
511
+ vuePage: string;
512
+ WPS: string;
513
+ actionBar: string;
514
+ advancedContainer: string;
515
+ cardGroup: string;
516
+ col: string;
517
+ dataView: string;
518
+ grid: string;
519
+ gridLayoutContainer: string;
520
+ gridRow: string;
521
+ listView: string;
522
+ page: string;
523
+ position: string;
524
+ positioningContainer: string;
525
+ row: string;
526
+ subtableColumn: string;
527
+ subtableRow: string;
528
+ tab: string;
529
+ tabPane: string;
530
+ toolbox: string;
531
+ batchSubmissionListButton: string;
532
+ exportRecordListButton: string;
533
+ listViewSelect: string;
223
534
  };
224
535
  };
225
536
  export default _default;