mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-02-11 00:16:24 +00:00
This commit adds * handling of bpmn update as command listeners * label support Related to bpmn-io/diagram-js#45 BREAKING CHANGE: * rename bpmnModeling -> modeling to achive parity with diagram-js
10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
module.exports = {
|
|
__depends__: [
|
|
require('diagram-js-direct-editing'),
|
|
require('diagram-js/lib/features/context-pad'),
|
|
require('diagram-js/lib/features/selection'),
|
|
require('../modeling')
|
|
],
|
|
__init__: [ 'contextPadProvider' ],
|
|
contextPadProvider: [ 'type', require('./ContextPadProvider') ]
|
|
}; |