Lines Matching refs:newShape

26256 	    var newShape = modeling.appendShape(source, shape, position, source.parent, hints);
26260 shape: newShape
26263 return newShape;
41483 var newShape = event.context.newShape,
41487 if (!is$1(newShape, 'bpmn:EventBasedGateway')) {
41491 newShapeTargets = newShape.outgoing.filter(isSequenceFlow)
41503 if (sequenceFlow.source !== newShape) {
42743 newShape = context.newShape,
42746 var businessObject = getBusinessObject(newShape);
42751 && newShape.label) {
42752 newShape.label.x = oldShape.label.x;
42753 newShape.label.y = oldShape.label.y;
43017 newShape = context.newShape;
43019 if (!isParticipantCollapse(oldShape, newShape)) {
43026 var anchor = getResizedTargetAnchor(incoming, newShape, oldShape);
43028 modeling.reconnectEnd(incoming, newShape, anchor);
43032 var anchor = getResizedSourceAnchor(outgoing, newShape, oldShape);
43034 modeling.reconnectStart(outgoing, newShape, anchor);
43046 function isParticipantCollapse(oldShape, newShape) { argument
43049 && is$1(newShape, 'bpmn:Participant')
43050 && !isExpanded(newShape);
43392 newShape = context.newShape,
43397 canReplace = bpmnRules.canReplace(attachers, newShape);
43408 newShape = context.newShape;
43411 modeling.updateProperties(newShape, { id: oldShape.id });
43859 newShape = event.context.newShape;
43862 !is$1(newShape, 'bpmn:SubProcess') ||
43864 !isExpanded(newShape)
43869 var position = getStartEventPosition(newShape);
43871 modeling.createShape({ type: 'bpmn:StartEvent' }, position, newShape);
46834 newShape = context.newShape;
46839 target: newShape,
46844 modeling.updateAttachment(attacher, newShape);
46851 if (newShape.attachers.length) {
46853 forEach(newShape.attachers, function(attacher) {
46854 var delta = getNewAttachShapeDelta(attacher, oldShape, newShape);
50255 newShape;
50278 newShape = context.newShape =
50279 context.newShape ||
50284 modeling.updateAttachment(newShape, oldShape.host);
50293 modeling.moveElements(children, { x: 0, y: 0 }, newShape, hints);
50302 allowed = canReconnect(source, newShape, connection);
50306 connection, newShape,
50307 getResizedTargetAnchor(connection, newShape, oldBounds),
50315 allowed = canReconnect(newShape, target, connection);
50319 connection, newShape,
50320 getResizedSourceAnchor(connection, newShape, oldBounds),
51231 Modeling$1.prototype.replaceShape = function(oldShape, newShape, hints) { argument
51234 newData: newShape,
51240 return context.newShape;