Skip to content

Tags: DividingLine/GoJS

Tags

v1.8.16

Toggle v1.8.16's commit message
1.8.16

* Group.layout setter now correctly triggers a relayout, if the newly
assigned layout is invalid.
* Fixed a bug with scrollbar values after some initial layouts.
* Fixed a bug with InputEvent.viewPoint on Diagram.lastInput when
dragging between Diagrams.
* Fixed a drawing bug with separator dash arrays, affecting
RowColumnDefinition.separatorDashArray,
Panel.defaultColumnSeparatorDashArray, and
Panel.defaultRowSeparatorDashArray.

v1.8.15

Toggle v1.8.15's commit message
1.8.15

* Link Adornments can now be of any Panel type. They are still forced
into the type Panel.Link if the Part.selectionObjectName is unspecified
or is an empty string, or if it refers to the Link.path.
* Using the wheel to scroll while the mouse is over the scroll-bar now
correctly scrolls the Diagram.

v1.8.14

Toggle v1.8.14's commit message
1.8.14

* CommandHandler.canPasteSelection now returns false if there are zero
parts in the clipboard.
* Fixes for Link Adornment sizing.

v1.8.13

Toggle v1.8.13's commit message
1.8.13

* Fixed DraggingTool.doMouseMove to respect settings of
Diagram.currentCursor in GraphObject.mouseDragEnter event handlers.
* Adding or removing reflexive links at a node when there are multiple
such links at that node no longer cause their routes to be invalidated
if Link.adjusting is not Link.None.
* The default text editor's main element no longer erases all CSS
Styling on activation. This allows you to set style by writing, for
example:
TextEditingTool.defaultTextEditor.mainElement.style.backgroundColor =
'red';

v1.8.12

Toggle v1.8.12's commit message
1.8.12

* Added search functionality for classes and members in the API
documentation.
* Fix for Geometry.parse when numbers containing alphabet characters
(such as 4E-06) are present.
* Updated Geometry.parse to accept multiple '.'s without spaces to allow
for chaining decimals, for example 1.5.75.75. The result would be 1.5
.75 .75, as specified by the SVG grammar.

v1.8.11

Toggle v1.8.11's commit message
1.8.11

Fixed a check for window.navigator.msPointerEnabled that was modified in
1.8.8. This was disabling Pointer Events in IE based browsers

v1.8.10

Toggle v1.8.10's commit message
1.8.10

* Improved wheel events, primarily for Firefox and Firefox for Android.
Mac trackpads will now pan and scroll in both directions in Firefox.
* Fixed a bug with links not rerouting during a drag of a collapsed
group. This occurred when a link was connected to a "...Side" Spot of a
member node.
* Fixed a shadow regression introduced in 1.8.9.
* Some licensing fixes for versions of IE.

v1.8.9

Toggle v1.8.9's commit message
1.8.9

* Fixed a bug in Diagram.findObjectsNear in Table Panels using TableRow
and TableColumn.
* Fixed a drawing bug where some GraphObjects with a background set
would be shadowed, when they should not be.

v1.8.8

Toggle v1.8.8's commit message
1.8.8

* Added an Introduction page about Debugging.
* Fixed a check for window.navigator.msPointerEnabled that was added in
1.8.5.
* Fixed UndoManager.canUndo and UndoManager.canRedo to ignore
UndoManager.isUndoingRedoing.
* The Server-side Images Intro page now contains examples using
Puppeteer.

v1.8.7

Toggle v1.8.7's commit message
1.8.7

* Fixed routing of AvoidsNodes Links when added as members of a Group
that hadn't been measured fully yet with its new members.
* Fixed Layout.doLayout, the default layout that only positions nodes
that do not have a real Part.location, to respect the pre-layout
position of Groups, when the Group.layout has not been set.
* Improved LinkingBaseTool.isValidCycle to guess whether
LinkingTool.archetypeLinkData will create a new Link that is not
Link.isTreeLink, which affects link validity when Diagram.validCycle is
Diagram.CycleDestinationTree or Diagram.CycleSourceTree.
* Increased the CSS z-index of the default touch context menu from 300
to 10002.
* For Table Panels and RowColumnDefinitions: Before, a separator would
exist and take up space for every row and column except index = 0. Now
they exist and take up space for every row and column except the first
row and column, whatever its index may be.