@syncfusion/ej2-angular-diagrams 30.1.41-ngcc → 30.1.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/CHANGELOG.md +2052 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
  4. package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
  5. package/esm2020/src/diagram/connectors.directive.mjs +60 -0
  6. package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
  7. package/esm2020/src/diagram/diagram-all.module.mjs +83 -0
  8. package/esm2020/src/diagram/diagram.component.mjs +231 -0
  9. package/esm2020/src/diagram/diagram.module.mjs +106 -0
  10. package/esm2020/src/diagram/layers.directive.mjs +54 -0
  11. package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
  12. package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
  13. package/esm2020/src/diagram/nodes.directive.mjs +62 -0
  14. package/esm2020/src/diagram/ports.directive.mjs +59 -0
  15. package/esm2020/src/index.mjs +21 -0
  16. package/esm2020/src/overview/overview-all.module.mjs +23 -0
  17. package/esm2020/src/overview/overview.component.mjs +60 -0
  18. package/esm2020/src/overview/overview.module.mjs +25 -0
  19. package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
  20. package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
  21. package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
  22. package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
  23. package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
  24. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1153 -0
  25. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  26. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1153 -0
  27. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  28. package/package.json +20 -7
  29. package/public_api.d.ts +1 -1
  30. package/src/diagram/connector-annotation.directive.d.ts +175 -170
  31. package/src/diagram/connector-fixeduserhandle.directive.d.ts +116 -111
  32. package/src/diagram/connectors.directive.d.ts +281 -276
  33. package/src/diagram/customcursor.directive.d.ts +36 -31
  34. package/src/diagram/diagram-all.module.d.ts +31 -25
  35. package/src/diagram/diagram.component.d.ts +106 -103
  36. package/src/diagram/diagram.module.d.ts +20 -5
  37. package/src/diagram/layers.directive.d.ts +60 -55
  38. package/src/diagram/node-annotation.directive.d.ts +156 -151
  39. package/src/diagram/node-fixeduserhandle.directive.d.ts +107 -102
  40. package/src/diagram/nodes.directive.d.ts +343 -338
  41. package/src/diagram/ports.directive.d.ts +147 -142
  42. package/src/index.d.ts +20 -20
  43. package/src/overview/overview-all.module.d.ts +11 -5
  44. package/src/overview/overview.component.d.ts +32 -29
  45. package/src/overview/overview.module.d.ts +11 -5
  46. package/src/symbol-palette/palettes.directive.d.ts +56 -51
  47. package/src/symbol-palette/symbolpalette-all.module.d.ts +11 -5
  48. package/src/symbol-palette/symbolpalette.component.d.ts +35 -32
  49. package/src/symbol-palette/symbolpalette.module.d.ts +12 -5
  50. package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
  51. package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1342
  52. package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
  53. package/@syncfusion/ej2-angular-diagrams.js +0 -1261
  54. package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
  55. package/LICENSE +0 -10
  56. package/dist/ej2-angular-diagrams.umd.js +0 -1787
  57. package/dist/ej2-angular-diagrams.umd.js.map +0 -1
  58. package/dist/ej2-angular-diagrams.umd.min.js +0 -11
  59. package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
  60. package/ej2-angular-diagrams.d.ts +0 -7
  61. package/ej2-angular-diagrams.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,2052 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### Diagram
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I743241` - Improved performance when dragging group nodes containing multiple child nodes.
10
+ - `#I742692` - Resolved diagram flickering issue during panning.
11
+ - `#I742819` - Fixed connector overlapping issue in complex hierarchical tree.
12
+ - `#I743248` - The CollectionChange event now provides arguments to notify copy and paste actions, enabling proper tracking and handling of these operations.
13
+
14
+ ## 30.1.40 (2025-07-15)
15
+
16
+ ### Diagram
17
+
18
+ #### Bug Fixes
19
+
20
+ - `#I737645` - Connectors are now selected after being dragged from a negative position to a positive position.
21
+ - `#I739876` - now no error occurs when moving group node into a layer.
22
+ - `#I739181` - The issue "Child nodes overlapping on another layout in organizational chart" has been fixed.
23
+
24
+ ## 30.1.39 (2025-07-08)
25
+
26
+ ### Diagram
27
+
28
+ #### Bug Fixes
29
+
30
+ - `#I732921` - Resolved the issue of node dimension changes when dragging multiple selected nodes.
31
+ - `#I739052` - Undo now works correctly for connectors without a target id.
32
+
33
+ ## 30.1.38 (2025-07-02)
34
+
35
+ ### Diagram
36
+
37
+ #### Bug Fixes
38
+
39
+ - `#I731236` - Resolved the issue with flipping rotated group nodes.
40
+ - `#I732003` - The connectors in layout will no longer overlaps on nodes.
41
+ - `#I734671` - Resolved the issue in viewport changing on serialization.
42
+ - `#I733087` - Now, Polyline connectors can be drawn from ports.
43
+
44
+ ## 30.1.37 (2025-06-25)
45
+
46
+ ### Diagram
47
+
48
+ #### Bug Fixes
49
+
50
+ - `#I184493` - The null exception will no longer thrown while hovering over the ports.
51
+ - `#I47014` - The segmentCollectionChange is triggered when editSegment method called.
52
+
53
+ ## 23.1.36 (2023-09-15)
54
+
55
+ ### Diagram
56
+
57
+ #### Bug Fixes
58
+
59
+ - `#I468711` - Now, opacity 0 get working for the image node.
60
+ - `#I182694` - Now, UML multiplicity type ManyToMany get working for annotation label.
61
+ - `#I44765` - Now, child nodes are properly rendered after deleting swimlane and performing undo action.
62
+
63
+ ## 22.1.34 (2023-06-21)
64
+
65
+ ### Diagram
66
+
67
+ #### New Features
68
+
69
+ - `#F152758` - Added tooltip support for ports.
70
+ - `#I420267` - Added tooltip support for symbols in the symbol palette.
71
+ - `#I32153` - Provided vertical orientation for mind maps.
72
+ - `#I392082` - Added functionality to load diagrams from EJ1 to EJ2.
73
+ - `#I327078` - Provided support to customize the expand and collapse icons.
74
+
75
+ ## 21.2.9 (2023-06-06)
76
+
77
+ ### Diagram
78
+
79
+ #### Bug Fixes
80
+
81
+ - `#I463138` - Now, Scroll bar is updated properly without flickering while scrolling the diagram using touchpad.
82
+ - `#I464508` - The DOM Exception will no longer thrown while adding group node dynamically with multiple layers.
83
+
84
+ ## 21.2.8 (2023-05-30)
85
+
86
+ ### Diagram
87
+
88
+ #### Bug Fixes
89
+
90
+ - `#I461020` - The undefined Exception will No longer thrown while dragging Swimlane after performing undo/redo on swimlane child nodes.
91
+ - `#I462780` - Now, Nodes are updated properly while zoom out diagram in canvas mode.
92
+
93
+ ## 21.2.6 (2023-05-23)
94
+
95
+ ### Diagram
96
+
97
+ #### Bug Fixes
98
+
99
+ - `#I464229` - Now, Complex hierarchical tree layout is working fine while injecting line distribution.
100
+
101
+ ## 21.2.5 (2023-05-16)
102
+
103
+ ### Diagram
104
+
105
+ #### Bug Fixes
106
+
107
+ - `#I456104` - Now, swimlane child nodes are selectable after save and load.
108
+
109
+ ## 21.2.4 (2023-05-09)
110
+
111
+ ### Diagram
112
+
113
+ #### Bug Fixes
114
+
115
+ - `#I456288` - Now, scroller updated properly when we move nodes outside viewport.
116
+ - `#I458205` - Now, bezier connector annotation alignment is working properly.
117
+ - `#I456037` - Now, while hovering the port with single select and ZoomPan constraints drawing tool enabled.
118
+
119
+ ## 21.2.3 (2023-05-03)
120
+
121
+ ### Diagram
122
+
123
+ #### Bug Fixes
124
+
125
+ - `#I451762` - Now, the flip mode port is working for all nodes.
126
+ - `#I449574` - Now, the performance of the diagram is improved while rendering large number of nodes and connectors.
127
+ - `#I454253` - Now, fill color for bpmn transaction subprocess is applied properly.
128
+ - `#I455551` - Now, history change event does not get triggered while clicking swimlane header for second time.
129
+
130
+ ## 21.1.39 (2023-04-11)
131
+
132
+ ### Diagram
133
+
134
+ #### Bug Fixes
135
+
136
+ - `#I448343` - Now, position change event completed state is fired properly.
137
+ - `#I446954` - Now, the segment does not get dragged when there is no thumb in it.
138
+
139
+ ## 21.1.37 (2023-03-29)
140
+
141
+ ### Diagram
142
+
143
+ #### Bug Fixes
144
+
145
+ - `#I41762` - Now, Different point property for bezier connector is working properly.
146
+ - `#I41808` - Now, Text description for HTML node is rendered properly.
147
+ - `#I41908` - Now, Perfomance of dragging group nodes is improved.
148
+ - `#I41974` - Now, While hovering ports and dragging the multiselected items working properly.
149
+ - `#I443748` - Now, changing the styles dynamically, its working properly.
150
+ - `#I445506` - Now, you can resize the bezier control thumb when we increase the handleSize also.
151
+ - `#I444124` - Now, set the same id for the node and annotation in two different diagrams, the first diagram node annotation is visible properly.
152
+ - `#I447256` - Node renders properly on changing the shape dynamically.
153
+
154
+ ## 21.1.35 (2023-03-23)
155
+
156
+ ### Diagram
157
+
158
+ #### Bug Fixes
159
+
160
+ - `#F180478` - Now, the performance of diagram while enabling virtualization is improved.
161
+ - `#F180478` - Now, Overview is updated properly while enabling virtualization.
162
+ - `#I422299` - Now, swimlane child nodes is selectable after save and load.
163
+ - `#I437322` - Now, drag the connector end thumb is working, while we increase handleSize value.
164
+ - `#I436649` - Now, connector segment does not get split into multiple segment for top to bottom approach.
165
+ - `#I440967` - Now, Free hand connector segment collection restored after save and load the diagram.
166
+ - `#I441075` - Now, position change event does not get triggered while click on the swimlane header.
167
+
168
+ ## 20.4.50 (2023-02-14)
169
+
170
+ ### Diagram
171
+
172
+ #### Bug Fixes
173
+
174
+ - `#I432667` - Now, overview updated properly while doing interactions after zoom out.
175
+ - `#I433980` - Now, the nodes selections are proper for nodes with large annotations.
176
+
177
+ ## 20.4.48 (2023-02-01)
178
+
179
+ ### Diagram
180
+
181
+ #### Bug Fixes
182
+
183
+ - `#I427930` - The issue "BringIntoView API brings the object in large bounds into the screen viewport" has been fixed.
184
+ - `#I428356` - Now, parent node position in radial tree layout is updated properly, while adding nodes dynamically.
185
+
186
+ ## 20.4.42 (2023-01-04)
187
+
188
+ ### Diagram
189
+
190
+ #### Bug Fixes
191
+
192
+ - `#I426113` - Now, bezier control points dragging is restricted when we hide control points.
193
+ - `#I425406` - Now, the bezier segment points are not static when we move connector source or target node.
194
+ - `#I422049` - Now, calling doLayout after injecting line routing module working properly.
195
+ - `#I421754` - The issue on tooltip relative mode mouse is now working properly.
196
+ - `#I423978` - Now, HTML nodes gets update properly in the overview while auto scroll the diagram.
197
+
198
+ ## 20.4.40 (2022-12-28)
199
+
200
+ ### Diagram
201
+
202
+ #### Bug Fixes
203
+
204
+ - `#I421800` - Now, bezier connector rendered properly while save and load the diagram.
205
+ - `#I417240` - Now, dropping bpmn text annotation node inside the swimlane is working properly.
206
+
207
+ ## 20.4.38 (2022-12-22)
208
+
209
+ ### Diagram
210
+
211
+ #### New Feature
212
+
213
+ - `#I409589` - Support to override the mouseWheel event has been added.
214
+
215
+ #### Bug Fixes
216
+
217
+ - `I421148` - Now, connector segment does not get split into multiple segment while hover on node.
218
+ - `#I420202` - The issue on annotation interaction has been resolved.
219
+
220
+ ## 20.3.60 (2022-12-06)
221
+
222
+ ### Diagram
223
+
224
+ #### Bug Fixes
225
+
226
+ - `#FB38642` - Now, the arg cancel property for sourcePoint and targetPoint change is working properly.
227
+ - `#I419333` - Now, dragging a object outside the diagram canvas from symbol palette is updated properly.
228
+ - `#I397852` - Now, defining connector without source or target id while injecting Line Routing is rendered properly.
229
+ - `#I42108` - The issue on hovering the node ports has been resolved.
230
+
231
+ ## 20.3.58 (2022-11-22)
232
+
233
+ ### Diagram
234
+
235
+ #### Bug Fixes
236
+
237
+ - `#I418455` - Now, the resize handle has been rendered properly while set node pivot as 0,0.
238
+ - `#I418026` - Now, the annotation for the swimlane child node is updated properly after dragging it outside the swimlane.
239
+
240
+ ## 20.3.57 (2022-11-15)
241
+
242
+ ### Diagram
243
+
244
+ #### Bug Fixes
245
+
246
+ - `#I412223` - Now, the connector position is updated properly after resizing overview panel.
247
+ - `#I405669` - Now, adding BPMN Text annotation node inside swimlane at runtime is working properly.
248
+ - `#I412144` - Now, the segment thumb do not gets rendered while render orthogonal connector as a straight line.
249
+ - `#I412144` - Provided the support for orthogonal segment overlap with the source and target node.
250
+
251
+ ## 20.3.50 (2022-10-18)
252
+
253
+ ### Diagram
254
+
255
+ #### Bug Fixes
256
+
257
+ - `#I409105` - Now, click event gets triggered properly when click at scrollbar position.
258
+ - `#I410274` - Now, adding lane to the existing vertical swimlane is working properly.
259
+
260
+ ## 20.3.49 (2022-10-11)
261
+
262
+ ### Diagram
263
+
264
+ #### Bug Fixes
265
+
266
+ - `#I405054` - Provided the custom context menu support for the swimlane phase.
267
+ - `#I405669` - Now, BPMN text annotation node gets dragged properly while drag the swimlane.
268
+ - `#I397116` - Now, the bezier annotation horizontal and vertical alignment is working properly.
269
+ - `#I410634` - The null exception will no longer thrown while changing the overview id.
270
+
271
+ ## 20.3.48 (2022-10-05)
272
+
273
+ ### Diagram
274
+
275
+ #### Bug Fixes
276
+
277
+ - `#I401143` - Now, HTML element gets rendered properly while drag and drop from one lane to other lane.
278
+ - `#I393859` - Now, the nodes overlapping in linear arrangement of complex-hierarchical tree is resolved.
279
+
280
+ ## 20.3.47 (2022-09-29)
281
+
282
+ ### Diagram
283
+
284
+ #### Bug Fixes
285
+
286
+ - `#I387297` - Now, the Expand & Collapse work properly for layout.
287
+ - `#I389174` - The undefined exception will no longer thrown while drag and drop the node from treeview to diagram.
288
+ - `#I384522` - Now, connector gets rendered properly in the complex hierarchical tree layout.
289
+ - `FB36050` - Now, oldValue & newValue argument of property change event updated properly while change order for nodes.
290
+ - `#I383401` - BPMN task type symbols are updated as per BPMN 2.0 standard.
291
+ - `#FB35907` - Localization support for symbol palette search box placeholder has been added.
292
+ - `#I388692` - Now connectors are properly connected to the node after save and load.
293
+ - `#I384554` - Now scroll settings offset are updated properly dynamically.
294
+ - `#I397678` - Now, the connector is dropped properly inside the swimlane.
295
+ - `#I395331` - The undefined exception will no longer thrown while draw a SVG node.
296
+ - `#I397116` - Now, Bezier connector annotation rendered at the proper position.
297
+ - `#I396868` - Now bezier connector rendered properly while drag and drop from palette.
298
+ - `#I397852` - Now, layers undefined exception will no longer thrown while save and load.
299
+ - `#I399417` - Now, fit to page is working properly when we call it multiple times.
300
+
301
+ ## 20.2.36 (2022-06-30)
302
+
303
+ ### Diagram
304
+
305
+ #### Bug fixes
306
+
307
+ - `#I382500` - Now, the BPMN shape is changed properly at runtime.
308
+ - `#I382496` - BPMN gateway sub type is working properly while changing it during runtime.
309
+ - `#I383411` - Now, fill color is applied properly when changing BPMN event at runtime.
310
+
311
+ #### New Features
312
+
313
+ - `#I362749` - Provided option to adjust the distance between the source node and the target node of the orthogonal connection has been added.
314
+ - `#I347713` - Support to modify connector segments thumb icon shape and style has been added.
315
+ - `#FB31535` - Support for splitting and joining connectors has been added.
316
+ - `#I362796` - Support to highlight selected diagram elements on multiple selections has been added
317
+ - `#I362829` - Support to limit the connector segments while draw at run time has been added.
318
+ - `#I362755` - Support to edit multiple bezier segments with multiple control points has been added.
319
+
320
+ #### Behaviour changes
321
+
322
+ - In the Bezier connector, by default, the multiple segments will be created automatically if a user doesn't define segment collections in the application.
323
+ - In the Bezier connector, based on segment count, multiple control points will be displayed to control the smoothness of the curve
324
+
325
+ ## 20.1.60 (2022-06-14)
326
+
327
+ ### Diagram
328
+
329
+ #### Bug Fixes
330
+
331
+ - `#I381671` - Bpmn task type is working properly while changing from type Send to Receive.
332
+ - `#F175332` - Undo is working properly after deleting the node attached with connector.
333
+ - `#I376982` - Annotation dragging in connector and node is working properly when we set horizontal Alignment and vertical Alignment.
334
+
335
+ ## 20.1.59 (2022-06-07)
336
+
337
+ ### Diagram
338
+
339
+ #### Bug Fixes
340
+
341
+ - `#I378190` - Now, distribute commands will work properly.
342
+
343
+ ## 20.1.57 (2022-05-24)
344
+
345
+ ### Diagram
346
+
347
+ #### Bug Fixes
348
+
349
+ - `F173877` - Now, Node template has been rendered properly in layout.
350
+
351
+ ## 20.1.55 (2022-05-12)
352
+
353
+ ### Diagram
354
+
355
+ #### Bug Fixes
356
+
357
+ - `#I373763` - Now, old value of SelectionChange event are updated properly.
358
+ - `#I373774` - The sourcePointChange and targetPointChange events are triggered while dragging the node.
359
+ - `#I375741` - Now, the performance and Memory leak is resolved in the saveDiagram method.
360
+ - `#I372151` - Now, bezier connector annotation get exported properly as an image.
361
+ - `#I376498` - Now, the diagram zooming behaviour is changed as an old behaviour.
362
+
363
+ ## 20.1.51 (2022-04-26)
364
+
365
+ ### Diagram
366
+
367
+ #### Bug Fixes
368
+
369
+ - `#I375103` - Now, Port visibility will work properly on mouse hover in Canvas mode.
370
+
371
+ ## 20.1.48 (2022-04-12)
372
+
373
+ ### Diagram
374
+
375
+ #### Bug Fixes
376
+
377
+ - `FB-33350` - Now, Property change event will trigger properly when z-index values are changed.
378
+ - `#I372613` - Now, Exporting the diagram as an image will work properly.
379
+
380
+ ## 20.1.47 (2022-04-04)
381
+
382
+ ### Diagram
383
+
384
+ #### Bug Fixes
385
+
386
+ - `#32965` - Now, old and new value of property change event values are updated properly while drag the connector target end.
387
+ - `F172843` - Bring to front is now working properly for the multiple selection.
388
+ - `SF-369300` - Now, Expand and collapse work properly for layouts.
389
+ - `SF-370061` - Now, exportDiagram exports image url properly when mode is set to Data.
390
+ - `SF-368435` - The exception will no longer thrown while dragging the selected object.
391
+ - `SF-362356` - Now, Diagram can be zoomed or scrolled smoothly.
392
+
393
+ ## 19.4.54 (2022-03-01)
394
+
395
+ ### Diagram
396
+
397
+ #### Bug Fixes
398
+
399
+ - `F170870` - The undefined exception will no longer thrown while drag and drop the node over another node.
400
+ - `SF-364881` - Selection is now work properly for group node on negative axis.
401
+ - `SF-366628` - Node annotation is now update properly while edit in the canvas mode.
402
+ - `SF-364084` - Now, Lane Header can be simply obtained from selection change event.
403
+ - `SF-366851` - Node Linear gradient is now exported properly while export the diagram.
404
+
405
+ ## 19.4.53 (2022-02-22)
406
+
407
+ ### Diagram
408
+
409
+ #### Bug Fixes
410
+
411
+ - `SF-360354` - Position change event is now fired properly while drag and drop the node using touch.
412
+ - `SF-365716` - Drawing tool now draw connector properly while right click on the diagram.
413
+ - `SF-364857` - Now, Command/Meta key will work properly on Mac.
414
+
415
+ ## 19.4.52 (2022-02-15)
416
+
417
+ ### Diagram
418
+
419
+ #### Bug Fixes
420
+
421
+ - `SF-361654` - Connector is now rendered properly in the symbol palette while try to render as straight line.
422
+ - `SF-360571` - Provide separate tooltip support for the group children node.
423
+ - `SF-359118` - Now, the Scroll Bar works properly when Viewport is in Negative coordinates.
424
+ - `SF-362880` - Save and load now works properly for Swimlane after undo and redo.
425
+
426
+ ## 19.4.50 (2022-02-08)
427
+
428
+ ### Diagram
429
+
430
+ #### Bug Fixes
431
+
432
+ - `SF-360650` - The Undefined exception will no longer be thrown while perform ctrl + shift + mouse click on diagram area.
433
+ - `SF-359437` - The Undefined exception will no longer be thrown while ungroup the group node in canvas mode.
434
+ - `SF-359860` - Node gradient color is now exported properly while export the diagram in JPG.
435
+ - `SF-362805` - Bezier connector text element bounds is now calculated properly while drag the connector.
436
+ - `SF-362170` - Annotation editing for the Bezier Connector is now working properly.
437
+ - `SF-362805` - Style Property margin is now working properly for the Bezier Connector Annotation.
438
+ - `F170870` - Resolved the exception when Flipping SVG Nodes Label.
439
+
440
+ ## 19.4.43 (2022-01-18)
441
+
442
+ ### Diagram
443
+
444
+ #### Bug Fixes
445
+
446
+ - `F171509` - The issue "getDiagramContent() is not working properly" has been fixed.
447
+
448
+ ## 19.4.42 (2022-01-11)
449
+
450
+ ### Diagram
451
+
452
+ #### Bug Fixes
453
+
454
+ - `SF-359118` - The issue "Scroll Bar is not working properly when Viewport is in Negative coordinates" has been fixed.
455
+ - `F171398` - The issue "Exception occurs when save and load the diagram" has been fixed.
456
+ - `SF-360354` - The issue "Symbol do not get dropped properly in the chrome android" has been fixed.
457
+
458
+ ## 19.4.41 (2022-01-04)
459
+
460
+ ### Diagram
461
+
462
+ #### Bug Fixes
463
+
464
+ - `SF-358407` - The issue "NodeTemplate is not rendered properly in React" has been fixed.
465
+ - `SF-358519` - The issue "SendToBack is not working properly when re-adding shapes on diagram" has been fixed.
466
+ - `F170870` - The issue "Ports are not flipped while flipping Node to Horizontal or Vertically" has been fixed.
467
+ - `F170870` - The issue "Provide support to prevent label flipping while flipping the node horizontally or vertically" has been fixed.
468
+
469
+ ## 19.4.40 (2021-12-28)
470
+
471
+ ### Diagram
472
+
473
+ #### Bug Fixes
474
+
475
+ - `F171088` - The issue "Multiple selection tool not working properly" has been fixed.
476
+ - `SF-353924` - The issue "Drag and drop element from tree-view to Diagram does not behave correctly" has been fixed.
477
+ - `SF-333944` - The issue "Exception raises when perform sendBackward with native node" has been fixed.
478
+ - `SF-358147` - The issue "Labels are not updated properly after loading the saved JSON" has been fixed.
479
+ - `#30924` - The issue "Horizontal scrolling not working properly with trackpad" has been fixed.
480
+ - `#31218` - The issue "Pinch zoom not working properly with trackpad in i-Mac" has been fixed.
481
+ - `SF-357916` - The issue "Bezier Connector target decorator is not rendered properly at initial rendering" has been fixed.
482
+
483
+ ## 19.4.38 (2021-12-17)
484
+
485
+ ### Diagram
486
+
487
+ #### Bug Fixes
488
+
489
+ - `SF-356262` - The issue "Dragging and Drop node not working properly by enabling page settings" has been fixed.
490
+ - `F170399` - The issue "Unable to cast exception occurs when clicking on the expand icon" has been fixed.
491
+ - `#I337722` - The issue "Connector Position not Updated Properly when rotating it with segments" has been fixed.
492
+ - `#I341943` - The issue "BringIntoView API does not bring the large bounds into the screen viewport" has been fixed.
493
+ - `#I342681` - The issue "BPMN Task shape becomes ellipse shape when printing the diagram" has been fixed.
494
+ - `#I342979` - The issue "While loading the JSON data with line routing causes exception in Angular" has been fixed.
495
+ - `#I345844` - The issue "An exception occurs when perform search in the symbol palette" has been fixed.
496
+ - `#F169922` - The issue "Need to provide support to set assistants based on datasource field in organizational chart" has been fixed.
497
+ - `#I345570` - The issue "Nodes doesn't gets arranged in zindex order after grouping it" has been fixed.
498
+ - `#I346110` - The issue "Text did not display on Connector line after adjusting the Bezier Connector" has been fixed.
499
+ - `#I346676` - The issue "Drag and drop item from Tree-View to Diagram doesn't behave correctly" has been fixed.
500
+ - `#I347727` - The issue "RemovePalette API not working properly" has been fixed.
501
+ - `#I348028` - The issue "SelectionChange newValue is null when deselecting one of multiple selected shapes" has been fixed.
502
+
503
+ ## 19.3.56 (2021-12-02)
504
+
505
+ ### Diagram
506
+
507
+ #### Bug Fixes
508
+
509
+ - `#F30109` - The issue "Diagram virtualization does not work with BPMN shapes" has been fixed.
510
+ - `#348672` - The issue "Swimlane nodes helper position not updated properly" has been fixed.
511
+ - `#F170298` - The issue "Template is not updated properly while render multiple diagram in same page" has been fixed.
512
+ - `#347603` - The issue "HTML Nodes are not rendered in Overview" has been fixed.
513
+
514
+ ## 19.3.55 (2021-11-23)
515
+
516
+ ### Diagram
517
+
518
+ #### Bug Fixes
519
+
520
+ - `#I346676` - The issue "Drag and drop item from Tree-View to Diagram doesn't behave correctly" has been fixed.
521
+ - `#I347727` - The issue "RemovePalette API not working properly" has been fixed.
522
+ - `#I348028` - The issue "SelectionChange newValue is null when deselecting one of multiple selected shapes" has been fixed.
523
+
524
+ ## 19.3.53 (2021-11-12)
525
+
526
+ ### Diagram
527
+
528
+ #### Bug Fixes
529
+
530
+ - `#I346110` - The issue "Text did not display on Connector line after adjusting the Bezier Connector" has been fixed.
531
+
532
+ ## 19.3.48 (2021-11-02)
533
+
534
+ ### Diagram
535
+
536
+ #### Bug Fixes
537
+
538
+ - `#I345844` - The issue "An exception occurs when perform search in the symbol palette" has been fixed.
539
+ - `#F169922` - The issue "Need to provide support to set assistants based on datasource field in organizational chart" has been fixed.
540
+ - `#I345570` - The issue "Nodes doesn't gets arranged in zindex order after grouping it" has been fixed.
541
+
542
+ ## 19.3.47 (2021-10-26)
543
+
544
+ ### Diagram
545
+
546
+ #### Bug Fixes
547
+
548
+ - `#I342681` - The issue "BPMN Task shape becomes square shape when printing the diagram" has been fixed.
549
+
550
+ ## 19.3.46 (2021-10-19)
551
+
552
+ ### Diagram
553
+
554
+ #### Bug Fixes
555
+
556
+ - `#I342979` - The issue "While loading the JSON data with line routing causes exception in Angular" has been fixed.
557
+
558
+ ## 19.3.45 (2021-10-12)
559
+
560
+ ### Diagram
561
+
562
+ #### Bug Fixes
563
+
564
+ - `#I342681` - The issue "BPMN Task shape becomes ellipse shape when printing the diagram" has been fixed.
565
+
566
+ ## 19.3.44 (2021-10-05)
567
+
568
+ ### Diagram
569
+
570
+ #### Bug Fixes
571
+
572
+ - `#I337722` - The issue "Connector Position not Updated Properly when rotating it with segments" has been fixed.
573
+ - `#I341943` - The issue "BringIntoView API does not bring the large bounds into the screen viewport" has been fixed.
574
+
575
+ ## 19.3.43 (2021-09-30)
576
+
577
+ ### Diagram
578
+
579
+ #### Bug Fixes
580
+
581
+ - `#F166882` - The issue "Accessibility validation error in Measure element Div" has been fixed.
582
+ - `#I341447` - The issue "The historyChange event is not triggered while rotate and move the node" has been fixed.
583
+ - `#I338448` - The issue "An exception occurs when save and load the diagram with PreventDefaults as true" has been fixed.
584
+ - `#I338105` - The issue "The drawing tool draws multiple node while perform right click" has been fixed.
585
+ - `#I339621` - The issue "An exception occurs render a image node with alignment as none and scale as Stretch" has been fixed.
586
+ - `#I339619` - The issue "An exception occurs when save and load the swimlane with BPMN children" has been fixed.
587
+ - `#I339487` - The issue "The connector drawing object does not snap to near by port" has been fixed.
588
+ - `#I342173` - The issue "An exception occurs when clear the diagram using Clear API" has been fixed.
589
+ - `#I341524` - The issue "The selection change event returns empty NewValue argument while selecting one of the multi-selected nodes" has been fixed.
590
+
591
+ ## 19.2.56 (2021-08-17)
592
+
593
+ ### Diagram
594
+
595
+ #### Bug Fixes
596
+
597
+ - `#I338244` - The issue "When drag the group node by using the arrow key the group get struck" has been fixed.
598
+
599
+ ## 19.2.55 (2021-08-11)
600
+
601
+ ### Diagram
602
+
603
+ #### Bug Fixes
604
+
605
+ - `#I336316` - The issue "The loaded connectors path is differ from saved connectors" has been fixed.
606
+ - `#I335836` - The Default tooltip rendered in the wrong position for the native node issue has been fixed.
607
+ - `#I337885` - The issue "Connectors have disappeared in Swim lane at initial rendering" has been fixed.
608
+
609
+ ## 19.2.51 (2021-08-03)
610
+
611
+ ### Diagram
612
+
613
+ #### Bug Fixes
614
+
615
+ - `#F167093` - The issue "The HTML nodes in overview takes place at the wrong position while zoom and move the HTML node in diagram "has been fixed.
616
+ - `#F166882` - The issue "Accessibility validation error in Diagram" has been fixed.
617
+ - `#F167431` - The issue "While decode the exported JPG image it has the PNG Image signature"has been fixed.
618
+
619
+ ## 19.2.49 (2021-07-27)
620
+
621
+ ### Diagram
622
+
623
+ #### Bug Fixes
624
+
625
+ - `#I335783` - The issue "The tooltip rendered in the wrong position when the node is placed at bottom position" has been fixed.
626
+ - `#I334315` - The issue "Update template method is triggered twice"has been fixed.
627
+
628
+ ## 19.2.48 (2021-07-20)
629
+
630
+ ### Diagram
631
+
632
+ #### Bug Fixes
633
+
634
+ - `#I330099` - The issue "The ports outEdges is not updated when cancel the port draw connector addition" has been fixed.
635
+ - `I324505` - The issue "An exception will raise while sending the node front to the group " has been fixed.
636
+
637
+ ## 19.2.46 (2021-07-06)
638
+
639
+ ### Diagram
640
+
641
+ #### Bug Fixes
642
+
643
+ - `#F166100, #F166081` - The issue "An exception occurs when resizing the diagram page with an overview" has been fixed.
644
+ - `#I333468` - The issue "The connectors cannot be grouped using group API" has been fixed.
645
+ - `#I332942` - The issue "The nodes that take place above the lane is not selectable" has been fixed.
646
+
647
+ ## 19.2.44 (2021-06-30)
648
+
649
+ ### Diagram
650
+
651
+ #### Bug Fixes
652
+
653
+ - `#I329576` - The issue While changing the connector flip property the connector's segment path is not updated correctly issue has been fixed.
654
+ - `#I327457` - The issue with node gradient is not applied while continuously performing the undo and redo functionality issue has been fixed.
655
+ - `#330528` - The issue "Connector horizontal Alignment is not rendered properly at initial rendering" has been fixed.
656
+ - `#328156` - The issue "An exception raised when send the swimlane back to the normal node" has been fixed.
657
+ - `#324236` - The issue "When exporting the node with gradient color the exported image does not contain proper node gradient " has been fixed.
658
+ - `#324541` - This issue "An exception occurs when printing the diagram with a Content security policy tag." has been fixed.
659
+ - `#I325640` - The issue "When dynamically adding node and perform the `bringToFront` method. The order command functionality not working properly" has been resolved.
660
+ - `#328132` - The issue "The combination of port constraints is not working" has been fixed.
661
+ - `#I327071` - the issue "When node is placed at the bottom position of the diagram component the tooltip position is rendered wrongly" issue has been fixed.
662
+ - `#I324251` - The issue "Nodes with SVG shapes have inaccurate positions in the Overview Control" has been fixed.
663
+ - `#F166050` - The issue "Context Menu not shown in iPad/android " has been fixed.
664
+ - `#I330320` - The issue "The HTML node content gets disappeared when adding the HTML node dynamically in the diagram with an overview" has been fixed.
665
+
666
+ ## 19.1.69 (2021-06-15)
667
+
668
+ ### Diagram
669
+
670
+ #### Bug Fixes
671
+
672
+ - `#I329576` - The issue While changing the connector flip property the connector's segment path is not updated correctly issue has been fixed.
673
+
674
+ ## 19.1.67 (2021-06-08)
675
+
676
+ ### Diagram
677
+
678
+ #### Bug Fixes
679
+
680
+ - `#I327457` - The issue with node gradient is not applied while continuously performing the undo and redo functionality issue has been fixed.
681
+ - `#330528` - The issue "Connector horizontal Alignment is not rendered properly at initial rendering" has been fixed.
682
+
683
+ ## 19.1.66 (2021-06-01)
684
+
685
+ ### Diagram
686
+
687
+ #### Bug Fixes
688
+
689
+ - `#328156` - The issue "An exception raised when send the swimlane back to the normal node" has been fixed.
690
+ - `#324236` - The issue "When exporting the node with gradient color the exported image does not contain proper node gradient " has been fixed.
691
+ - `#324541` - This issue "An exception occurs when printing the diagram with a Content security policy tag." has been fixed.
692
+ - `#I325640` - The issue "When dynamically adding node and perform the `bringToFront` method. The order command functionality not working properly" has been resolved.
693
+ - `#328132` - The issue "The combination of port constraints is not working" has been fixed.
694
+
695
+ ## 19.1.65 (2021-05-25)
696
+
697
+ ### Diagram
698
+
699
+ #### Bug Fixes
700
+
701
+ - `#I327071` - the issue "When node is placed at the bottom position of the diagram component the tooltip position is rendered wrongly" issue has been fixed.
702
+
703
+ ## 19.1.64 (2021-05-19)
704
+
705
+ ### Diagram
706
+
707
+ #### Bug Fixes
708
+
709
+ - `#I324251` - The issue "Nodes with SVG shapes have inaccurate positions in the Overview Control" has been fixed.
710
+
711
+ ## 19.1.63 (2021-05-13)
712
+
713
+ ### Diagram
714
+
715
+ #### Bug Fixes
716
+
717
+ - `#I322863` - This issue "Node does not drag properly when move inside swimlane" has been fixed.
718
+ - `#I326309` - This issue "While drag and move the multiple children of swimlane some children jump from one lane to another lane" has been fixed.
719
+ - `#I323817` - This issue "An exception will raise when send the native node back to the group of native nodes" has been fixed.
720
+ - `#I323457` - This issue "straight line segment not moved in group while dragging grouping node" has been fixed.
721
+ - `#I325103` - This issue "Connector alignment is not rendered properly at initial rendering" has been fixed.
722
+ - `F164350` - The issue "Annotation hyper link is not working" has been fixed.
723
+ - `#319911` - The issue "Customized style disappears when serializing the BPMN shapes" has been fixed.
724
+ - `#321939` - The issue "Swimlane send to back node working" has been fixed.
725
+ - `#322854` - The issue "Swimlane children disappear while performing the order commands" has been fixed.
726
+ - `#323203` - The issue "Exception occurs when try to redo the node's gradient color" has been fixed.
727
+ - `#324238` - The issue "An empty space will take place along with the diagram while exporting the diagram into the image" has been fixed.
728
+ - `#321284` - The issue "The loaded layout diagram is differ from the saved diagram" has been fixed.
729
+ - `F164274` - The issue "Resize functionality of the lane is not working if the can move is false" has been fixed.
730
+ - `#316688` - The issue "Symbol palette component gets rendered on every state change" has been fixed.
731
+ - `#317943` - This issue "While render the layout's nodes with the collapsed state, the nodes are not properly aligned " has been fixed.
732
+
733
+ ## 19.1.59 (2021-05-04)
734
+
735
+ ### Diagram
736
+
737
+ #### Bug Fixes
738
+
739
+ - `#I323457` - This issue "straight line segment not moved in group while dragging grouping node" has been fixed.
740
+ - `#I325103` - This issue "Connector alignment is not rendered properly at initial rendering" has been fixed.
741
+ - `F164350` - The issue "Annotation hyper link is not working" has been fixed.
742
+ - `#319911` - The issue "Customized style disappears when serializing the BPMN shapes" has been fixed.
743
+ - `#321939` - The issue "Swimlane send to back node working" has been fixed.
744
+ - `#322854` - The issue "Swimlane children disappear while performing the order commands" has been fixed.
745
+ - `#323203` - The issue "Exception occurs when try to redo the node's gradient color" has been fixed.
746
+ - `#324238` - The issue "An empty space will take place along with the diagram while exporting the diagram into the image" has been fixed.
747
+ - `#321284` - The issue "The loaded layout diagram is differ from the saved diagram" has been fixed.
748
+ - `F164274` - The issue "Resize functionality of the lane is not working if the can move is false" has been fixed.
749
+
750
+ ## 19.1.57 (2021-04-20)
751
+
752
+ ### Diagram
753
+
754
+ #### Bug Fixes
755
+
756
+ - `F164350` - The issue "Annotation hyper link is not working" has been fixed.
757
+ - `#319911` - The issue "Customized style disappears when serializing the BPMN shapes" has been fixed.
758
+ - `#321939` - The issue "Swimlane send to back node working" has been fixed.
759
+ - `#322854` - The issue "Swimlane children disappear while performing the order commands" has been fixed.
760
+ - `#323203` - The issue "Exception occurs when try to redo the node's gradient color" has been fixed.
761
+
762
+ ## 19.1.56 (2021-04-13)
763
+
764
+ ### Diagram
765
+
766
+ #### Bug Fixes
767
+
768
+ - `#316688` - The issue "Symbol palette component gets rendered on every state change" has been fixed.
769
+ - `317943` - This issue "While render the layout's nodes with the collapsed state, the nodes are not properly aligned " has been fixed.
770
+
771
+ ## 19.1.54 (2021-03-30)
772
+
773
+ ### Diagram
774
+
775
+ #### New Features
776
+
777
+ - `#285393` - Support to avoid connector overlapping with complex hierarchical layout has been added.
778
+ - `#314220` - Support for Auto scrolling feature while using drawing tool has been added.
779
+
780
+ #### Bug Fixes
781
+
782
+ - `#316429` - This issue "Nodes are not updating properly for the swim lane in the DOM during save and load" has been fixed.
783
+ - `#304194` - This issue "Straight line segments are not moved while dragging " has been fixed.
784
+ - `#309543` - This issue "overview's preview is not updated when update the diagram's size " has been fixed.
785
+ - `#311751` - This issue "when drag and drop from the palette the symbol preview not disappear " has been fixed.
786
+ - `#312744` - This issue "Exception occurs when mouse over the node with many connector " has been fixed.
787
+ - `#301792` - This issue "Alignment of connector is misplaced in balanced layout " has been fixed.
788
+ - `#311219` - This issue "z order Commands not working for child node in group " has been fixed.
789
+ - `#312725` - This issue "Expand collapse icon cannot export properly " has been fixed.
790
+ - `#314224` - This issue "Shapes getting disappear after adding Swimlane shape " has been fixed.
791
+ - `F162436` - This issue "While set the node's isExpanded property true at initial rendering unwanted scroll is take placed" has been fixed.
792
+ - `#314664` - This issue "Exception occurs when drag and drop the node and perform undo " has been fixed.
793
+ - `F161997` - This issue "Context menu disappear while mouseover the item which has subitems " has been fixed.
794
+ - `#316472` - This issue "Strange snapping behaviors with swimlane " has been fixed.
795
+ - `#317149` - This issue "Exception occurs when drag and drop a lane on connector in swimlane " has been fixed.
796
+ - `F23048` - This issue "When change style of group at runtime the same is applied to its child too " has been fixed.
797
+ - `317728` - This issue "Line routing is not working if the connection end point of the connector has two or more nodes " has been fixed.
798
+
799
+ ## 18.4.46 (2021-03-02)
800
+
801
+ ### Diagram
802
+
803
+ #### Bug Fixes
804
+
805
+ - `F162436` - This issue "While set the node's isExpanded property true at initial rendering unwanted scroll is take placed" has been fixed.
806
+ - `#314664` - This issue "Exception occurs when drag and drop the node and perform undo " has been fixed.
807
+ - `F161997` - This issue "Context menu disappear while mouseover the item which has subitems " has been fixed.
808
+
809
+ #### New Features
810
+
811
+ - `#314220` - Support for Auto scrolling feature while using drawing tool has been added.
812
+
813
+ ## 18.4.43 (2021-02-16)
814
+
815
+ ### Diagram
816
+
817
+ #### Bug Fixes
818
+
819
+ - `#314224` - This issue "Shapes getting disappear after adding Swimlane shape " has been fixed.
820
+
821
+ ## 18.4.42 (2021-02-09)
822
+
823
+ ### Diagram
824
+
825
+ #### Bug Fixes
826
+
827
+ - `#312744` - This issue "Exception occurs when mouse over the node with many connector " has been fixed.
828
+ - `#301792` - This issue "Alignment of connector is misplaced in balanced layout " has been fixed.
829
+ - `#311219` - This issue "z order Commands not working for child node in group " has been fixed.
830
+ - `#312725` - This issue "Expand collapse icon cannot export properly " has been fixed.
831
+ - `#314224` - This issue "Shapes getting disappear after adding Swimlane shape " has been fixed.
832
+
833
+ ## 18.4.41 (2021-02-02)
834
+
835
+ ### Diagram
836
+
837
+ #### Bug Fixes
838
+
839
+ #### New Features
840
+
841
+ - `#285393` - Support to avoid connector overlapping with complex hierarchical layout has been added.
842
+
843
+ ## 18.4.39 (2021-01-28)
844
+
845
+ ### Diagram
846
+
847
+ #### Bug Fixes
848
+
849
+ - `#308695` - This issue "Port's InEdges and outEdges are not updated properly while copy and paste " has been fixed.
850
+ - `#306529` - This issue "Node does not drop properly on swimlane " has been fixed.
851
+ - `#309041` - This issue "Nodes are not getting cleared when add new page in the diagram" has been fixed.
852
+ - `#305708` - This issue "Console error occur while save and load the diagram with swimlane nodes" has been fixed.
853
+ - `#308109` - This issue "Can't change flowshape to other basic shape" has been fixed.
854
+ - `#301792` - This issue "Child nodes are not rendered properly in Organizational chart" has been fixed.
855
+ - `#306310` - This issue "Symbol description gets rendered from middle of symbol" has been fixed.
856
+ - `#304447` - This issue "Restrict click event for nodes when zoompan tool is enabled" has been fixed.
857
+ - `#295443` - This issue "Bottom level nodes are not visible in overview" has been fixed.
858
+ - `#305992` - This issue "When drag and drop the node swimlane lane header position gets changed" has been fixed.
859
+ - `#304558` - This issue "Exception occurs when use getDiagramContent method" has been fixed.
860
+
861
+ ## 18.4.35 (2021-01-19)
862
+
863
+ ### Diagram
864
+
865
+ #### Bug Fixes
866
+
867
+ - `#305708` - This issue "Console error occur while save and load the diagram with swimlane nodes" has been fixed.
868
+
869
+ ## 18.4.34 (2021-01-12)
870
+
871
+ ### Diagram
872
+
873
+ #### Bug Fixes
874
+
875
+ - `#308695` - This issue "Port's InEdges and outEdges are not updated properly while copy and paste " has been fixed.
876
+ - `#306529` - This issue "Node does not drop properly on swimlane " has been fixed.
877
+ - `#309041` - This issue "Nodes are not getting cleared when add new page in the diagram" has been fixed.
878
+
879
+ ## 18.4.32 (2020-12-29)
880
+
881
+ ### Diagram
882
+
883
+ #### Bug Fixes
884
+
885
+ - `#308109` - This issue "Can't change flowshape to other basic shape" has been fixed.
886
+ - `#301792` - This issue "Child nodes are not rendered properly in Organizational chart" has been fixed.
887
+
888
+ ## 18.4.31 (2020-12-22)
889
+
890
+ ### Diagram
891
+
892
+ #### Bug Fixes
893
+
894
+ - `#306310` - This issue "Symbol description gets rendered from middle of symbol" has been fixed.
895
+ - `#304447` - This issue "Restrict click event for nodes when zoompan tool is enabled" has been fixed.
896
+ - `#295443` - This issue "Bottom level nodes are not visible in overview" has been fixed.
897
+ - `#305992` - This issue "When drag and drop the node swimlane lane header position gets changed" has been fixed.
898
+ - `#304558` - This issue "Exception occurs when use getDiagramContent method" has been fixed.
899
+
900
+ ## 18.4.30 (2020-12-17)
901
+
902
+ ### Diagram
903
+
904
+ #### New Features
905
+
906
+ - `#285393` - Line distribution functionality has been added.
907
+ - Support added to arrange the child nodes in linear way.
908
+
909
+ #### Bug Fixes
910
+
911
+ - `#304641` - This issue "Node does not gets selected on slight movement of mouse when drag constraints disabled for node " has been fixed.
912
+ - `#301443` - This issue "update annotation for BPMN node, the node position gets changed " has been fixed.
913
+ - `#301441` - This issue "BPMN Nodes dropped in wrong position " has been fixed.
914
+ - `#304047` - This issue "Exception occurs when drag and drop the SVG node into diagram " has been fixed.
915
+ - `#301792` - This issue "Child Node Rendering issue in organization chart " has been fixed.
916
+ - `#300529` - This issue "Exception occurs while change the datasource for layout at runtime" has been fixed.
917
+ - `#302274` - This issue "Mindmap layout does not render properly" has been fixed.
918
+ - `#300499` - This issue "PositionChange event does not gets triggered for completed state" has been fixed.
919
+ - `#298898` - This issue "When save and load Bpmn subprocess node not loads properly" has been fixed.
920
+ - `F158465` - This issue "Context Menu items does not gets change at run time" has been fixed.
921
+ - `#285393` - This issue "Connector Target Point connection is not connected properly in line distribution" has been fixed.
922
+ - `#297343` - This issue "While undo and redo with line routing exception occurs" has been fixed.
923
+ - `F159245` - This issue "Node z index behaves incorrectly" has been fixed.
924
+ - `#300316` - This issue "Exception occurs when try to save diagram with prevent defaults set as true" has been fixed.
925
+ - `#292439` - The issue "Exception occurs when try to draw the connector using user handle" has been fixed.
926
+
927
+ ## 18.3.53 (2020-12-08)
928
+
929
+ ### Diagram
930
+
931
+ #### Bug Fixes
932
+
933
+ - `#301443` - This issue "update annotation for BPMN node, the node position gets changed " has been fixed.
934
+
935
+ ## 18.3.52 (2020-12-01)
936
+
937
+ ### Diagram
938
+
939
+ #### Bug Fixes
940
+
941
+ - `#301441` - This issue "BPMN Nodes dropped in wrong position " has been fixed.
942
+ - `#304047` - This issue "Exception occurs when drag and drop the SVG node into diagram " has been fixed.
943
+ - `#301792` - This issue "Child Node Rendering issue in organization chart " has been fixed.
944
+ - `#300529` - This issue "Exception occurs while change the datasource for layout at runtime" has been fixed.
945
+ - `#302274` - This issue "Mindmap layout does not render properly" has been fixed.
946
+ - `#300499` - This issue "PositionChange event does not gets triggered for completed state" has been fixed.
947
+
948
+ ## 18.3.51 (2020-11-24)
949
+
950
+ ### Diagram
951
+
952
+ #### Bug Fixes
953
+
954
+ - `#298898` - This issue "When save and load Bpmn subprocess node not loads properly" has been fixed.
955
+ - `F158465` - This issue "Context Menu items does not gets change at run time" has been fixed.
956
+
957
+ ## 18.3.50 (2020-11-17)
958
+
959
+ ### Diagram
960
+
961
+ #### Bug Fixes
962
+
963
+ - `#285393` - This issue "Connector Target Point connection is not connected properly in line distribution" has been fixed.
964
+
965
+ ## 18.3.48 (2020-11-11)
966
+
967
+ ### Diagram
968
+
969
+ #### Bug Fixes
970
+
971
+ - `#297343` - This issue "While undo and redo with line routing exception occurs" has been fixed.
972
+ - `F159245` - This issue "Node z index behaves incorrectly" has been fixed.
973
+ - `#300316` - This issue "Exception occurs when try to save diagram with prevent defaults set as true" has been fixed.
974
+ - `#292439` - The issue "Exception occurs when try to draw the connector using user handle" has been fixed.
975
+
976
+ ## 18.3.47 (2020-11-05)
977
+
978
+ ### Diagram
979
+
980
+ #### New Features
981
+
982
+ - `#285393` - Line distribution functionality has been added.
983
+ - Support added to arrange the child nodes in linear way.
984
+
985
+ #### Bug Fixes
986
+
987
+ - `#297888` - This issue "Target decorator is not connected properly to the node" has been fixed.
988
+ - `#298962` - This issue "HTML template node take more time to render in Blazor" has been fixed.
989
+ - `#F159087` - This issue "When Drag and drop the node from palette exception throws" has been fixed.
990
+ - `#292439` - The issue "Exception occurs when try to draw connector on node text edit" has been fixed.
991
+ - `#294302` - The issue with "Node overlapping issue in hierarchical tree layout" has been fixed.
992
+ - `#292214` - The issue "Mouse cursor does not place on a node" has been fixed
993
+ - `#292439` - The issue "Exception occurs when try to draw connector on node text edit" has been fixed.
994
+ - `#294515` - This issue "When zoom out the diagram ruler value not update properly" has been fixed.
995
+ - `#294604` - This issue "Vertical Scroll bar appears while scroll the diagram" has been fixed.
996
+ - `#296511`, `#296304` - The issue "Nodes are not added properly to the newly added lane" has been fixed.
997
+
998
+ ## 18.3.44 (2020-10-27)
999
+
1000
+ ### Diagram
1001
+
1002
+ #### Bug Fixes
1003
+
1004
+ - `#297888` - This issue "Target decorator is not connected properly to the node" has been fixed.
1005
+ - `#298962` - This issue "HTML template node take more time to render in Blazor" has been fixed.
1006
+ - `#F159087` - This issue "When Drag and drop the node from palette exception throws" has been fixed.
1007
+
1008
+ ## 18.3.42 (2020-10-20)
1009
+
1010
+ ### Diagram
1011
+
1012
+ #### Bug Fixes
1013
+
1014
+ - `#294515` - This issue "When zoom out the diagram ruler value not update properly" has been fixed.
1015
+ - `#294604` - This issue "Vertical Scroll bar appears while scroll the diagram" has been fixed.
1016
+ - `#296511`, `#296304` - The issue "Nodes are not added properly to the newly added lane" has been fixed.
1017
+
1018
+ ## 18.3.40 (2020-10-13)
1019
+
1020
+ ### Diagram
1021
+
1022
+ #### Bug Fixes
1023
+
1024
+ - `292439` - The issue "Exception occurs when try to draw connector on node text edit" has been fixed.
1025
+ - `294302` - The issue with "Node overlapping issue in hierarchical tree layout" has been fixed.
1026
+ - `292214` - The issue "Mouse cursor does not place on a node" has been fixed
1027
+ - `292439` - The issue "Exception occurs when try to draw connector on node text edit" has been fixed.
1028
+
1029
+ ## 18.3.35 (2020-10-01)
1030
+
1031
+ ### Diagram
1032
+
1033
+ #### New Features
1034
+
1035
+ - `276871`, `F154206` - Customization support for individual symbols has been added.
1036
+ - `281811` - Now the ports are rendered over the HTML layer.
1037
+ - `246813` - Now supports the click event to notify the type of button clicked.
1038
+ - `283317` - Fixed user handle has been added to diagram nodes and connectors.
1039
+ - `F150538` - Added an Expand and Collapse palette notification event to the symbol palette.
1040
+ - `277397` - Added support to notify the pan state during the scroll change event.
1041
+
1042
+ #### Bug Fixes
1043
+
1044
+ - `287578` - The issue "Connector segments not update properly" has been fixed.
1045
+ - `292951` - The issue "Text size is different if Text Node is created over another diagram" has been fixed.
1046
+ - `293420` - The issue "Annotation undo redo not working properly if the line routing is enabled" has been fixed.
1047
+ - `289382` - The issue "Exported data returns same png format for all other format" has been fixed.
1048
+ - `291513` - The issue " Exception occurs while change allowDrag from false to true for symbol palette" has been fixed.
1049
+ - `292558` - The issue "Node Rotate constraints does not work properly" has been fixed.
1050
+ - `289532` - The issue "Group offsetX and offsetY does not update after add child to it" has been fixed.
1051
+ - `291274` - The issue "Mouse Enter, Mouse Over event does not get triggered for selected item" has been fixed.
1052
+ - `F156456` - The issue "SVG image not exported properly" has been fixed
1053
+ - `#288628` - The issue "HTML node does not gets added at run time" has been fixed.
1054
+ - `#289513` - The issue with "Group rotation does not work as expected" has been fixed.
1055
+ - `287578` - The issue "Connector segments not update properly" has been fixed.
1056
+ - `289532` - The issue "Group width and height does not update" has been fixed.
1057
+ - `285600` - The issue "Complex hierarchical layout does not arrange properly" has been fixed.
1058
+ - `F157055` - The issue "Port inedge and outedge not updated properly" has been fixed.
1059
+ - `291364` - The issue "Connector's tooltip position updated wrongly" has been fixed.
1060
+ - `287349` - The issue "Infinite loop occurs while setting delete constraints for node in swim-lane and clear diagram" has been fixed.
1061
+ - `290066` - The issue "SendToBack and BringToFront not work for connector with group node" has been fixed.
1062
+
1063
+ ## 18.2.59 (2020-09-21)
1064
+
1065
+ ### Diagram
1066
+
1067
+ #### Bug Fixes
1068
+
1069
+ - `289382` - The issue "Exported data returns same png format for all other format" has been fixed.
1070
+ - `291513` - The issue " Exception occurs while change allowDrag from false to true for symbol palette" has been fixed.
1071
+ - `292558` - The issue "Node Rotate constraints does not work properly" has been fixed.
1072
+ - `289532` - The issue "Group offsetX and offsetY does not update after add child to it" has been fixed.
1073
+ - `291274` - The issue "Mouse Enter, Mouse Over event does not get triggered for selected item" has been fixed.
1074
+
1075
+ ## 18.2.58 (2020-09-15)
1076
+
1077
+ ### Diagram
1078
+
1079
+ #### Bug Fixes
1080
+
1081
+ - `291364` - The issue "Connector's tooltip position updated wrongly" has been fixed.
1082
+ - `287349` - The issue "Infinite loop occurs while setting delete constraints for node in swim-lane and clear diagram" has been fixed.
1083
+ - `290066` - The issue "SendToBack and BringToFront not work for connector with group node" has been fixed.
1084
+
1085
+ ## 18.2.56 (2020-09-01)
1086
+
1087
+ ### Diagram
1088
+
1089
+ #### Bug Fixes
1090
+
1091
+ - `287578` - The issue "Connector segments not update properly" has been fixed.
1092
+ - `289532` - The issue "Group width and height does not update" has been fixed.
1093
+ - `285600` - The issue "Complex hierarchical layout does not arrange properly" has been fixed.
1094
+ - `F157055` - The issue "Port inedge and outedge not updated properly" has been fixed.
1095
+
1096
+ ## 18.2.55 (2020-08-25)
1097
+
1098
+ ### Diagram
1099
+
1100
+ #### Bug Fixes
1101
+
1102
+ - `F156456` - The issue "SVG image not exported properly" has been fixed
1103
+ - `#288628` - The issue "HTML node does not gets added at run time" has been fixed.
1104
+ - `#289513` - The issue with "Group rotation does not work as expected" has been fixed.
1105
+
1106
+ ## 18.2.54 (2020-08-18)
1107
+
1108
+ ### Diagram
1109
+
1110
+ #### New Features
1111
+
1112
+ - `#281811` - support to render the port over the HTML layer.
1113
+
1114
+ #### Bug Fixes
1115
+
1116
+ - `#285793` - The issue with "Bring to front does not work for group node" has been fixed.
1117
+ - `#F156309` - The issue with "Exception occurs when try to do nudge in the diagram" has been fixed.
1118
+ - `#286692` - The issue with "Node does not resize properly when created using the stack, container and text elements" has been fixed.
1119
+ - `#286458` - The issue with "Node ports are gets ignored" has been fixed.
1120
+ - `#286174` - The issue with "Send to back not working after refresh the diagram using refresh() method" has been fixed.
1121
+ - `#286611` - The issue with "Size changed event does not get triggered when resizing with south, east, south east pin" has been fixed.
1122
+ - `#246813` - The issue with "To notify right/left button clicked in diagram click event" Has been fixed.
1123
+ - `#286418` - The issue with "When run the individual swimlane sample in angular 9 , throws build issue" has been fixed.
1124
+ - `#288057` - The issue with "Diagram selection do not update properly" has been fixed.
1125
+
1126
+ ## 18.2.48 (2020-08-04)
1127
+
1128
+ ### Diagram
1129
+
1130
+ #### New Features
1131
+
1132
+ - `#276871` - support to add symbol description for symbols in palette.
1133
+
1134
+ #### Bug Fixes
1135
+
1136
+ - `#264082` - The issue of "Sometimes difficult to make the connection to a port when set ConnectToNearByNode constraints" has been fixed.
1137
+ - `#283092` - The issue of "Exception throws when try to append a new diagram at run time In IE11" has been fixed.
1138
+ - `#281759` - The issue of "SVG node do not gets visible in diagram" has been fixed.
1139
+ - `#284823` - The issue of "DataLoaded event do not gets trigger after data loaded" has been fixed.
1140
+ - `#285793` - The issue with "Bring to front does not work for group node" has been fixed.
1141
+
1142
+ ## 18.2.46 (2020-07-21)
1143
+
1144
+ ### Diagram
1145
+
1146
+ #### Bug Fixes
1147
+
1148
+ - `#283962` - The issue of "Content of a text node is being duplicated when nowrap option is set" has been fixed.
1149
+ - `#282404` - The issue of "Phase header style changes to default style after save and load diagram" has been fixed.
1150
+
1151
+ ## 18.2.45 (2020-07-14)
1152
+
1153
+ ### Diagram
1154
+
1155
+ #### Bug Fixes
1156
+
1157
+ - `#F155218` - The issue "DOM Exception occurs when try to change z index of group node" has been fixed.
1158
+ - `#279793` - The issue of "Diagram Performance is slow in the Blazor WebAssembly app" has been fixed.
1159
+ - `#281789` - The issue with "Exception occurs when try to load the diagram with line routing" has been fixed.
1160
+ - `#281383` - The issue with "Exception occurs when try to add the group node in palette through addPaletteItem method" has been fixed.
1161
+ - `#279047` - The issue of "Exception occurs when try to show context menu in diagram with all items as hidden" has been fixed.
1162
+ - `#278621` - The issue of "When try to delete the swimlane diagram becomes unresponsive" has been fixed.
1163
+ - `#278823` - The issue of "Vertical Swimlane indexes are not properly updated" has been fixed.
1164
+ - `#271665` - The issue of "Exception throws when run symbol palette component in react production mode" has been fixed.
1165
+ - `#279793` - The issue of "Diagram Performance is slow in the Blazor WebAssembly app" has been fixed.
1166
+
1167
+ ## 18.2.44 (2020-07-07)
1168
+
1169
+ ### Diagram
1170
+
1171
+ #### New Features
1172
+
1173
+ - `#259358` - Support for user handle templates has been provided.
1174
+ - `#263337` - Undo and redo support has been enabled for order commands.
1175
+ - `#264082` - Support provided to find nearby elements when dragging the end point of the connectors.
1176
+
1177
+ #### Bug Fixes
1178
+
1179
+ - `F153539` - The issue with "Properties are not updated in server side" has been fixed.
1180
+ - `275634` - The issue with "Exception occurs when double click on read only annotation" has been fixed.
1181
+ - `273482` - The issue with "History change event args source are mismatch for nudge commands and mouse movements" has been fixed.
1182
+ - `274308` - The issue with "Tooltip does not render when diagram placed in side bar component" has been fixed.
1183
+ - `276796` - The issue with "Exception throws when zoom in or zoom out the diagram with virtualization" has been fixed.
1184
+ - `276998` - The issue with "Provide support to cancel the drawing object when press escape key" has been fixed.
1185
+ - `273484` - Issue with state of event while the connector is being dragged is now resolved.
1186
+ - `274485` - Issue with dynamically added swimlane addInfo has been fixed.
1187
+ - `264654` - Console exception with cloning phase of swimlane is now resolved.
1188
+ - `275032` - Console exception while editing the annotation of node is resolved.
1189
+ - `271060` - The issue with "Margin does not apply for the exported image" has been fixed.
1190
+ - `272898` - The issue with "When drag some nodes in palette it does not show preview and drop in diagram" has been fixed.
1191
+ - `F153185` - The issue with "Line routing does not consider for Group nodes" has been fixed.
1192
+ - `#272405` - The issue with "The Double click event does not get triggered when double clicking on an annotation" has been fixed.
1193
+ - `274242` - The issue with "Strange behaviour when changing Connector source or target decorator width or height" has been fixed.
1194
+ - `272497` - The issue with "Need to consider boundary constraints when resizing the node" has been fixed.
1195
+ - `272186` - The issue on symbol description is fixed.
1196
+ - `F12953` - The issue "Diagram FitToPage method not working properly by calling several times" has been fixed.
1197
+ - `F13028` - The issue "Connector padding is not working for Path Node" has been fixed.
1198
+ - `#275092` - The line routing for the organizational chart works now.
1199
+ - `278119` - The issue with "Exception occurs when try to export the diagram with mode data" has been fixed.
1200
+ - `279145` - The issue with "Exception occurs when try to save diagram with prevent defaults set as true" has been fixed.
1201
+ - `278617` - The issue with "Exception occurs when define two swim lanes in the diagram" has been fixed.
1202
+ - `F154840` - The issue with "Exception occurs when try to load the diagram with group nodes" has been fixed.
1203
+ - `279486` - The issue with "Exception occurs when try to load the diagram with prevent defaults set as true" has been fixed.
1204
+ - `F154304` - The issue with "Annotation Horizontal and vertical alignments are aligned wrongly" has been fixed.
1205
+
1206
+ ## 18.1.55 (2020-06-02)
1207
+
1208
+ ### Diagram
1209
+
1210
+ #### Bug Fixes
1211
+
1212
+ - `#275092` - The line routing for the organizational chart works now
1213
+
1214
+ ## 18.1.54 (2020-05-26)
1215
+
1216
+ ### Diagram
1217
+
1218
+ #### Bug Fixes
1219
+
1220
+ - `F153539` - The issue with "Properties are not updated in server side" has been fixed.
1221
+ - `275634` - The issue with "Exception occurs when double click on read only annotation" has been fixed.
1222
+ - `273482` - The issue with "History change event args source are mismatch for nudge commands and mouse movements" has been fixed.
1223
+ - `274308` - The issue with "Tooltip does not render when diagram placed in side bar component" has been fixed.
1224
+ - `276796` - The issue with "Exception throws when zoom in or zoom out the diagram with virtualization" has been fixed.
1225
+ - `276998` - The issue with "Provide support to cancel the drawing object when press escape key" has been fixed.
1226
+
1227
+ ## 18.1.52 (2020-05-13)
1228
+
1229
+ ### Diagram
1230
+
1231
+ #### Bug Fixes
1232
+
1233
+ - `273484` - Issue with state of event while the connector is being dragged is now resolved.
1234
+ - `274485` - Issue with dynamically added swimlane addInfo has been fixed.
1235
+ - `264654` - Console exception with cloning phase of swimlane is now resolved.
1236
+ - `275032` - Console exception while editing the annotation of node is resolved.
1237
+
1238
+ ## 18.1.48 (2020-05-05)
1239
+
1240
+ ### Diagram
1241
+
1242
+ #### Bug Fixes
1243
+
1244
+ - `271060` - The issue with "Margin does not apply for the exported image" has been fixed.
1245
+ - `272898` - The issue with "When drag some nodes in palette it does not show preview and drop in diagram" has been fixed.
1246
+
1247
+ ## 18.1.46 (2020-04-28)
1248
+
1249
+ ### Diagram
1250
+
1251
+ #### Bug Fixes
1252
+
1253
+ - `F153185` - The issue with "Line routing does not consider for Group nodes" has been fixed.
1254
+ - `#272405` - The issue with "The Double click event does not get triggered when double clicking on an annotation" has been fixed.
1255
+ - `274242` - The issue with "Strange behaviour when changing Connector source or target decorator width or height" has been fixed.
1256
+ - `272497` - The issue with "Need to consider boundary constraints when resizing the node" has been fixed.
1257
+ - `272186` - The issue on symbol description is fixed.
1258
+
1259
+ ## 18.1.45 (2020-04-21)
1260
+
1261
+ ### Diagram
1262
+
1263
+ #### Bug Fixes
1264
+
1265
+ - `#270667` - The issue with "Prevent line routing for straight connector" has been fixed.
1266
+
1267
+ ## 18.1.43 (2020-04-07)
1268
+
1269
+ ### Diagram
1270
+
1271
+ #### Bug Fixes
1272
+
1273
+ - `F12953` - The issue "Diagram FitToPage method not working properly by calling several times" has been fixed.
1274
+ - `F13028` - The issue "Connector padding is not working for Path Node" has been fixed.
1275
+
1276
+ ## 18.1.42 (2020-04-01)
1277
+
1278
+ ### Diagram
1279
+
1280
+ #### New Features
1281
+
1282
+ - `#267720`, `F152484` - Support to add annotation object in the text Edit event arguments
1283
+
1284
+ #### Bug Fixes
1285
+
1286
+ - `#266107` - The issue "Some nodes are not properly arranged in ComplexHierarchicalTree layout" has been fixed.
1287
+ - `#267299` - The issue "Performance issues with scroll the layout with overview" has been fixed.
1288
+ - `F152154` - The issue "Tooltip is not stay in fixed position" has been fixed.
1289
+ - `F152224`, `#267708` - The issue "Some nodes dragged from the palette are not dropped properly in the diagram" has been fixed.
1290
+ - `F152314`, `F152315` - The issue "Exception raised while loading a JSON data in load Diagram method" has been fixed.
1291
+ - `#268272` - The issue "Not able to disable the Lane header" has been fixed.
1292
+ - `#267836` - The issue "Port to Port connector docking is not proper in the Line routing" has been fixed.
1293
+ - `F152279` - The issue "Swim-lane header is not proper while swapping the lane when the swimlane Node Constraints are set to None" has been fixed.
1294
+ - `#269114` - The issue "Node dragging in swimlane is not working properly when line routing is enabled" has been fixed.
1295
+
1296
+ ## 18.1.36-beta (2020-03-19)
1297
+
1298
+ ### Diagram
1299
+
1300
+ #### New Features
1301
+
1302
+ - `#232055` - Support added to change appearance of grid pattern.
1303
+
1304
+ #### Bug Fixes
1305
+
1306
+ - `F151275` - The issue "Connector has selected wrongly when clicking the user handles of other node" has been fixed.
1307
+ - `F151027` - The issue "Cannot get the TextAnnotation node margin values dropped in the swimlane" has been fixed.
1308
+ - `F151264` - The issue "Need to change evt.args node/connector type as DiagramNode/DiagramConnector in Blazor Validated" has been fixed.
1309
+ - `266664` - The issue "Ruler disappears after the diagram moves beyond viewport" has been fixed.
1310
+ - `F149624` - The issue "Diagram Component Export renders with black background on safari browser" has been fixed.
1311
+ - `F151341` - The issue "Specifying a layout results in exception when state of nodes changes" has been fixed.
1312
+ - `F151232` - The issue "Cannot read the property '0' of undefined" has been fixed.
1313
+ - `#263839` - The issue "Fit To Page leaving too much space around content" has been fixed.
1314
+ - `F151197` - The issue with the Zoom-Pan option that disables the connectors has been fixed.
1315
+ - `#264576` - The issue "Snapping support on zooming the diagram" has been fixed.
1316
+ - `#227953` - The issue "Line routing does not consider for some nodes" has been fixed.
1317
+ - `F151098` - The issue "Port constraints is not working while draw connector through port" has been fixed.
1318
+ - `F152070` - The exception occurs when you try to resize a node outside the boundary constraints has been fixed.
1319
+ - `266374` - The issue "Tool tip does not hide while mouse move on diagram" has been fixed.
1320
+ - `264862` - The Performance issue with overview sample has been fixed.
1321
+ - `F151374` - The issue "Connector stroke style does not update properly" has been fixed.
1322
+
1323
+ ## 17.4.55 (2020-03-10)
1324
+
1325
+ ### Diagram
1326
+
1327
+ #### Bug Fixes
1328
+
1329
+ - `#227953` - The issue "Line routing does not consider for some nodes" has been fixed.
1330
+ - `266374` - The issue "Tool tip does not hide while mouse move on diagram" has been fixed.
1331
+ - `264862` - The Performance issue with overview sample has been fixed.
1332
+ - `F151374` - The issue "Connector stroke style does not update properly" has been fixed.
1333
+
1334
+ ## 17.4.51 (2020-02-25)
1335
+
1336
+ ### Diagram
1337
+
1338
+ #### Bug Fixes
1339
+
1340
+ - `F151275` - The issue "Connector has selected wrongly when clicking the user handles of other node" has been fixed.
1341
+ - `F151027` - The issue "Cannot get the TextAnnotation node margin values dropped in the swimlane" has been fixed.
1342
+ - `F151264` - The issue "Need to change evt.args node/connector type as DiagramNode/DiagramConnector in Blazor Validated" has been fixed.
1343
+ - `266664` - The issue "Ruler disappears after the diagram moves beyond viewport" has been fixed
1344
+
1345
+ ## 17.4.50 (2020-02-18)
1346
+
1347
+ ### Diagram
1348
+
1349
+ #### Bug Fixes
1350
+
1351
+ - `F149624` - The issue "Diagram Component Export renders with black background on safari browser" has been fixed.
1352
+ - `F151341` - The issue "Specifying a layout results in exception when state of nodes changes" has been fixed.
1353
+ - `F151232` - The issue "Cannot read the property '0' of undefined" has been fixed.
1354
+ - `#263839` - The issue "Fit To Page leaving too much space around content" has been fixed.
1355
+ - `F151197` - The issue with the Zoom-Pan option that disables the connectors has been fixed.
1356
+ - `#264576` - The issue "Snapping support on zooming the diagram" has been fixed.
1357
+
1358
+ ## 17.4.46 (2020-01-30)
1359
+
1360
+ ### Diagram
1361
+
1362
+ #### New Features
1363
+
1364
+ - `#232055` - Support has been provided to Clip/Ellipsis the annotation when textWrapping as WrapWithOverflow in the diagram.
1365
+ - `#253884` - Template support for HTML node has been provided.
1366
+ - `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
1367
+ - `#239063`, `#239214` - The support has been provided to notify key actions in command manager
1368
+
1369
+ #### Bug Fixes
1370
+
1371
+ - `#260927` - The issue "UmlClassDiagram is not updated properly in the layout" has been fixed.
1372
+ - `#227953` - The exception occurred while applying line routing for the complex diagram has been fixed.
1373
+ - `#259627` - The issue "Performance improvement with HTML node" has been fixed.
1374
+ - `#259329` - The issue "Polyline target decorator is not aligned properly at runtime" has been fixed.
1375
+ - `F149983` - The exception occurred while changing the z-index for group node at run time has been fixed.
1376
+ - `259000` - The issue "ConnectionChange Event does not triggered in mouse up" has been fixed.
1377
+ - `#259960` - The issue "Expand and collapse not working on the Mindmap Layout" has been fixed.
1378
+ - `#260287` - The issue "left most node unable to be selected in the layout sample" has been fixed.
1379
+ - `#256458` - The diagram html content is cutoff, while exporting the diagram issue has been fixed.
1380
+ - `#259774` - The issue with connector and node opacity that is decreased while expanding and collapsing a ComplexHierarchicalTree layout has been fixed.
1381
+ - `#259981` - Provides support to add group node children at runtime.
1382
+
1383
+ ## 17.4.44 (2021-01-21)
1384
+
1385
+ ### Diagram
1386
+
1387
+ #### Bug Fixes
1388
+
1389
+ - `#259960` - The issue "Expand and collapse not working on the Mindmap Layout" has been fixed.
1390
+ - `#260287` - The issue "left most node unable to be selected in the layout sample" has been fixed.
1391
+ - `#256458` - The diagram html content is cutoff, while exporting the diagram issue has been fixed.
1392
+ - `#259774` - The issue with connector and node opacity that is decreased while expanding and collapsing a ComplexHierarchicalTree layout has been fixed.
1393
+ - `#259981` - Provides support to add group node children at runtime.
1394
+
1395
+ ## 17.4.43 (2020-01-14)
1396
+
1397
+ ### Diagram
1398
+
1399
+ #### Bug Fixes
1400
+
1401
+ - `#259627` - The issue "Performance improvement with HTML node" has been fixed.
1402
+ - `#259329` - The issue "Polyline target decorator is not aligned properly at runtime" has been fixed.
1403
+ - `F149983` - The exception occurred while changing the z-index for group node at run time has been fixed.
1404
+ - `259000` - The issue "ConnectionChange Event does not triggered in mouse up" has been fixed.
1405
+
1406
+ ## 17.4.41 (2020-01-07)
1407
+
1408
+ ### Diagram
1409
+
1410
+ #### New Features
1411
+
1412
+ - `#232055` - Support has been provided to Clip/Ellipsis the annotation when textWrapping as WrapWithOverflow in the diagram.
1413
+ - `#253884` - Template support for HTML node has been provided.
1414
+ - `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
1415
+
1416
+ #### Bug Fixes
1417
+
1418
+ - `#258539` - The issue "Unable to move the connector together with the group when editing an Orthogonal connector segment in a group" has been fixed.
1419
+
1420
+ ## 17.4.40 (2019-12-24)
1421
+
1422
+ ### Diagram
1423
+
1424
+ #### Bug Fixes
1425
+
1426
+ - `#258522` - The issue with the connector that is not attached to the node when we draw a connector at the edge of the port has been fixed.
1427
+
1428
+ ## 17.4.39 (2019-12-17)
1429
+
1430
+ ### Diagram
1431
+
1432
+ #### New Features
1433
+
1434
+ - `#248460`,`#253930` - The support has been provided to restrict the movement of lane children beyond their boundaries.
1435
+ - `#254732` - The support has been provided to rearrange lanes within the swimlane.
1436
+
1437
+ #### Bug Fixes
1438
+
1439
+ - `F149060` - The issue "unable to remove the connector drawn at the run time" has been fixed.
1440
+ - `F148889` - The issue with the collectionChange event arguments that do not have parentId information in the element property has been fixed.
1441
+ - `F148889` - The issue with the TextAnnotation element size that grows on every move has been fixed.
1442
+ - `F148889` - Exception raises when we clear and change the text of TextAnnotation node and click to focus on other element has been fixed.
1443
+ - `F148889` - The issue with the Position change event that is not raised properly has been fixed.
1444
+ - `#227953` - The issue with updating line routing dynamically has been fixed.
1445
+ - `#254993` - The issue "Text Wrapping is not working for lane headers" has been fixed.
1446
+ - `#255299` - Visibility issue while using image as content for user handle is now fixed.
1447
+ - `#249873` - The issue with an exception that thrown while dragging an element from the pale if we have several diagrams and destroy one diagram has been resolved.
1448
+ - `#F147762` - The issue "Template annotation drawn numerous times during runtime changes" has been fixed.
1449
+ - `#249484` - The issue "Multi-selected node rotation not rotating based on center" has been resolved.
1450
+ - `#242645` - The issue "Unable to select a node in swimlane" has been fixed.
1451
+ - `#249697` - The selection after drag and drop the nodes out side of the diagram region is now working fine.
1452
+ - `#250965` - The performance issue occurs while dragging the diagram elements in flowchart samples has been resolved.
1453
+ - `#F148052` - The issue "CollectionChange event support while adding lanes at runtime" has been fixed.
1454
+ - `#250191` - The issue "Exception raised while deleting a node/connector when you set a diagram node/connector Id as a number" has been fixed.
1455
+ - The issue "Unable to hide a layer at runtime" has been fixed.
1456
+ - `#249091` - The issue with the grid lines that are black in Safari browser for Angular sample has been fixed.
1457
+ - Now, the image size will be set as image node size when the size is not given.
1458
+ - `#246889` - The issue "Context menu event will be triggered in ubuntu before the mouse up event, while context menu event will be fired in windows after mouse up" has been fixed.
1459
+ - `#253855` - The exception that thrown in addNodeToLane method because Undo/Redo Module is not injected has been fixed.
1460
+ - `#253804` - The issue with the Swimlane Header annotation styles that are unable to change has been fixed.
1461
+ - `#254194` - The issue "when resizing the text node, text content does not wraps with respect to node size" has been fixed.
1462
+ - `#253742` - The issue "children in the swimlane cannot be selected when resizing the lane, which is outside the view ports" has been fixed.
1463
+ - `F148797`,`F148792` - The issue with the Swimlane Header annotation styles that are unable to change has been fixed.
1464
+ - `#249143` - The issue "Horizontal and vertical alignment not working for the complex hierarchical layout" has been fixed.
1465
+ - `#256080` - The issue with the shapes in the overview component that cannot be dragged, if the diagram ScrollLimit is Limited has been fixed.
1466
+ - `#256513` - The issue "Not able to determine undo/redo action in the historyChange event" has been fixed.
1467
+ - `F149553` - The issue with the position of nodes in the layout that is not retained when we interact and serialize the diagram with the layout at runtime has been fixed.
1468
+
1469
+ ## 17.3.30 (2019-12-03)
1470
+
1471
+ ### Diagram
1472
+
1473
+ #### Bug Fixes
1474
+
1475
+ - `#256513` - The issue "Not able to determine undo/redo action in the historyChange event" has been fixed.
1476
+ - `F148889` - The issue with the collectionChange event arguments that do not have parentId information in the element property has been fixed.
1477
+ - `F148889` - The issue with the TextAnnotation element size that grows on every move has been fixed.
1478
+ - `F148889` - Exception raises when we clear and change the text of TextAnnotation node and click to focus on other element has been fixed.
1479
+ - `F148889` - The issue with the Position change event that is not raised properly has been fixed.
1480
+
1481
+ ## 17.3.29 (2019-11-26)
1482
+
1483
+ ### Diagram
1484
+
1485
+ #### New Features
1486
+
1487
+ - `#248460`,`#253930` - The support has been provided to restrict the movement of lane children beyond their boundaries.
1488
+ - `#254732` - The support has been provided to rearrange lanes within the swimlane.
1489
+
1490
+ #### Bug Fixes
1491
+
1492
+ - `F149060` - The issue "unable to remove the connector drawn at the run time" has been fixed.
1493
+ - `#227953` - The issue with updating line routing dynamically has been fixed.
1494
+ - `#254993` - The issue "Text Wrapping is not working for lane headers" has been fixed.
1495
+ - `#255299` - Visibility issue while using image as content for user handle is now fixed.
1496
+
1497
+ ## 17.3.28 (2019-11-19)
1498
+
1499
+ ### Diagram
1500
+
1501
+ #### Bug Fixes
1502
+
1503
+ - `#254194` - The issue "when resizing the text node, text content does not wraps with respect to node size" has been fixed.
1504
+
1505
+ - `#253742` - The issue "children in the swimlane cannot be selected when resizing the lane, which is outside the view ports" has been fixed.
1506
+
1507
+ - `F148797`,`F148792` - The issue with the Swimlane Header annotation styles that are unable to change has been fixed.
1508
+
1509
+ ## 17.3.27 (2019-11-12)
1510
+
1511
+ ### Diagram
1512
+
1513
+ #### Bug Fixes
1514
+
1515
+ - `#246889` - The issue "Context menu event will be triggered in ubuntu before the mouse up event, while context menu event will be fired in windows after mouse up" has been fixed.
1516
+ - `#253855` - The exception that thrown in addNodeToLane method because Undo/Redo Module is not injected has been fixed.
1517
+ - `#253804` - The issue with the Swimlane Header annotation styles that are unable to change has been fixed.
1518
+
1519
+ ## 17.3.21 (2019-10-30)
1520
+
1521
+ ### Diagram
1522
+
1523
+ #### Bug Fixes
1524
+
1525
+ - `#249091` - The issue with the grid lines that are black in Safari browser for Angular sample has been fixed.
1526
+
1527
+ ## 17.3.19 (2019-10-22)
1528
+
1529
+ ### Diagram
1530
+
1531
+ #### Bug Fixes
1532
+
1533
+ - `#250965` - The performance issue occurs while dragging the diagram elements in flowchart samples has been resolved.
1534
+ - `#F148052` - The issue "CollectionChange event support while adding lanes at runtime" has been fixed.
1535
+ - `#250191` - The issue "Exception raised while deleting a node/connector when you set a diagram node/connector Id as a number" has been fixed.
1536
+ - The issue "Unable to hide a layer at runtime" has been fixed.
1537
+
1538
+ ## 17.3.17 (2019-10-15)
1539
+
1540
+ ### Diagram
1541
+
1542
+ #### New Features
1543
+
1544
+ - `#249143` - The issue "Horizontal and vertical alignment not working for the complex hierarchical layout" has been fixed.
1545
+
1546
+ #### Bug Fixes
1547
+
1548
+ - `#249873` - The issue with an exception that thrown while dragging an element from the pale if we have several diagrams and destroy one diagram has been resolved.
1549
+ - `#F147762` - The issue "Template annotation drawn numerous times during runtime changes" has been fixed.
1550
+ - `#249484` - The issue "Multi-selected node rotation not rotating based on center" has been resolved.
1551
+ - `#242645` - The issue "Unable to select a node in swimlane" has been fixed.
1552
+ - `#249697` - The selection after drag and drop the nodes out side of the diagram region is now working fine.
1553
+
1554
+ ## 17.3.14 (2019-10-03)
1555
+
1556
+ ### Diagram
1557
+
1558
+ #### Bug Fixes
1559
+
1560
+ - `#F147622` - The issue "Annotation content is not properly aligned for Bezier connector when Segments has control points" has been resolved.
1561
+ - `#247074` - The issue "Overview size reset to zero while resizing the browser window" has been resolved.
1562
+ - `#248460` - The node ports of all diagram nodes are visible when we move a single node in the diagram has been fixed.
1563
+ - `F147492` - The issue "dragging one node and dropping it to another node, the node highlighter not removed" has been fixed.
1564
+ - `#F147578`- Exception raised on swim lane rendering has been fixed.
1565
+ - `#247967` - Exception raised while moving overview rectangle when HTML node contains SVG tag has been fixed.
1566
+ - `#249149` - Console errors occur when try to edit the orthogonal segments using Ctrl+Shift+click is now resolved.
1567
+
1568
+ ## 17.3.9-beta (2019-09-20)
1569
+
1570
+ ### Diagram
1571
+
1572
+ #### New Features
1573
+
1574
+ - `211256`,`227953`,`243284` - Automatic line routing support have been added.
1575
+ - `#242645` - The issue "Support to add node in lanes collection at runtime" is now resolved.
1576
+
1577
+ #### Bug Fixes
1578
+
1579
+ - `#243153` - Annotation wrapping is now working with textWrapping as WrapWithOverflow when there is a space in the annotation content.
1580
+ - `#242713` - The diagram connectors is now exported properly with WebKit.
1581
+ - `#247140` - The improper position of HTML node's in the overview has been fixed.
1582
+ - `#F147015` - The issue on printing the diagram content alone in multiple page when margin is set as zero has been fixed.
1583
+ - `#246626` - The issue "Hidden layered objects visible while changing the properties" is now resolved.
1584
+ - `#245915` - Now, the z-index of the HTML nodes works properly.
1585
+ - `#245696`,`#245047`,`#244836` - Now, the Angular diagram will be rendered properly when we set the target as es6/es2015 in ts.config file.
1586
+ - `#244623` - The issue "Flip not working for HTML node" is now resolved.
1587
+ - `#242968` - Now, the sequence connector updated properly while changing port to port connection at runtime.
1588
+ - `#244365` - Now, the user handle events firing after zoom in the diagram is validated.
1589
+ - `#245231` - The issue "When we draw multiple nodes horizontally and update layout at runtime, connectors are not updated in straight" is now resolved.
1590
+ - `#244804` - The fill color for target Decorator is now applied properly for sequence connector.
1591
+ - `#245061` - The issue "Nodes beyond the diagram view port also rendered dynamically, when enable the virtualization" is now resolved.
1592
+ - `#146327` - The issue "Layout not working for Group Node" is now resolved.
1593
+ - `#243648` - The issue "Exception raised while adding UML class shapes at runtime" is now resolved.
1594
+ - `#146017` - The issue "Decorator is not aligned properly in palette when we set large stroke Width for it" is now resolved.
1595
+ - `#242713` - The issue "Diagram Connectors not exported properly using web kit" is now resolved.
1596
+ - `#244589`, `#244046` - The issue "Context menu properties are generated in MVC" is now resolved.
1597
+ - `#243734` - The issue "Symbol Palette - first palette element gets removed while refresh the palette" is now resolved.
1598
+ - `#244519` - The issue "Support to delete a lane from swimlane" is now resolved.
1599
+ - The issue "Ports are not rendered when we enable virtualization" is now resolved.
1600
+ - `#243785` - The issue "Symbol palette first row expands twice on click" is now resolved.
1601
+ - `#243648` - The issue "Exception raised while adding UML class shapes at runtime" is now resolved.
1602
+ - `#146017` - The issue "Decorator is not aligned properly in palette when we set large stroke width for it" is now resolved.
1603
+
1604
+ ## 17.2.49 (2019-09-04)
1605
+
1606
+ ### Diagram
1607
+
1608
+ #### Bug Fixes
1609
+
1610
+ - `#246626` - The issue "Hidden layered objects visible while changing the properties" is now resolved.
1611
+ - `#245915` - Now, the z-index of the HTML nodes works properly.
1612
+
1613
+ ## 17.2.46 (2019-08-22)
1614
+
1615
+ ### Diagram
1616
+
1617
+ #### Bug Fixes
1618
+
1619
+ - `#245696`,`#245047`,`#244836` - Now, the Angular diagram will be rendered properly when we set the target as es6/es2015 in ts.config file.
1620
+ - `#244623` - The issue "Flip not working for HTML node" is now resolved.
1621
+ - `#242968` - Now, the sequence connector updated properly while changing port to port connection at runtime.
1622
+ - `#244365` - Now, the user handle events firing after zoom in the diagram is validated.
1623
+ - `#245231` - The issue "When we draw multiple nodes horizontally and update layout at runtime, connectors are not updated in straight" is now resolved.
1624
+ - `#244804` - The fill color for target Decorator is now applied properly for sequence connector.
1625
+ - `#245061` - The issue "Nodes beyond the diagram view port also rendered dynamically, when enable the virtualization" is now resolved.
1626
+
1627
+ - `#245696`,`#245047`,`#244836` - Now, the Angular diagram will be rendered properly when we set the target as es6/es2015 in ts.config file.
1628
+
1629
+ ## 17.2.41 (2019-08-14)
1630
+
1631
+ ### Diagram
1632
+
1633
+ #### Bug Fixes
1634
+
1635
+ - `#146327` - The issue "Layout not working for Group Node" is now resolved.
1636
+ - `#243648` - The issue "Exception raised while adding UML class shapes at runtime" is now resolved.
1637
+ - `#146017` - The issue "Decorator is not aligned properly in palette when we set large stroke Width for it" is now resolved.
1638
+ - `#242713` - The issue "Diagram Connectors not exported properly using web kit" is now resolved.
1639
+ - `#244589`, `#244046` - The issue "Context menu properties are generated in MVC" is now resolved.
1640
+ - `#243734` - The issue "Symbol Palette - first palette element gets removed while refresh the palette" is now resolved.
1641
+ - `#244519` - The issue "Support to delete a lane from swimlane" is now resolved.
1642
+ - The issue "Ports are not rendered when we enable virtualization" is now resolved.
1643
+
1644
+ ## 17.2.40 (2019-08-06)
1645
+
1646
+ ### Diagram
1647
+
1648
+ #### Bug Fixes
1649
+
1650
+ - `#243785` - The issue "Symbol palette first row expands twice on click" is now resolved.
1651
+ - `#243648` - The issue "Exception raised while adding UML class shapes at runtime" is now resolved.
1652
+ - `#146017` - The issue "Decorator is not aligned properly in palette when we set large stroke width for it" is now resolved.
1653
+
1654
+ ## 17.2.39 (2019-07-30)
1655
+
1656
+ ### Diagram
1657
+
1658
+ #### New Features
1659
+
1660
+ - `#242645` - The issue "Support to add node in lanes collection at runtime" is now resolved.
1661
+
1662
+ #### Bug Fixes
1663
+
1664
+ - `#243078` - The issue "Hidden layer is visible" is now resolved.
1665
+ - The issue "Context menu re-opens if you click a menu item quickly" is now working fine.
1666
+
1667
+ ## 17.2.36 (2019-07-24)
1668
+
1669
+ ### Diagram
1670
+
1671
+ #### Bug Fixes
1672
+
1673
+ - #236860, #237139 - The issue "MouseMove event is not triggered in Firefox" is now resolved.
1674
+ - #241680 - The issue "Nodes drawn using drawing tools not appeared in overview" is now resolved.
1675
+ - #240493 - The console error thrown while resizing the window in Chrome has been fixed.
1676
+ - #242332 - The issue "ContextMenu not appears while clicking an empty diagram" is now resolved.
1677
+
1678
+ ## 17.2.35 (2019-07-17)
1679
+
1680
+ ### Diagram
1681
+
1682
+ #### Bug Fixes
1683
+
1684
+ - #239193 - The issue "element does not placed properly when specify the position as (0,0)" is now resolved.
1685
+
1686
+ ## 17.2.28-beta (2019-06-27)
1687
+
1688
+ ### Diagram
1689
+
1690
+ #### Breaking Changes
1691
+
1692
+ - The `hyperLink` property in the Shape Annotation and Path annotation is renamed properly as `hyperlink`.
1693
+ - The `class` property in the UML Classifier shape is renamed properly as `classShape`.
1694
+ - The `interface` property in the UML Classifier shape is renamed properly as `interfaceShape`.
1695
+ - The `enumeration` property in the UML Classifier shape is renamed properly as `enumerationShape`.
1696
+ - The `data` property is removed from the DataSource property of the diagram.
1697
+ - The `dataManager` property in the DataSource is renamed to `DataSource`.
1698
+
1699
+ #### New Features
1700
+
1701
+ - #228504 – Support has been provided to customize the tooltip of the diagram.
1702
+ - #231402 – Support has been provided to show/hide segment thumb of the connector.
1703
+ – An option has been added to set the icons and template in the diagram user handles.
1704
+ - #232055 - Text overflow support for annotation when wrapping is enabled for annotation has been added.
1705
+
1706
+ #### Bug Fixes
1707
+
1708
+ - Z-index for nodes/connectors is now properly updated when rendering the nodes/connectors with same z-index in symbol palette and drag and drop the nodes from the symbol palette to the diagram.
1709
+ - Now, the connection between the ports has been established when remove the InConnect/OutConnect from node’s constraints.
1710
+ - Issue with the “Layer’s z-index property and sendLayerBackward/bringLayerForward API methods” has been fixed.
1711
+ - #232371 - Drag and drop the nodes from symbol palette to the diagram will no longer work if the SymbolPalette "allowDrag" property set to false at runtime.
1712
+ - Now, the connector can be moved over the connection disabled node when drawing the connector using drawing tools.
1713
+ - #232226 - The issue "Annotation added multiple times in DOM if annotation's text overflow enabled and select the node" has been fixed.
1714
+ - #232343 - Diagram's selectionChange event is now triggered properly when selecting another node or unselect the selected node in less than 1 second after dragging the node.
1715
+ - Diagram's propertyChange event is now triggered properly when move the node using keyboard and undo/redo dragged node.
1716
+ - #233008 - BPMN sequence connector does not move with stroke when its dependent node is moved issue is now fixed.
1717
+ - When changing the node's path data at run time, it scales properly with respect to node's size.
1718
+ - When changing the trigger type of BPMN's Task shape at run time, the trigger shape is positioned properly.
1719
+ - Now, the connector's decorator is docked properly when layout is enabled and drag the node.
1720
+ - When zooming the diagram, the user handles position is updated properly with respect to zoom percentage.
1721
+ - If boundaryConstraints is enabled and node's rotateAngle is changed at run time, node does not exceed the boundary limit.
1722
+ - When changing the annotation's properties at run time, annotation will update properly.
1723
+ - #234537 - Conditional sequence connector is now working properly when connected with BPMN Service shape.
1724
+ - #234307 - Undo/redo is now working properly when modifying the annotation's font size at run time.
1725
+ - #234106 - When the node having different size and executing the layout, nodes are now arranged properly.
1726
+ - The `hyperLink` property in the Shape Annotation and Path annotation is renamed properly as `hyperlink`.
1727
+ - #234537 - The BPMN shape style is now applied to the BPMN inner elements.
1728
+ - #235977 - The issue "User handles drawn multiple times while dragging a node from the palette" has been resolved.
1729
+ - #235742 - The issue with the oldValue of selectionChange is shown incorrect when mouse down on node has been resolved.
1730
+ - #235794 - The `textEdit` event is now fired in Edge browser.
1731
+ - #236322 - The module property in the package.json has been updated.
1732
+ - #237131 - The issue "Layout is messed up when diagram have disconnected nodes" has been resolved using complex hierarchical tree layout.
1733
+ - #237533 - The issue "min-height and min-width properties of node does not updated properly at run time" has been resolved.
1734
+ - #236866 - The issue with tooltip is shown even after deleting the node has been resolved.
1735
+
1736
+ ## 17.1.50 (2019-06-04)
1737
+
1738
+ ### Diagram
1739
+
1740
+ #### Bug Fixes
1741
+
1742
+ - #237131 - The issue "Layout is messed up when diagram have disconnected nodes" has been resolved using complex hierarchical tree layout.
1743
+ - #237533 - The issue "min-height and min-width properties of node does not updated properly at run time" has been resolved.
1744
+
1745
+ ## 17.1.49 (2019-05-29)
1746
+
1747
+ ### Diagram
1748
+
1749
+ #### Breaking Changes
1750
+
1751
+ - The `data` property is removed from the DataSource property of the diagram.
1752
+
1753
+ ## 17.1.48 (2019-05-21)
1754
+
1755
+ ### Diagram
1756
+
1757
+ #### Breaking Changes
1758
+
1759
+ - The `class` property in the UML Classifier shape is renamed properly as `classShape`.
1760
+ - The `interface` property in the UML Classifier shape is renamed properly as `interfaceShape`.
1761
+ - The `enumeration` property in the UML Classifier shape is renamed properly as `enumerationShape`.
1762
+
1763
+ #### Bug Fixes
1764
+
1765
+ - #234537 - The BPMN shape style is now applied to the BPMN inner elements.
1766
+ - #235977 - The issue "User handles drawn multiple times while dragging a node from the palette" has been resolved.
1767
+ - #235742 - The issue with the oldValue of selectionChange is shown incorrect when mouse down on node has been resolved.
1768
+ - #235794 - The `textEdit` event is now fired in Edge browser.
1769
+ - #236322 - The module property in the package.json has been updated.
1770
+
1771
+ ## 17.1.47 (2019-05-14)
1772
+
1773
+ ### Diagram
1774
+
1775
+ #### Breaking Changes
1776
+
1777
+ - The `hyperLink` property in the Shape Annotation and Path annotation is renamed properly as `hyperlink`.
1778
+
1779
+ #### Bug Fixes
1780
+
1781
+ ## 17.1.44 (2019-05-07)
1782
+
1783
+ ### Diagram
1784
+
1785
+ #### Bug Fixes
1786
+
1787
+ - #234537 - Conditional sequence connector is now working properly when connected with BPMN Service shape.
1788
+ - #234307 - Undo/redo is now working properly when modifying the annotation's font size at run time.
1789
+ - #234106 - When the node having different size and executing the layout, nodes are now arranged properly.
1790
+
1791
+ ## 17.1.43 (2019-04-30)
1792
+
1793
+ ### Diagram
1794
+
1795
+ #### Bug Fixes
1796
+
1797
+ - When changing the node's path data at run time, it scales properly with respect to node's size.
1798
+ - When changing the trigger type of BPMN's Task shape at run time, the trigger shape is positioned properly.
1799
+ - Now, the connector's decorator is docked properly when layout is enabled and drag the node.
1800
+ - When zooming the diagram, the user handles position is updated properly with respect to zoom percentage.
1801
+ - If boundaryConstraints is enabled and node's rotateAngle is changed at run time, node does not exceed the boundary limit.
1802
+ - When changing the annotation's properties at run time, annotation will update properly.
1803
+
1804
+ ## 17.1.41 (2019-04-16)
1805
+
1806
+ ### Diagram
1807
+
1808
+ - #232371 - Drag and drop the nodes from symbol palette to the diagram will no longer work if the SymbolPalette "allowDrag" property set to false at runtime.
1809
+ - Now, the connector can be moved over the connection disabled node when drawing the connector using drawing tools.
1810
+ - #232226 - The issue "Annotation added multiple times in DOM if annotation's text overflow enabled and select the node" has been fixed.
1811
+ - #232343 - Diagram's selectionChange event is now triggered properly when selecting another node or unselect the selected node in less than 1 second after dragging the node.
1812
+ - Diagram's propertyChange event is now triggered properly when move the node using keyboard and undo/redo dragged node.
1813
+ - #233008 - BPMN sequence connector does not move with stroke when its dependent node is moved issue is now fixed.
1814
+
1815
+ ## 17.1.40 (2019-04-09)
1816
+
1817
+ ### Diagram
1818
+
1819
+ - Z-index for nodes/connectors is now properly updated when rendering the nodes/connectors with same z-index in symbol palette and drag and drop the nodes from the symbol palette to the diagram.
1820
+ - Now, the connection between the ports has been established when remove the InConnect/OutConnect from node’s constraints.
1821
+ - Issue with the “Layer’s z-index property and sendLayerBackward/bringLayerForward API methods” has been fixed.
1822
+
1823
+ ## 17.1.38 (2019-03-29)
1824
+
1825
+ ### Diagram
1826
+
1827
+ #### New Features
1828
+
1829
+ - Support added to create a swimlane diagram using code or a visual interface with built-in swim lane shapes.
1830
+ - Support provided to prevent “previous selection gets cleared when dragging a new symbol from the symbol palette and dropping it to the diagram”.
1831
+ - Support provided to cancel the drag and drop operation from the symbol palette to the diagram when the ESC key is pressed.
1832
+ - Support provided to define the padding between the connector’s end point and the object to which it gets connected.
1833
+ - Option has been provided to retain the selection of an object when performing undo and redo operations.
1834
+ - Option provided to prevent serializing default properties when the diagram is serialized as JSON format.
1835
+ - Padding option added to scroll settings.
1836
+ - Now, it is possible to export HTML and native nodes to image format.
1837
+ - Support provided to limit the number of actions to be stored in the history manager.
1838
+
1839
+ #### Bug Fixes
1840
+
1841
+ - The "nodes distributed incorrectly" issue has been fixed.
1842
+ - The "duplicate SVG appears when node's SVG is changed" issue has been fixed.
1843
+ - Drop event is now fixed when drag and drop other component is now working fine.
1844
+ - Diagram does not zoom based on the center point is now working fine.
1845
+ - Background color of the label and nodes will be black by default while updating dynamically is now working fine.
1846
+ - Background color issue found while on text editing is not fixed.
1847
+ - Connections have created from port after removing the constraints is now working fine.
1848
+ - Performance issue on diagram layout has been fixed.
1849
+
1850
+ ## 17.1.32-beta (2019-03-13)
1851
+
1852
+ ### Diagram
1853
+
1854
+ #### New Features
1855
+
1856
+ - Support added to create a swimlane diagram using code or a visual interface with built-in swim lane shapes.
1857
+ - Support provided to prevent “previous selection gets cleared when dragging a new symbol from the symbol palette and dropping it to the diagram”.
1858
+ - Support provided to cancel the drag and drop operation from the symbol palette to the diagram when the ESC key is pressed.
1859
+ - Support provided to define the padding between the connector’s end point and the object to which it gets connected.
1860
+ - Option has been provided to retain the selection of an object when performing undo and redo operations.
1861
+ - Option provided to prevent serializing default properties when the diagram is serialized as JSON format.
1862
+ - Padding option added to scroll settings.
1863
+ - Now, it is possible to export HTML and native nodes to image format.
1864
+ - Support provided to limit the number of actions to be stored in the history manager.
1865
+
1866
+ #### Bug Fixes
1867
+
1868
+ - Drop event is now fixed when drag and drop other component is now working fine.
1869
+ - Diagram does not zoom based on the center point is now working fine.
1870
+ - Background color of the label and nodes will be black by default while updating dynamically is now working fine.
1871
+ - Background color issue found while on text editing is not fixed.
1872
+ - Connections have created from port after removing the constraints is now working fine.
1873
+ - Performance issue on diagram layout has been fixed.
1874
+
1875
+ ## 16.4.54 (2019-02-19)
1876
+
1877
+ ### Diagram
1878
+
1879
+ #### Bug Fixes
1880
+
1881
+ - Z-order maintained properly now when adding the nodes at runtime.
1882
+ - Port dragging now working properly after rotating the nodes.
1883
+ - When dragging the port, connectors associated with the ports updated properly.
1884
+ - If anyone of the selected nodes doesn’t have rotate constraints, rotate handle no longer visible with the selection handles.
1885
+
1886
+ ## 16.4.53 (2019-02-13)
1887
+
1888
+ ### Diagram
1889
+
1890
+ #### New Features
1891
+
1892
+ - Support to flip the node/connector in both horizontal and vertical direction has been added.
1893
+
1894
+ ## 16.4.52 (2019-02-05)
1895
+
1896
+ ### Diagram
1897
+
1898
+ #### Bug Fixes
1899
+
1900
+ - Exception thrown while enable zoom and pan tool dynamically is now working fine.
1901
+ - Exception thrown while build the diagram component with production mode is now working fine.
1902
+
1903
+ ## 16.4.48 (2019-01-22)
1904
+
1905
+ ### Diagram
1906
+
1907
+ #### Bug Fixes
1908
+
1909
+ - Updating data source at runtime is now working properly even if you did not define layout for a diagram.
1910
+ - Now, you can modify the nodes and connectors styles at runtime.
1911
+
1912
+ ## 16.4.47 (2019-01-16)
1913
+
1914
+ ### Diagram
1915
+
1916
+ #### Bug Fixes
1917
+
1918
+ - Connector label position is misplaced while adding the connector in layout at run time is working fine now.
1919
+
1920
+ ## 16.4.46 (2019-01-08)
1921
+
1922
+ ### Diagram
1923
+
1924
+ #### Bug Fixes
1925
+
1926
+ - Performance has been improved when dragging more number of nodes and connectors.
1927
+ - Issue on applying style for connector’s annotation is now fixed.
1928
+
1929
+ ## 16.4.44 (2018-12-24)
1930
+
1931
+ ### Diagram
1932
+
1933
+ #### Bug Fixes
1934
+
1935
+ - Alignment issue on complex hierarchical tree layout with complex data source is working fine.
1936
+
1937
+ ## 16.4.40-beta (2018-12-10)
1938
+
1939
+ ### Diagram
1940
+
1941
+ #### New Features
1942
+
1943
+ - Support to create a UML class diagram through code or a visual interface with the built-in class diagram shapes is added.
1944
+ - Support to create a UML activity diagram through code or a visual interface with the built-in activity shapes is added.
1945
+ - Support to limit the label positions while dragging a label from the connector is added.
1946
+ - Support to generate a diagram by reading the data from the database, and updating the database with the newly inserted/updated/deleted nodes and connectors is added.
1947
+ - Support to render a large number of nodes and connectors in a diagram for effective performance is added.
1948
+ - Template support for annotation is added.
1949
+
1950
+ ## 16.3.33 (2018-11-20)
1951
+
1952
+ ### Diagram
1953
+
1954
+ #### Bug Fixes
1955
+
1956
+ - Exception thrown when adding the child to the Node which has multiple parent Child is now working fine.
1957
+ - Textbox lost its focus when we mouse up on Diagram is now working fine.
1958
+ - Issue with expand collapse, when the child having more than one parent have been fixed.
1959
+ - Issue on measuring path element while refreshing the diagram is now working fine.
1960
+
1961
+ ## 16.3.29 (2018-10-31)
1962
+
1963
+ ### Diagram
1964
+
1965
+ #### Bug Fixes
1966
+
1967
+ - Node position is not updated properly in expand and collapse feature is now fixed.
1968
+ - Diagram getting overflow when use a flex layout UI 100% width/height is now working properly.
1969
+
1970
+ ## 16.3.27 (2018-10-23)
1971
+
1972
+ ### Diagram
1973
+
1974
+ #### Bug Fixes
1975
+
1976
+ - Improper positioning of group offset in initial rendering is working properly.
1977
+
1978
+ ## 16.3.25 (2018-10-15)
1979
+
1980
+ ### Diagram
1981
+
1982
+ #### Bug Fixes
1983
+
1984
+ - Connector annotation not hide on Expand and Collapse is now working properly.
1985
+ - Gridlines not disables dynamically is now working properly.
1986
+
1987
+ ## 16.3.17 (2018-09-12)
1988
+
1989
+ ### Diagram
1990
+
1991
+ #### Bug Fixes
1992
+
1993
+ - Data binding for Native and HTML nodes is now working properly.
1994
+ - Issue with apply gradient for BPMN shapes has been fixed.
1995
+ - Issue with drop event argument has been fixed.
1996
+ - The image node is now rendered properly in the symbol palette.
1997
+
1998
+ #### New Features
1999
+
2000
+ - Annotation can be moved, rotated, and resized interactively.
2001
+ - Group node can be added into the symbol palette.
2002
+ - Poly line connector tool support has been added.
2003
+ - Text annotation can be associated with BPMN nodes interactively.
2004
+
2005
+ ## 16.2.47 (2018-08-07)
2006
+
2007
+ ### Diagram
2008
+
2009
+ #### Bug Fixes
2010
+
2011
+ - Issue on applying gradient for BPMN shapes have fixed.
2012
+ - Issue on rendering diagram in IE browser have been fixed.
2013
+ - Issue on template binding for HTML and Native node have been fixed.
2014
+
2015
+ ## 16.2.46 (2018-07-30)
2016
+
2017
+ ### Diagram
2018
+
2019
+ #### Bug Fixes
2020
+
2021
+ - Issue on Drag event arguments have been resolved.
2022
+ - Issue on changing the background image at run time has been fixed.
2023
+
2024
+ ## 16.2.45 (2018-07-17)
2025
+
2026
+ ### Diagram
2027
+
2028
+ #### Bug Fixes
2029
+
2030
+ - Issue on click event arguments have been resolved.
2031
+
2032
+ ## 16.2.41 (2018-06-25)
2033
+
2034
+ ### Diagram
2035
+
2036
+ The diagram component visually represents information. It is also used to create diagrams like flow charts, organizational charts, mind maps, and BPMN either through code or a visual interface.
2037
+
2038
+ - **Nodes** - Nodes are used to host graphical objects (path or controls) that can be arranged and manipulated on a diagram page. Many predefined standard shapes are included. Custom shapes can also be created and added easily.
2039
+ - **Connectors** - The relationship between two nodes is represented using a connector.
2040
+ - **Labels** - Labels are used to annotate nodes and connectors.
2041
+ - **Interactive Features** - Interactive features are used to improve the run time editing experience of a diagram.
2042
+ - **Data Binding** - Generates diagram with nodes and connectors based on the information provided from an external data source.
2043
+ - **Commands** - Supports a set of predefined commands that helps edit the diagram using keyboard. It is also possible to configure new commands and key combinations.
2044
+ - **Automatic Layout** - Automatic layouts are used to arrange nodes automatically based on a predefined layout logic. There is built-in support for organizational chart layout, hierarchical tree layout, symmetric layout, radial tree layout, and mind map layout.
2045
+ - **Overview Panel** - The overview panel is used to improve navigation experience when exploring large diagrams.
2046
+ - **SymbolPalettes** - The symbol palette is a gallery of reusable symbols and nodes that can be dragged and dropped on the surface of a diagram.
2047
+ - **Rulers** - The ruler provides horizontal and vertical guides for measuring diagram objects in diagram control.
2048
+ - **Serialization** - When saved in JSON format a diagram’s state persists, and then it can be loaded back using serialization.
2049
+ - **Exporting and Printing** - Diagrams can be exported as .png, .jpeg, .bmp, and .svg image files, and can also be printed as documents.
2050
+ - **Gridlines** - Gridlines are the pattern of lines drawn behind diagram elements. It provides a visual guidance while dragging or arranging the objects on a diagram surface.
2051
+ - **Page Layout** - The drawing surface can be configured to page-like appearance using page size, orientation, and margins.
2052
+ - **Context Menu** - Frequently used commands can easily be mapped to the context menu.