@syncfusion/ej2-angular-diagrams 19.2.59 → 19.3.44
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.
- package/@syncfusion/ej2-angular-diagrams.es5.js +1 -1
- package/@syncfusion/ej2-angular-diagrams.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-diagrams.js +1 -1
- package/@syncfusion/ej2-angular-diagrams.js.map +1 -1
- package/CHANGELOG.md +8 -2
- package/dist/ej2-angular-diagrams.umd.js +2 -1
- package/dist/ej2-angular-diagrams.umd.js.map +1 -1
- package/dist/ej2-angular-diagrams.umd.min.js +2 -2
- package/dist/ej2-angular-diagrams.umd.min.js.map +1 -1
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/diagram/diagram.component.d.ts +39 -0
- package/src/overview/overview.component.d.ts +1 -0
- package/src/symbol-palette/symbolpalette.component.d.ts +2 -0
- package/styles/bootstrap-dark.css +45 -28
- package/styles/bootstrap.css +42 -25
- package/styles/bootstrap4.css +137 -15
- package/styles/bootstrap5-dark.css +396 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +396 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/diagram/bootstrap-dark.css +45 -28
- package/styles/diagram/bootstrap.css +42 -25
- package/styles/diagram/bootstrap4.css +137 -15
- package/styles/diagram/bootstrap5-dark.css +396 -0
- package/styles/diagram/bootstrap5-dark.scss +1 -0
- package/styles/diagram/bootstrap5.css +396 -0
- package/styles/diagram/bootstrap5.scss +1 -0
- package/styles/diagram/fabric-dark.css +42 -25
- package/styles/diagram/fabric.css +38 -21
- package/styles/diagram/highcontrast-light.css +19 -3
- package/styles/diagram/highcontrast.css +48 -31
- package/styles/diagram/material-dark.css +50 -33
- package/styles/diagram/material.css +38 -21
- package/styles/diagram/tailwind-dark.css +33 -17
- package/styles/diagram/tailwind.css +29 -13
- package/styles/fabric-dark.css +42 -25
- package/styles/fabric.css +38 -21
- package/styles/highcontrast-light.css +19 -3
- package/styles/highcontrast.css +48 -31
- package/styles/material-dark.css +50 -33
- package/styles/material.css +38 -21
- package/styles/tailwind-dark.css +33 -17
- package/styles/tailwind.css +29 -13
package/CHANGELOG.md
CHANGED
|
@@ -6,18 +6,24 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
9
|
+
- `#I337722` - The issue "Connector Position not Updated Properly when rotating it with segments" has been fixed.
|
|
10
|
+
- `#I341943` - The issue "BringIntoView API does not bring the large bounds into the screen viewport" has been fixed.
|
|
10
11
|
|
|
11
|
-
## 19.
|
|
12
|
+
## 19.3.43 (2021-09-30)
|
|
12
13
|
|
|
13
14
|
### Diagram
|
|
14
15
|
|
|
15
16
|
#### Bug Fixes
|
|
16
17
|
|
|
18
|
+
- `#F166882` - The issue "Accessibility validation error in Measure element Div" has been fixed.
|
|
19
|
+
- `#I341447` - The issue "The historyChange event is not triggered while rotate and move the node" has been fixed.
|
|
17
20
|
- `#I338448` - The issue "An exception occurs when save and load the diagram with PreventDefaults as true" has been fixed.
|
|
18
21
|
- `#I338105` - The issue "The drawing tool draws multiple node while perform right click" has been fixed.
|
|
19
22
|
- `#I339621` - The issue "An exception occurs render a image node with alignment as none and scale as Stretch" has been fixed.
|
|
20
23
|
- `#I339619` - The issue "An exception occurs when save and load the swimlane with BPMN children" has been fixed.
|
|
24
|
+
- `#I339487` - The issue "The connector drawing object does not snap to near by port" has been fixed.
|
|
25
|
+
- `#I342173` - The issue "An exception occurs when clear the diagram using Clear API" has been fixed.
|
|
26
|
+
- `#I341524` - The issue "The selection change event returns empty NewValue argument while selecting one of the multi-selected nodes" has been fixed.
|
|
21
27
|
|
|
22
28
|
## 19.2.56 (2021-08-17)
|
|
23
29
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-diagrams.umd.js
|
|
3
|
-
* version : 19.
|
|
3
|
+
* version : 19.3.44
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1558,6 +1558,7 @@ exports.canMeasureDecoratorPath = ej2Diagrams.canMeasureDecoratorPath;
|
|
|
1558
1558
|
exports.getPreviewSize = ej2Diagrams.getPreviewSize;
|
|
1559
1559
|
exports.getSymbolSize = ej2Diagrams.getSymbolSize;
|
|
1560
1560
|
exports.findParentInSwimlane = ej2Diagrams.findParentInSwimlane;
|
|
1561
|
+
exports.selectionHasConnector = ej2Diagrams.selectionHasConnector;
|
|
1561
1562
|
exports.CanvasRenderer = ej2Diagrams.CanvasRenderer;
|
|
1562
1563
|
exports.DiagramRenderer = ej2Diagrams.DiagramRenderer;
|
|
1563
1564
|
exports.DataBinding = ej2Diagrams.DataBinding;
|