mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-09 16:45:49 +00:00
194b963959
* use <copyPaste.canCopyProperty> event to copy category value when copying group * add camunda-bpmn-moddle for integration tests BREAKING CHANGES * CopyPaste: remove <property.clone>, add <moddleCopy.canCopyProperties>, <moddleCopy.canCopyProperty>, <moddleCopy.canSetCopiedProperty> * BpmnRules: removed <elements.paste> rule in favor of <elements.create> rule * BpmnRules: removed <element.paste> rule * ElementFactory: use <attrs.di> property instead of <attrs.colors> for fill and stroke when creating element through ElementFactory#createBpmnElement
14 lines
342 B
JavaScript
14 lines
342 B
JavaScript
import CopyPasteModule from 'diagram-js/lib/features/copy-paste';
|
|
|
|
import BpmnCopyPaste from './BpmnCopyPaste';
|
|
import ModdleCopy from './ModdleCopy';
|
|
|
|
export default {
|
|
__depends__: [
|
|
CopyPasteModule
|
|
],
|
|
__init__: [ 'bpmnCopyPaste', 'moddleCopy' ],
|
|
bpmnCopyPaste: [ 'type', BpmnCopyPaste ],
|
|
moddleCopy: [ 'type', ModdleCopy ]
|
|
};
|