Martin Stamm
892a92f6ec
feat(copy-paste): copy collapsed subprocesses planes
2022-01-30 19:32:25 +00:00
Philipp
fb6c649570
chore: simplify drilldown utility
...
* semantic names help understanding what the utility functions do without having to check their implementation
2022-01-30 16:52:32 +01:00
Philipp
ebba204435
chore: code style
...
* single-line comments should always be lowercase
2022-01-30 16:52:32 +01:00
Martin Stamm
eefa78240b
feat(planes): ensure plane link after ID change
...
closes #1575
2022-01-30 16:52:32 +01:00
bpmn-io-bot
715de7357b
Merge master to develop
2022-01-24 10:46:14 +00:00
Philipp
d521b018c1
fix: reusing process when creating first participant works on redo
...
* during `#preExecute` of `elements.create` process is passed to `shape.create` to be reused during `#execute` (there is no `#exeute` for `elements.create` as it only executes other commands during `#preExecute`)
* process must be reused during `#execute` of `shape.create` for `#redo` to work
* refactor implementation
Closes #1439
2022-01-24 10:45:55 +00:00
bpmn-io-bot
2ae21c3c57
Merge master to develop
2022-01-19 08:20:34 +00:00
Martin Stamm
4e161427b8
fix(modeling): ensure IDs are claimed when used
...
closes #1555
2022-01-19 08:20:14 +00:00
Martin Stamm
d3ecd92dcd
feat(modeling): delete nested subprocesses
2022-01-12 09:14:15 +01:00
Martin Stamm
2e672d0e24
feat(modeling): support morphing to AdhocSubprocess
2022-01-12 09:14:15 +01:00
Martin Stamm
12fe06bfa6
feat(modeling): reconnect flows on collapse
2022-01-12 09:14:15 +01:00
Martin Stamm
b8ed73b7f8
feat(modeling): support toggle collapse with drilldown
...
closes #1539
2022-01-12 09:14:15 +01:00
Martin Stamm
ddc10154c9
feat(modeling): create root elements for subprocesses
...
closes #1536
2022-01-12 09:14:15 +01:00
Martin Stamm
eed6c3b662
fix(elementFactory): ensure `collapsed` is set
2021-12-15 10:29:26 +00:00
Nico Rehwaldt
a42ba5cd90
feat(util/ModelUtil): expose `isAny`
...
It is a core utility that will be tree-shaken if not used.
We'll continue to expose it via `ModelingUtil` for backwards
compatibility.
2021-12-14 11:58:10 +00:00
Nico Rehwaldt
4e08a1c703
chore: switch to truely multi-root aware mode
...
Use new `Canvas#*RootElement` APIs.
2021-12-14 11:58:10 +00:00
Maciej Barelkowski
88a484e41e
fix: don't create illegal `waypoint` property
...
Closes https://github.com/bpmn-io/bpmn-js/issues/1544
2021-12-03 19:45:37 +00:00
Nico Rehwaldt
4204c2bb2a
Merge branch 'master' into develop
2021-12-03 17:38:54 +01:00
Nico Rehwaldt
3a96864a97
fix(modeling): set label color on `bpmndi:BPMNLabel#color`
...
Related to https://github.com/camunda/camunda-modeler/issues/2599 .
2021-12-03 17:14:26 +01:00
bpmn-io-bot
b3ff599127
Merge master to develop
2021-12-03 07:54:03 +00:00
Nico Rehwaldt
1ede893679
fix(modeling): handle close to {source,target} drop-on-flow
...
Closes https://github.com/bpmn-io/bpmn-js/issues/1541
2021-12-03 07:53:44 +00:00
github-actions
6f88c01956
Merge master to develop
2021-10-15 08:38:22 +00:00
Nico Rehwaldt
b4bd6557b1
chore: unbuild circular dependency
...
Inline `ResizeUtil` into behavior to prevent circular depdendency.
It is not being used outside the behavior anyway and uses behavior
internals (lane dimensions).
2021-10-15 10:38:06 +02:00
Nico Rehwaldt
bb9dc16cac
chore(modeling): consistently create DI with attrs
...
This fixes the existing DI creation methods in `BpmnFactory` and
simplifies the related `ElementFactory` code that relied on it.
In the past args got ignored and passing attrs to the created DI
was not possible, now it is.
BREAKING CHANGE:
With this change the following `BpmnFactory` API methods got reworked to
take (businessObject, attrs) as an input:
* `BpmnFactory#createDiEdge`
* `BpmnFactory#createDiShape`
* `BpmnFactory#createDiPlane`
2021-09-03 15:14:00 +02:00
Martin Stamm
c4206a4d31
fix(replace): create new di on replace
2021-09-03 15:14:00 +02:00
Martin Stamm
597c417dce
chore: throw error when accessing DI from business object
...
Related to https://github.com/bpmn-io/bpmn-js/issues/1472
2021-09-03 15:14:00 +02:00
Martin Stamm
5589439774
feat: make elementFactory._getDefaultSize public
...
This has the benefit of using the public API method across our
code base.
2021-09-03 15:14:00 +02:00
Martin Stamm
769bcbeeff
chore: adjust features to new DI structure
...
Related to https://github.com/bpmn-io/bpmn-js/issues/1472
2021-09-03 15:14:00 +02:00
Joel Knott
8d90d4dc63
chore: use ES6 exports
...
Modified the file to use 'export default' instead of 'module.exports'
so that I don't get errors stating that there is no default export.
2021-08-25 08:41:34 +02:00
Maciej Barelkowski
2a60745991
Merge branch 'master' into develop
2021-06-02 08:53:22 +02:00
Maciej Barelkowski
e0c4dea90d
fix(modeling): append DataStoreReference to first available process
...
Related to #1456
2021-05-31 18:31:39 +00:00
Maciej Barelkowski
439bc4ead0
feat(modeling): use BPMN in Color for color setting
...
Additionally to custom bpmn.io properties, `modeling#setColor` will use
[BPMN in Color properties](https://github.com/bpmn-miwg/bpmn-in-color ).
2021-05-27 12:43:53 +00:00
Philipp Fromme
4806507936
feat: reconnect message flows when collapsing participant
...
Related to camunda/camunda-modeler#1651
2021-04-22 07:09:34 +00:00
Maciej Barelkowski
d4078f1ab0
feat: replace elements on create
...
Closes #1340
2021-04-16 12:38:28 +00:00
Philipp Fromme
c3e0d6d164
fix: copy root element references
...
Related to camunda/camunda-modeler#2185
2021-04-14 11:56:08 +00:00
Nico Rehwaldt
6c02ecde34
fix(modeling): if we fix hover, we gotta fix out, too
...
This ensures our FixHoverBehavior (that ensures we drop onto /
connect to participants, not lanes) does fix the hover element
during *.out, too.
Otherwise there is no way for other behaviors to correctly
remove hover indicators.
Closes https://github.com/bpmn-io/bpmn-js/issues/1413
2021-01-28 11:11:27 +01:00
Nico Rehwaldt
667d469f38
feat(modeling): provide generic moddle properties update API
...
Modeling#updateModdleProperties allows users to update moddle elements
that are backed up by diagram elements.
It provides us a path forward when we start to update more _hidden_
things from within the modeling canvas.
2020-11-19 14:24:59 +00:00
Alexis Zeghers
4b46f695ce
feat(modeler): add toggle to mark a data object as a collection
...
Closes #381
2020-11-18 10:03:46 +00:00
Nico Rehwaldt
b75f1c2cb7
chore(modeling): drop dead code
...
Remove modeling feedback on paste rejected.
That event is long gone, as we two-step copy and paste nowadays.
2020-11-03 20:39:20 +00:00
Maciej Barelkowski
f1745547f0
feat(layouter): prefer straight layout for sub-process connections
...
Related to https://github.com/camunda/camunda-modeler/issues/1758
2020-04-08 11:14:46 +00:00
Philipp Fromme
2dd1e13305
chore(documentation): fix JSDoc boolean types
2020-04-07 06:52:55 +00:00
Philipp Fromme
fcb11a60f7
chore(documentation): fix JSDoc number types
2020-04-07 06:52:55 +00:00
Philipp Fromme
7a67ff95b2
chore(documentation): fix JSDoc string types
2020-04-07 06:52:55 +00:00
Nico Rehwaldt
95b50f08a7
feat(replace): create bpmn:LinkEventDefinition with empty name
...
Closes https://github.com/bpmn-io/bpmn-js/issues/1296
2020-03-27 07:23:12 +00:00
Maciej Barelkowski
d48812766f
Merge branch 'master' into develop
2020-03-16 13:24:50 +01:00
Maciej Barelkowski
7696534f22
fix(modeling): save bpmndi as drawn on the diagram
...
Related to https://github.com/camunda/camunda-modeler/issues/1326
Closes #985
2020-03-16 12:24:05 +00:00
Maciej Barelkowski
62f331bc3d
Merge branch 'master' into develop
2020-03-13 14:15:14 +01:00
Maciej Barelkowski
6388312fb5
chore(space-tool): refactor participant minimum height function
2020-03-13 07:56:38 +00:00
Philipp Fromme
dafa6f138c
fix(space-tool): consider lanes when resizing participant
...
Related to camunda/camunda-modeler#1703
2020-03-13 07:56:38 +00:00
Nico Rehwaldt
368f9e14b5
fix(modeling): make AddLaneHandler recognize top-level labels
...
Related to https://github.com/camunda/camunda-modeler/issues/1715
2020-03-09 14:50:37 +01:00