Skip to content

Commit 121039e

Browse files
Updated changelog
1 parent 97c8e95 commit 121039e

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
#### Version 5.8.0
2+
* Added `loopsLayoutMode` property to `primitives.famdiagram.Config`. Property defines layout optimization mode for diagrams having loops between items.
3+
* Fixed loops visualization in family diagram
4+
* Fixed spouses selection in family diagram
5+
* Fixed background annotation `includeChildren` property in family diagram having loops between items.
16
#### Version 5.7.0
2-
* Added `primaryParent` property to `primitives.famdiagram.ItemConfig`. Property define user preference for item placement relative to its multiple parents in Family Diagram. See Technological Tree Demo.
7+
* Added `primaryParent` property to `primitives.famdiagram.ItemConfig`. Property defines user preference for item placement relative to its multiple parents in Family Diagram. See Technological Tree Demo.
38
#### Version 5.6.4
49
* Updated IntelliSense API annotations
510
#### Version 5.6.3

index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@
108108
jquery: "samples/jquery.widgets/DemoFinancialOwnership.html"
109109
}
110110
},
111+
{
112+
label: "Mutual Financial Ownership Chart",
113+
frameworks: {
114+
javascript: "samples/javascript.controls/DemoMutualFinancialOwnership.html"
115+
}
116+
},
111117
{
112118
label: "Dependencies Chart",
113119
frameworks: {
@@ -436,6 +442,12 @@
436442
javascript: "samples/javascript.controls/CaseFamilyChartPrimaryParent.html"
437443
}
438444
},
445+
{
446+
label: "Loops Layout Optimization",
447+
frameworks: {
448+
javascript: "samples/javascript.controls/CaseLoopsInFamilyChart.html"
449+
}
450+
},
439451
]
440452
},
441453
{

min/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "basicprimitives",
3-
"version": "5.7.0",
3+
"version": "5.8.0",
44
"description": "Basic Primitives Diagrams for JavaScript - data visualization components library that implements organizational chart and multi-parent dependency diagrams, contains implementations of JavaScript Controls and PDF rendering plugins.",
55
"main": "primitives.latest.js",
66
"scripts": {

src.primitives/common/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
var primitives = {
1010
common: {
11-
version: "5.7.0"
11+
version: "5.8.0"
1212
},
1313
orgdiagram: {},
1414
famdiagram: {},

src.primitives/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @preserve Basic Primitives Diagrams v5.7.0
2+
* @preserve Basic Primitives Diagrams v5.8.0
33
* Copyright (c) 2013 - 2020 Basic Primitives Inc
44
*
55
* Non-commercial - Free

0 commit comments

Comments
 (0)