Nico Rehwaldt
2e73f5ab85
fix(modeling): update id property in diagram-js, too
...
This fixes a bug where updating the id property of an element
was not propagated to the diagram. Thus, retrieving the element
based on the new id from diagram-js did not work.
Closes #238
2015-04-13 10:55:17 +02:00
jdotzki
8cd3c78d5e
fix(rule): allow drop of associations
...
close #202
2015-03-25 13:45:54 +01:00
Nico Rehwaldt
e7bbb5d6bf
chore(project): use inherits util
2015-03-23 15:15:32 +01:00
Nico Rehwaldt
695a973e92
chore(modeling): renamve behaviors for clarity
2015-03-23 15:14:54 +01:00
Nico Rehwaldt
e06fb32ad2
fix(style): remove trailing comma
2015-03-13 10:39:22 +01:00
Nico Rehwaldt
397a4aeea5
fix(replace): keep associations during replace
...
Closes #226
2015-03-12 14:03:28 +01:00
Nico Rehwaldt
ae8e6146d1
chore(project): fix whitespace character
2015-03-11 17:42:56 +01:00
Nico Rehwaldt
1c0ade9d51
feat(replace): focus element after replace
...
Related to #192
2015-03-11 16:31:42 +01:00
Nico Rehwaldt
67d81c346c
fix(replace): pre-build BPMN elements
...
This simplifies the ways we work with replacements.
Instead of monkey-patching the original replace functionality we
* create the business object / target object
* pass it to replace
A simple way that works well with our existing infrastructure.
Other changes:
* fixes redo / undo issues.
* splits context-pad + replace
Closes #180
2015-03-11 16:19:09 +01:00
Nico Rehwaldt
d1d42f3713
chore(project): upgrade to latest bpmn-font
2015-03-10 16:07:58 +01:00
jdotzki
2b8d8110fd
fix(contextpad): prevent replace menu from opening multiple instances
2015-03-08 11:51:38 +01:00
jdotzki
2321caecd7
improve(contextpad): remove modeling options behind throwing link events
...
related #219
2015-03-07 12:59:22 +01:00
jdotzki
6aceab9dbf
feature(contextpad): add catch events to pad for event based gateways
...
close #206
2015-03-06 09:27:18 +01:00
jdotzki
e665895448
improve(font): update to latest font
...
#186
2015-03-05 18:04:57 +01:00
jdotzki
89a3a6bcd8
feature(modeling): set di.isMarkerVisible for exclusive gateway as default
...
close #221
2015-03-05 14:19:47 +01:00
jdotzki
c5af54c1e3
feature(rules): add rule for link events
...
close #219
2015-03-05 13:57:32 +01:00
jdotzki
6f85d3081f
improve(contextpad): use receive-task icon instead just receive
...
close #214
2015-03-04 15:50:06 +01:00
jdotzki
7676b9f244
fix(context pad): correct position of replace menu
...
close #210
2015-03-04 15:27:13 +01:00
jdotzki
1c45d98f9a
fix(contextpad): add missing events to replace menu
...
close #209
close #217
2015-03-04 12:28:18 +01:00
jdotzki
225cbb914c
fix(rules): fix modeling rules for event based gateways
...
Allow condition and signal catching events after event based gateways.
close #213
2015-03-04 10:20:37 +01:00
jdotzki
f527096ac2
fix(contextpad): add signal event to end event replace menu
...
close #211 #218
2015-03-03 17:09:54 +01:00
jdotzki
5604e13468
fix(contextpad): remove incorrect replace targets
...
close #207
2015-03-03 15:58:59 +01:00
jdotzki
73c6c883c5
fix(replace): run model updates on 'execute'
...
close bpmn-io/bpmn-js#213
2015-03-03 15:52:40 +01:00
jdotzki
22c0065d5d
fix(context pad): remove instantiating gateways from replace menu
...
close #212
2015-03-03 15:15:00 +01:00
jdotzki
7207d010db
feat(contextpad): add event to replace-menu
...
See #192
2015-03-02 13:43:06 +01:00
jdotzki
66801df111
feature(rules): add modeling rules for event based gateways
...
closes #193
2015-03-02 13:43:06 +01:00
jdotzki
18c2b0552e
feat(contextpad): add replace-menu to context pad
...
Support for Gateways and Task Types was added.
See #130
2015-03-02 13:43:06 +01:00
jdotzki
3873709141
feat(replace): add service that allows to replace elements
...
API
- BpmnReplace#replaceElement
see bpmn-io/bpmn-js#130
2015-03-02 13:43:06 +01:00
Nico Rehwaldt
3996408404
chore(project): migrate to modularized lodash@3
...
* use specialized lodash utilities
* consistently apply 'use strict'
Related to #185
2015-02-02 14:46:21 +01:00
Nico Rehwaldt
a899df2a12
chore(modeling/rules): reduce complexity
...
Related to #176
2015-01-29 14:03:17 +01:00
jdotzki
d8057a2acc
fix(rules): disallow circular connection
...
This temporarily disallows connections from and to the same element
because it rendered the connection unusable..
This change can be reverted once proper auto layout for circular connections is implemented.
Closes #176
2015-01-29 13:26:32 +01:00
Nico Rehwaldt
85e512c97d
feat(modeler): add bendpoints
...
It is now possible to add bendpoints to flows or drag bendpoints to
update their position / trigger reconnects.
Upon bendpoint move a rule is checked to figure out whether or not a
bendpoint operation is allowed or not.
Closes #123
Closes #138
Closes #139
Closes #165
2015-01-20 17:19:56 +01:00
Nico Rehwaldt
39d5fa2e9c
feat(modeling): inherit default handlers
2015-01-06 16:28:39 +01:00
Nico Rehwaldt
2019c658df
feat(modeling): add property update mechanism
...
This adds the modeling#updateProperties(element, props) method to the
modeler that can be used to set BPMN 2.0 properties on elements.
By assigning the properties this way, the modeler is aware of the
elements that got changed and can update / redraw the elements
accordingly.
This hooks up with the modelers undo/redo chain, too.
Related to #167
2015-01-02 16:15:18 +01:00
Nico Rehwaldt
2909847ac8
feat(direct-editing): rework editing
...
This commit updates the default direct editing behavior.
It activates on non-touch environments only and only on embedded
labels, too.
This provides a way smoother modeling experience.
2014-12-23 16:56:35 +01:00
Nico Rehwaldt
355059c30a
feat(modelling): unify drag/drop handling from palette/context-pad
...
Related to bpmn-io/diagram-js#60
2014-12-23 16:56:35 +01:00
jdotzki
1dd19fdb0d
fix(contextpad): different handling for deletion of shapes and connections
...
See bpmn-io/bpmn-js#121
2014-12-23 14:24:34 +01:00
Nico Rehwaldt
18784c5994
fix(label-editing): listen to correct events
2014-12-17 21:55:03 +01:00
Nico Rehwaldt
429a903dd5
style(*): fix jshint warnings
2014-12-07 15:10:02 +01:00
Nico Rehwaldt
6041717c6c
feat(modeling): implement create via palette/context-pad
...
Related to #137
2014-12-07 13:08:50 +01:00
Nico Rehwaldt
e387768ef1
fix(modeling): use correct parent for bpmn:TextAnnotation
2014-12-02 08:36:15 +01:00
Nico Rehwaldt
9e37037ac6
fix(move): adjust positioning of all attached labels
2014-11-28 11:38:06 +01:00
Nico Rehwaldt
3af41e2e7e
fix(rules): restrict movement on flow elements only
...
For the moment we allow moving flow elements in between diagrams, only.
2014-11-27 11:56:31 +01:00
Nico Rehwaldt
2258642cb4
fix(modeling): skip updating BPMN parent on label move
2014-11-27 11:55:38 +01:00
Nico Rehwaldt
2f679a36b9
feat(modeling): move to rules infrastructure
...
Related to bpmn-io/diagram-js#55
2014-11-21 09:22:51 +01:00
jdotzki
51918b3493
feat(drop): basic implementation
...
This commit adds a basic implementation for model drop
* using rules to check whether the drop is allowed
* updating the model after drop
See #127
2014-11-21 09:21:41 +01:00
Nico Rehwaldt
0b8baccd32
feat(palette): migrate to icon font
...
Related to #148
2014-11-17 18:26:07 +01:00
Nico Rehwaldt
b1f310a1db
feat(context-pad): use font to render symbols
...
Related to #148
2014-11-17 11:02:25 +01:00
Nico Rehwaldt
c58532aeac
chore(import): reorganize import related functionality
...
This commit puts all import related stuff into the import module.
The core module remains as an entry point to require the basic modules
needed by bpmn-js. At the time this is { import, draw }.
2014-10-30 12:06:43 +01:00
jdotzki
86f66bc534
improve(resize): allow to set minimum size for element
2014-10-14 17:26:50 +02:00