cloud-web-corejs 1.0.54-dev.650 → 1.0.54-dev.652
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/package.json +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +135 -32
- package/src/components/xform/form-designer/setting-panel/property-editor/buttonIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/icon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconClass-editor.vue +18 -17
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +26 -26
- package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +12 -14
- package/src/components/xform/form-designer/setting-panel/property-editor/prefixIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/suffixIcon-editor.vue +14 -15
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +207 -194
- package/src/components/xform/icon-picker/icons.json +284 -0
- package/src/components/xform/icon-picker/index.vue +145 -0
- package/src/layout/components/Sidebar/default.vue +76 -132
|
@@ -1,125 +1,126 @@
|
|
|
1
|
-
import Vue from
|
|
1
|
+
import Vue from "vue";
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* 格式说明:属性名称==对应属性编辑器的组件名称
|
|
5
5
|
*/
|
|
6
6
|
const COMMON_PROPERTIES = {
|
|
7
7
|
//字段
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
name: "name-editor",
|
|
9
|
+
keyNameEnabled: "keyNameEnabled-editor",
|
|
10
|
+
keyName: "keyName-editor",
|
|
11
|
+
label: "label-editor",
|
|
12
|
+
formField: "formField-editor",
|
|
13
13
|
// 'labelAlign': 'labelAlign-editor',
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
14
|
+
type: "type-editor",
|
|
15
|
+
buttonTypeFlag: "button-type-editor",
|
|
16
|
+
defaultValue: "defaultValue-editor",
|
|
17
|
+
placeholder: "placeholder-editor",
|
|
18
|
+
startPlaceholder: "startPlaceholder-editor",
|
|
19
|
+
endPlaceholder: "endPlaceholder-editor",
|
|
20
|
+
widgetWidth: "widgetWidth-editor",
|
|
21
|
+
columnWidth: "columnWidth-editor",
|
|
22
|
+
size: "size-editor",
|
|
23
|
+
space: "space-editor",
|
|
24
|
+
showStops: "showStops-editor",
|
|
25
|
+
displayStyle: "displayStyle-editor",
|
|
26
|
+
buttonStyle: "buttonStyle-editor",
|
|
27
|
+
border: "border-editor",
|
|
28
|
+
labelWidth: "labelWidth-editor",
|
|
29
|
+
labelHidden: "labelHidden-editor",
|
|
30
|
+
rows: "rows-editor",
|
|
31
|
+
required: "required-editor",
|
|
32
32
|
// 'requiredHint': 'requiredHint-editor',
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
33
|
+
validation: "validation-editor",
|
|
34
|
+
validationHint: "validationHint-editor",
|
|
35
|
+
readonly: "readonly-editor",
|
|
36
|
+
disabled: "disabled-editor",
|
|
37
|
+
hidden: "hidden-editor",
|
|
38
|
+
clearable: "clearable-editor",
|
|
39
|
+
editable: "editable-editor",
|
|
40
|
+
showPassword: "showPassword-editor",
|
|
41
|
+
textContent: "textContent-editor",
|
|
42
|
+
fontSize: "fontSize-editor",
|
|
43
|
+
htmlContent: "htmlContent-editor",
|
|
44
|
+
format: "format-editor",
|
|
45
|
+
valueFormat: "valueFormat-editor",
|
|
46
|
+
defaultTime: "defaultTime-editor",
|
|
47
|
+
filterable: "filterable-editor",
|
|
48
|
+
allowCreate: "allowCreate-editor",
|
|
49
|
+
remote: "remote-editor",
|
|
50
|
+
automaticDropdown: "automaticDropdown-editor",
|
|
51
|
+
checkStrictly: "checkStrictly-editor",
|
|
52
|
+
multiple: "multiple-editor",
|
|
53
|
+
multipleLimit: "multipleLimit-editor",
|
|
54
|
+
contentPosition: "contentPosition-editor",
|
|
55
55
|
// 'dsEnabled' : 'dsEnabled-editor',//启用数据源,个人
|
|
56
56
|
// 'dsName' : 'dsName-editor',//指定数据源,个人
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
57
|
+
optionItems: "optionItems-editor",
|
|
58
|
+
censusItems: "censusItems-editor",
|
|
59
|
+
listItems: "listItems-editor",
|
|
60
|
+
uploadURL: "uploadURL-editor",
|
|
61
|
+
uploadTip: "uploadTip-editor",
|
|
62
|
+
withCredentials: "withCredentials-editor",
|
|
63
|
+
multipleSelect: "multipleSelect-editor",
|
|
64
|
+
limit: "limit-editor",
|
|
65
|
+
fileMaxSize: "fileMaxSize-editor",
|
|
66
|
+
fileTypes: "fileTypes-editor",
|
|
67
|
+
customClass: "customClass-editor",
|
|
68
|
+
styleTitClass: "styleTitClass-editor",
|
|
69
|
+
styleTableClass: "styleTableClass-editor",
|
|
70
|
+
iconClass: "iconClass-editor",
|
|
71
|
+
echartHeight: "echartHeight-editor",
|
|
72
|
+
descriptionsItems: "descriptionsItems-editor",
|
|
73
|
+
isFullscreen: "isFullscreen-editor",
|
|
74
|
+
tabClass: "tabClass-editor",
|
|
75
|
+
censusClass: "censusClass-editor",
|
|
76
76
|
// 'scriptUuid': 'script-editor',
|
|
77
|
-
|
|
77
|
+
entityTableCode: "entityTableCode-editor",
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
79
|
+
echarPieOption: "echart-pie-editor", //饼图
|
|
80
|
+
echarBarOption: "echart-bar-editor", //柱状图
|
|
81
|
+
echarCategoryOption: "echart-category-editor", //折线图
|
|
82
|
+
vabSearchName: "vabSearchName-editor",
|
|
83
|
+
copyButton: "copyButton-editor",
|
|
84
|
+
tempStorageFlag: "tempStorage-editor",
|
|
85
|
+
formatType: "formatType-editor",
|
|
86
|
+
preWrap: "preWrap-editor",
|
|
87
|
+
customUploadConfig: "customUploadConfig-editor",
|
|
87
88
|
|
|
88
89
|
//容器
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
90
|
+
showBlankRow: "showBlankRow-editor",
|
|
91
|
+
showRowNumber: "showRowNumber-editor",
|
|
92
|
+
cellWidth: "cellWidth-editor",
|
|
93
|
+
cellHeight: "cellHeight-editor",
|
|
94
|
+
colHeight: "colHeight-editor",
|
|
95
|
+
gutter: "gutter-editor",
|
|
96
|
+
responsive: "responsive-editor",
|
|
97
|
+
span: "span-editor",
|
|
98
|
+
offset: "offset-editor",
|
|
99
|
+
push: "push-editor",
|
|
100
|
+
pull: "pull-editor",
|
|
101
|
+
height: "height-editor",
|
|
102
|
+
detailContainer: "detail-editor",
|
|
103
|
+
detailPaneContainer: "detail-pane-editor",
|
|
104
|
+
vabSearchField: "vabSearchField-editor",
|
|
105
|
+
fullWidth: "table-fullWidth-editor",
|
|
106
|
+
dataTable: "data-table-editor",
|
|
107
|
+
accessUrl: "accessUrl-editor",
|
|
108
|
+
formulaEnabled: "formulaEnabled-editor",
|
|
109
|
+
formula: "formula-editor",
|
|
110
|
+
showText: "showText-editor",
|
|
111
|
+
detailH5Container: "detail-h5-editor",
|
|
112
|
+
h5Card: "h5-card-editor",
|
|
113
|
+
listH5: "list-h5-editor",
|
|
114
|
+
formScriptEnabled: "formScriptEnabled-editor",
|
|
115
|
+
textFlag: "textFlag-editor",
|
|
116
|
+
showRuleFlag: "showRuleFlag-editor",
|
|
117
|
+
widgetShowRuleFlag: "widgetShowRuleFlag-editor",
|
|
117
118
|
|
|
118
|
-
|
|
119
|
+
dropdownFlag: "dropdownFlag-editor",
|
|
119
120
|
// 'dropdownItemFlag': 'dropdown-item-editor',
|
|
120
121
|
|
|
121
|
-
|
|
122
|
-
|
|
122
|
+
oplogFlag: "oplogFlag-editor",
|
|
123
|
+
ganttConfig: "gantt-editor",
|
|
123
124
|
|
|
124
125
|
//弹框
|
|
125
126
|
title: "title-editor",
|
|
@@ -162,86 +163,84 @@ const COMMON_PROPERTIES = {
|
|
|
162
163
|
clickBindEvent: "clickBindEvent-editor",
|
|
163
164
|
vabUpload: "field-vabUpload-editor",
|
|
164
165
|
vabUpload2Flag: "field-vabUpload2-editor",
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
166
|
+
submitFlag: "submitFlag-editor",
|
|
167
|
+
aLinkFlag: "a-link-editor",
|
|
168
|
+
aTextFlag: "a-text-editor",
|
|
169
|
+
tagFormCode: "project-tag-editor",
|
|
170
|
+
autoValueEnabled: "autoValueEnabled-editor",
|
|
170
171
|
// "commonAttributeEnabled": "commonAttributeEnabled-editor"
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
}
|
|
172
|
+
colorClass: "colorClass-editor",
|
|
173
|
+
downloadButtonFlag: "downloadButtonFlag-editor",
|
|
174
|
+
};
|
|
174
175
|
|
|
175
176
|
const ADVANCED_PROPERTIES = {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
177
|
+
min: "min-editor",
|
|
178
|
+
max: "max-editor",
|
|
179
|
+
precision: "precision-editor",
|
|
180
|
+
step: "step-editor",
|
|
181
|
+
showbutton: "showbutton-editor",
|
|
182
|
+
controlsPosition: "controlsPosition-editor",
|
|
183
|
+
minLength: "minLength-editor",
|
|
184
|
+
maxLength: "maxLength-editor",
|
|
184
185
|
// 'showWordLimit': 'showWordLimit-editor',
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
186
|
+
prefixIcon: "prefixIcon-editor",
|
|
187
|
+
suffixIcon: "suffixIcon-editor",
|
|
188
|
+
switchWidth: "switchWidth-editor",
|
|
189
|
+
activeText: "activeText-editor",
|
|
190
|
+
inactiveText: "inactiveText-editor",
|
|
191
|
+
labelColor: "labelColor-editor",
|
|
192
|
+
activeColor: "activeColor-editor",
|
|
193
|
+
inactiveColor: "inactiveColor-editor",
|
|
194
|
+
lowThreshold: "lowThreshold-editor",
|
|
195
|
+
highThreshold: "highThreshold-editor",
|
|
196
|
+
allowHalf: "allowHalf-editor",
|
|
197
|
+
showText: "showText-editor",
|
|
198
|
+
showScore: "showScore-editor",
|
|
199
|
+
range: "range-editor",
|
|
200
|
+
vertical: "vertical-editor",
|
|
201
|
+
plain: "plain-editor",
|
|
202
|
+
round: "round-editor",
|
|
203
|
+
circle: "circle-editor",
|
|
204
|
+
icon: "icon-editor",
|
|
205
|
+
labelIconClass: "labelIconClass-editor",
|
|
206
|
+
labelIconPosition: "labelIconPosition-editor",
|
|
207
|
+
labelTooltip: "labelTooltip-editor",
|
|
207
208
|
// 'appendButton': 'appendButton-editor',
|
|
208
209
|
// 'appendButtonDisabled': 'appendButtonDisabled-editor',
|
|
209
210
|
// 'buttonIcon': 'buttonIcon-editor',
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
}
|
|
211
|
+
};
|
|
213
212
|
|
|
214
213
|
//流程属性
|
|
215
214
|
const WF_PROPERTIES = {
|
|
216
|
-
|
|
217
|
-
}
|
|
215
|
+
wfFlag: "wfFlag-editor",
|
|
216
|
+
};
|
|
218
217
|
|
|
219
218
|
const EVENT_PROPERTIES = {
|
|
220
219
|
//字段
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
220
|
+
onCreatedEnter: "onCreatedEnter-editor",
|
|
221
|
+
onCreated: "onCreated-editor",
|
|
222
|
+
onMounted: "onMounted-editor",
|
|
223
|
+
onClick: "onClick-editor",
|
|
224
|
+
onInput: "onInput-editor",
|
|
225
|
+
onChange: "onChange-editor",
|
|
226
|
+
onFocus: "onFocus-editor",
|
|
227
|
+
onBlur: "onBlur-editor",
|
|
228
|
+
onRemoteQuery: "onRemoteQuery-editor",
|
|
229
|
+
onBeforeUpload: "onBeforeUpload-editor",
|
|
230
|
+
onUploadSuccess: "onUploadSuccess-editor",
|
|
231
|
+
onUploadError: "onUploadError-editor",
|
|
232
|
+
onFileRemove: "onFileRemove-editor",
|
|
233
|
+
onValidate: "onValidate-editor",
|
|
234
|
+
onAppendButtonClick: "onAppendButtonClick-editor",
|
|
235
|
+
onSearchConfirm: "onSearchConfirm-editor",
|
|
236
|
+
onSearchClear: "onSearchClear-editor",
|
|
237
|
+
onAfterConfirmFile: "onAfterConfirmFile-editor",
|
|
239
238
|
|
|
240
239
|
//容器
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
240
|
+
onSubFormRowAdd: "onSubFormRowAdd-editor",
|
|
241
|
+
onSubFormRowInsert: "onSubFormRowInsert-editor",
|
|
242
|
+
onSubFormRowDelete: "onSubFormRowDelete-editor",
|
|
243
|
+
onSubFormRowChange: "onSubFormRowChange-editor",
|
|
245
244
|
|
|
246
245
|
onOkButtonClick: "onOkButtonClick-editor",
|
|
247
246
|
onCancelButtonClick: "onCancelButtonClick-editor",
|
|
@@ -249,11 +248,11 @@ const EVENT_PROPERTIES = {
|
|
|
249
248
|
onDialogBeforeClose: "onDialogBeforeClose-editor",
|
|
250
249
|
|
|
251
250
|
//vxe-table事件
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
251
|
+
onCellDblclick: "onCellDblclick-editor",
|
|
252
|
+
onCheckboxAll: "onCheckboxAll-editor",
|
|
253
|
+
onCheckboxChange: "onCheckboxChange-editor",
|
|
254
|
+
onSearchTable: "onSearchTable-editor",
|
|
255
|
+
onResetTable: "onResetTable-editor",
|
|
257
256
|
|
|
258
257
|
//tree事件
|
|
259
258
|
onNodeClick: "onNodeClick-editor",
|
|
@@ -262,9 +261,8 @@ const EVENT_PROPERTIES = {
|
|
|
262
261
|
onCheckChange: "onCheckChange-editor",
|
|
263
262
|
onLoadNode: "onLoadNode-editor",
|
|
264
263
|
//tree-pane事件
|
|
265
|
-
onTreeLabelClick: "onTreeLabelClick-editor"
|
|
266
|
-
|
|
267
|
-
}
|
|
264
|
+
onTreeLabelClick: "onTreeLabelClick-editor",
|
|
265
|
+
};
|
|
268
266
|
|
|
269
267
|
/**
|
|
270
268
|
* 注册组件常见属性
|
|
@@ -273,7 +271,7 @@ const EVENT_PROPERTIES = {
|
|
|
273
271
|
* @param propEditorName 对应属性编辑器的组件名称
|
|
274
272
|
*/
|
|
275
273
|
export function registerCommonProperty(uniquePropName, propEditorName) {
|
|
276
|
-
COMMON_PROPERTIES[uniquePropName] = propEditorName
|
|
274
|
+
COMMON_PROPERTIES[uniquePropName] = propEditorName;
|
|
277
275
|
}
|
|
278
276
|
|
|
279
277
|
/**
|
|
@@ -283,7 +281,7 @@ export function registerCommonProperty(uniquePropName, propEditorName) {
|
|
|
283
281
|
* @param propEditorName 对应属性编辑器的组件名称
|
|
284
282
|
*/
|
|
285
283
|
export function registerAdvancedProperty(uniquePropName, propEditorName) {
|
|
286
|
-
ADVANCED_PROPERTIES[uniquePropName] = propEditorName
|
|
284
|
+
ADVANCED_PROPERTIES[uniquePropName] = propEditorName;
|
|
287
285
|
}
|
|
288
286
|
|
|
289
287
|
/**
|
|
@@ -293,7 +291,7 @@ export function registerAdvancedProperty(uniquePropName, propEditorName) {
|
|
|
293
291
|
* @param propEditorName 对应属性编辑器的组件名称
|
|
294
292
|
*/
|
|
295
293
|
export function registerEventProperty(uniquePropName, propEditorName) {
|
|
296
|
-
EVENT_PROPERTIES[uniquePropName] = propEditorName
|
|
294
|
+
EVENT_PROPERTIES[uniquePropName] = propEditorName;
|
|
297
295
|
}
|
|
298
296
|
|
|
299
297
|
/**
|
|
@@ -301,8 +299,11 @@ export function registerEventProperty(uniquePropName, propEditorName) {
|
|
|
301
299
|
* @param uniquePropName 属性名称(保证名称唯一,不跟其他组件属性冲突)
|
|
302
300
|
*/
|
|
303
301
|
export function propertyRegistered(uniquePropName) {
|
|
304
|
-
return
|
|
305
|
-
uniquePropName]
|
|
302
|
+
return (
|
|
303
|
+
!!COMMON_PROPERTIES[uniquePropName] ||
|
|
304
|
+
!!ADVANCED_PROPERTIES[uniquePropName] ||
|
|
305
|
+
!!EVENT_PROPERTIES[uniquePropName]
|
|
306
|
+
);
|
|
306
307
|
}
|
|
307
308
|
|
|
308
309
|
/**
|
|
@@ -311,9 +312,13 @@ export function propertyRegistered(uniquePropName) {
|
|
|
311
312
|
* @param propEditorName
|
|
312
313
|
* @param editorComponent
|
|
313
314
|
*/
|
|
314
|
-
export function registerCPEditor(
|
|
315
|
-
|
|
316
|
-
|
|
315
|
+
export function registerCPEditor(
|
|
316
|
+
uniquePropName,
|
|
317
|
+
propEditorName,
|
|
318
|
+
editorComponent
|
|
319
|
+
) {
|
|
320
|
+
Vue.component(propEditorName, editorComponent);
|
|
321
|
+
registerCommonProperty(uniquePropName, propEditorName);
|
|
317
322
|
}
|
|
318
323
|
|
|
319
324
|
/**
|
|
@@ -322,9 +327,13 @@ export function registerCPEditor(uniquePropName, propEditorName, editorComponent
|
|
|
322
327
|
* @param propEditorName
|
|
323
328
|
* @param editorComponent
|
|
324
329
|
*/
|
|
325
|
-
export function registerAPEditor(
|
|
326
|
-
|
|
327
|
-
|
|
330
|
+
export function registerAPEditor(
|
|
331
|
+
uniquePropName,
|
|
332
|
+
propEditorName,
|
|
333
|
+
editorComponent
|
|
334
|
+
) {
|
|
335
|
+
Vue.component(propEditorName, editorComponent);
|
|
336
|
+
registerAdvancedProperty(uniquePropName, propEditorName);
|
|
328
337
|
}
|
|
329
338
|
|
|
330
339
|
/**
|
|
@@ -333,14 +342,18 @@ export function registerAPEditor(uniquePropName, propEditorName, editorComponent
|
|
|
333
342
|
* @param propEditorName
|
|
334
343
|
* @param editorComponent
|
|
335
344
|
*/
|
|
336
|
-
export function registerEPEditor(
|
|
337
|
-
|
|
338
|
-
|
|
345
|
+
export function registerEPEditor(
|
|
346
|
+
uniquePropName,
|
|
347
|
+
propEditorName,
|
|
348
|
+
editorComponent
|
|
349
|
+
) {
|
|
350
|
+
Vue.component(propEditorName, editorComponent);
|
|
351
|
+
registerEventProperty(uniquePropName, propEditorName);
|
|
339
352
|
}
|
|
340
353
|
|
|
341
354
|
export default {
|
|
342
355
|
COMMON_PROPERTIES,
|
|
343
356
|
ADVANCED_PROPERTIES,
|
|
344
357
|
EVENT_PROPERTIES,
|
|
345
|
-
WF_PROPERTIES
|
|
346
|
-
}
|
|
358
|
+
WF_PROPERTIES,
|
|
359
|
+
};
|