camunda-bpmn-js 4.13.0 → 4.14.0
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/camunda-cloud-modeler.development.js +204 -3
- package/dist/camunda-cloud-modeler.production.min.js +4 -4
- package/dist/camunda-cloud-navigated-viewer.development.js +87 -0
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +87 -0
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/package.json +3 -3
|
@@ -24217,6 +24217,93 @@
|
|
|
24217
24217
|
isAttr: true
|
|
24218
24218
|
}
|
|
24219
24219
|
]
|
|
24220
|
+
},
|
|
24221
|
+
{
|
|
24222
|
+
name: "ExecutionListeners",
|
|
24223
|
+
superClass: [
|
|
24224
|
+
"Element"
|
|
24225
|
+
],
|
|
24226
|
+
meta: {
|
|
24227
|
+
allowedIn: [
|
|
24228
|
+
"bpmn:Event",
|
|
24229
|
+
"bpmn:Activity",
|
|
24230
|
+
"bpmn:Process",
|
|
24231
|
+
"bpmn:ExclusiveGateway",
|
|
24232
|
+
"bpmn:InclusiveGateway",
|
|
24233
|
+
"bpmn:ParallelGateway",
|
|
24234
|
+
"bpmn:EventBasedGateway"
|
|
24235
|
+
]
|
|
24236
|
+
},
|
|
24237
|
+
properties: [
|
|
24238
|
+
{
|
|
24239
|
+
name: "listeners",
|
|
24240
|
+
type: "ExecutionListener",
|
|
24241
|
+
isMany: true
|
|
24242
|
+
}
|
|
24243
|
+
]
|
|
24244
|
+
},
|
|
24245
|
+
{
|
|
24246
|
+
name: "ExecutionListener",
|
|
24247
|
+
superClass: [
|
|
24248
|
+
"Element"
|
|
24249
|
+
],
|
|
24250
|
+
meta: {
|
|
24251
|
+
allowedIn: [
|
|
24252
|
+
"zeebe:ExecutionListeners"
|
|
24253
|
+
]
|
|
24254
|
+
},
|
|
24255
|
+
properties: [
|
|
24256
|
+
{
|
|
24257
|
+
name: "eventType",
|
|
24258
|
+
type: "String",
|
|
24259
|
+
isAttr: true
|
|
24260
|
+
},
|
|
24261
|
+
{
|
|
24262
|
+
name: "retries",
|
|
24263
|
+
type: "String",
|
|
24264
|
+
isAttr: true
|
|
24265
|
+
},
|
|
24266
|
+
{
|
|
24267
|
+
name: "type",
|
|
24268
|
+
type: "String",
|
|
24269
|
+
isAttr: true
|
|
24270
|
+
}
|
|
24271
|
+
]
|
|
24272
|
+
},
|
|
24273
|
+
{
|
|
24274
|
+
name: "VersionTag",
|
|
24275
|
+
superClass: [
|
|
24276
|
+
"Element"
|
|
24277
|
+
],
|
|
24278
|
+
meta: {
|
|
24279
|
+
allowedIn: [
|
|
24280
|
+
"bpmn:Process"
|
|
24281
|
+
]
|
|
24282
|
+
},
|
|
24283
|
+
properties: [
|
|
24284
|
+
{
|
|
24285
|
+
name: "value",
|
|
24286
|
+
type: "String",
|
|
24287
|
+
isAttr: true
|
|
24288
|
+
}
|
|
24289
|
+
]
|
|
24290
|
+
},
|
|
24291
|
+
{
|
|
24292
|
+
name: "BindingTypeSupported",
|
|
24293
|
+
isAbstract: true,
|
|
24294
|
+
"extends": [
|
|
24295
|
+
"zeebe:CalledDecision",
|
|
24296
|
+
"zeebe:CalledElement",
|
|
24297
|
+
"zeebe:FormDefinition"
|
|
24298
|
+
],
|
|
24299
|
+
properties: [
|
|
24300
|
+
{
|
|
24301
|
+
name: "bindingType",
|
|
24302
|
+
isAttr: true,
|
|
24303
|
+
type: "String",
|
|
24304
|
+
"default": "latest"
|
|
24305
|
+
}
|
|
24306
|
+
]
|
|
24220
24307
|
}
|
|
24221
24308
|
];
|
|
24222
24309
|
var zeebeModdle = {
|