@syncfusion/ej2-angular-diagrams 20.3.61-ngcc → 20.4.38-ngcc

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/CHANGELOG.md CHANGED
@@ -8,6 +8,11 @@
8
8
 
9
9
  - `#I409589` - Support to override the mouseWheel event has been added.
10
10
 
11
+ #### Bug Fixes
12
+
13
+ - `I421148` - Now, connector segment does not get split into multiple segment while hover on node.
14
+ - `#I420202` - The issue on annotation interaction has been resolved.
15
+
11
16
  ## 20.3.60 (2022-12-06)
12
17
 
13
18
  ### Diagram
package/README.md CHANGED
@@ -1,75 +1,157 @@
1
- # ej2-angular-diagrams
1
+ # Angular Diagram Component
2
2
 
3
- 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.
3
+ The [Angular Diagram](https://www.syncfusion.com/angular-components/angular-diagram?utm_source=npm&utm_medium=listing&utm_campaign=angular-diagram-npm) component is used for visualizing, creating, and editing interactive diagrams. It supports creating flowcharts, organizational charts, mind maps, floor plans, UML diagrams, and BPMN charts either through code or a visual interface.
4
4
 
5
- ![Diagram](https://ej2.syncfusion.com/products/images/diagram/read-me.gif)
5
+ <p align="center">
6
+ <a href="https://ej2.syncfusion.com/angular/documentation/diagram/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-diagram-npm">Getting started</a> .
7
+ <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-diagram-npm#/bootstrap5/diagram/default-functionalities">Online demos</a> .
8
+ <a href="https://www.syncfusion.com/angular-components/angular-diagram?utm_source=npm&utm_medium=listing&utm_campaign=angular-diagram-npm">Learn more</a>
9
+ </p>
6
10
 
7
- > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials).
11
+ <p align="center">
12
+ <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-diagram.png" alt="Angular Diagram Control"/>
13
+ </p>
8
14
 
9
- > A free community license (https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
15
+ <p align="center">
16
+ Trusted by the world's leading companies
17
+ <a href="https://www.syncfusion.com">
18
+ <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Bootstrap logo">
19
+ </a>
20
+ </p>
10
21
 
11
22
  ## Setup
12
23
 
13
- To install Diagram and its dependent packages, use the following command
24
+ ### Create an Angular Application
14
25
 
15
- ```sh
16
- npm install @syncfusion/ej2-angular-diagrams
17
- ```
26
+ You can use [Angular CLI](https://github.com/angular/angular-cli) to setup your Angular applications. To install the Angular CLI, use the following command.
18
27
 
19
- ## Resources
28
+ ```bash
29
+ npm install -g @angular/cli
30
+ ```
20
31
 
21
- * [Getting Started](https://ej2.syncfusion.com/angular/documentation/diagram/getting-started.html)
22
- * [View Online Demos](https://ej2.syncfusion.com/angular/demos/#/material/diagram/default-functionalities)
23
- * [Product Page](https://www.syncfusion.com/angular-ui-components/diagram)
32
+ Create a new Angular application using the following Angular CLI command.
24
33
 
25
- ## Supported Frameworks
34
+ ```bash
35
+ ng new my-app
36
+ cd my-app
37
+ ```
26
38
 
27
- Diagram component is also offered in following list of frameworks.
39
+ ### Adding Syncfusion Diagram package
28
40
 
29
- 1. [Angular](https://github.com/syncfusion/ej2-angular-ui-components?utm_source=npm&utm_campaign=diagram)
30
- 2. [React](https://github.com/syncfusion/ej2-react-ui-components?utm_source=npm&utm_campaign=diagram)
31
- 3. [VueJS](https://github.com/syncfusion/ej2-vue-ui-components?utm_source=npm&utm_campaign=diagram)
32
- 4. [ASP.NET Core](https://aspdotnetcore.syncfusion.com/Diagram/FlowChart#/material)
33
- 5. [ASP.NET MVC](https://aspnetmvc.syncfusion.com/Diagram/DefaultFunctionalities#/material)
34
- 6. [JavaScript (ES5)](https://www.syncfusion.com/javascript-ui-controls/diagram)
41
+ All Syncfusion Angular packages are available in [npmjs.com](https://www.npmjs.com/~syncfusionorg). To install the Angular diagram package, use the following command.
35
42
 
36
- ## Showcase samples
43
+ ```bash
44
+ npm install @syncfusion/ej2-angular-diagrams
45
+ ```
37
46
 
38
- * Diagram Builder ([Source](https://github.com/syncfusion/ej2-showcase-ng-diagrambuilder), [Live Demo](https://ej2.syncfusion.com/showcase/angular/diagrambuilder/))
47
+ The above command does the below configuration to your Angular app.
48
+
49
+ * Adds `@syncfusion/ej2-angular-diagrams` package and its peer dependencies to your `package.json` file.
50
+ * Imports the `DiagramModule` in your application module `app.module.ts`.
51
+ * Registers the Syncfusion UI default theme (material) in the `angular.json` file.
52
+
53
+ This makes it easy to add the Syncfusion Angular Diagram module to your project and start using it in your application.
54
+
55
+ ### Add Diagram component
56
+
57
+ In **src/app/app.component.ts**, use `<ejs-diagram>` selector in the `template` attribute of the `@Component` directive to render the Syncfusion Angular Diagram component.
58
+
59
+ ```typescript
60
+ import { Component, OnInit } from '@angular/core';
61
+
62
+ @Component({
63
+ selector: 'app-root',
64
+ template: `<ejs-diagram #diagram id="diagram" width="100%" height="700px">
65
+ <e-nodes>
66
+ <e-node id="begin" [height]="40" [offsetX]="300" [offsetY]="80" [shape]="terminator">
67
+ <e-node-annotations>
68
+ <e-node-annotation content="Begin"> </e-node-annotation>
69
+ </e-node-annotations>
70
+ </e-node>
71
+ <e-node id="process" [height]="80" [offsetX]="300" [offsetY]="160" [shape]="decision">
72
+ <e-node-annotations>
73
+ <e-node-annotation content="Process"> </e-node-annotation>
74
+ </e-node-annotations>
75
+ </e-node>
76
+ <e-node id="end" [height]="40" [offsetX]="300" [offsetY]="240" [shape]="process">
77
+ <e-node-annotations>
78
+ <e-node-annotation content="End"> </e-node-annotation>
79
+ </e-node-annotations>
80
+ </e-node>
81
+ </e-nodes>
82
+ <e-connectors>
83
+ <e-connector id="connector1" sourceID="begin" targetID="process">
84
+ </e-connector>
85
+ <e-connector id="connector2" sourceID="process" targetID="end">
86
+ </e-connector>
87
+ </e-connectors>
88
+ </ejs-diagram>`
89
+ })
90
+ export class AppComponent implements OnInit {
91
+ public terminator: FlowShapeModel = { type: 'Flow', shape: 'Terminator' };
92
+ public decision: FlowShapeModel = { type: 'Flow', shape: 'Decision' };
93
+ }
94
+ ```
39
95
 
96
+ ## Supported frameworks
97
+
98
+ Diagram component is also offered in the following list of frameworks.
99
+
100
+ | [<img src="https://ej2.syncfusion.com/github/images/js.svg" height="50" />](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[JavaScript](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
101
+ | :-----: | :-----: | :-----: | :-----: | :-----: |
102
+
103
+ ## Use case demos
104
+
105
+ * [Angular Diagram Builder demo](https://ej2.syncfusion.com/showcase/angular/diagrambuilder/)
106
+ * [Angular Organizational Chart demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/organization-chart)
107
+ * [Angular Mind Map demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/mind-map)
108
+ * [Angular BPMN Editor demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/bpmn-editor)
109
+ * [Angular Logic Circuit Diagram demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/logic-circuit)
110
+ * [Angular UML Activity Diagram demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/uml-activity)
111
+ * [Angular Network Diagram demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/network-diagram)
112
+ * [Angular UML Class Diagram demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/uml-Class-diagram)
113
+ * [Angular Venn Diagram demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/venn-diagram)
114
+ * [Angular Fishbone Diagram demo](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/diagram/fishbone-diagram)
115
+
116
+ ## Key features
117
+
118
+ * [Nodes](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/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.
119
+ * [Connectors](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/connectors) - The relationship between two nodes is represented using a connector.
120
+ * [Labels](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/annotations)- Labels are used to annotate nodes and connectors.
121
+ * [Ports](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/ports) - Ports act as the connection points of the node and allows to create connections with only those specific points.
122
+ * [Interactive features](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/drawing-tool) - Interactive features are used to improve the run time editing experience of a diagram.
123
+ * [Data binding](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/local-data) - Generates diagram with nodes and connectors based on the information provided from an external data source.
124
+ * [Commands](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/key-board-functions) - Supports a set of predefined commands that helps edit the diagram using keyboard. It is also possible to configure new commands and key combinations.
125
+ * [Automatic layout](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/hierarchical-tree) - 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.
126
+ * [Overview panel](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/overview) - The overview panel is used to improve navigation experience when exploring large diagrams.
127
+ * [SymbolPalettes](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/symbol-palette) - The symbol palette is a gallery of reusable symbols and nodes that can be dragged and dropped on the surface of a diagram.
128
+ * [Rulers](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/drawing-tool) - The ruler provides horizontal and vertical guides for measuring diagram objects in diagram component.
129
+ * [Serialization](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/serialization) - When saved in JSON format a diagram’s state persists, and then it can be loaded back using serialization.
130
+ * [Exporting and Printing](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/print-export) - Diagrams can be exported as .png, .jpeg, .bmp, and .svg image files, and can also be printed as documents.
131
+ * [Gridlines](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/default-functionalities) - 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.
132
+ * [Page layout](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/print-export)- The drawing surface can be configured to page-like appearance using page size, orientation, and margins.
133
+ * [Context menu](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/key-board-functions) - Frequently used commands can easily be mapped to the context menu.
40
134
 
41
- ## Key Features
135
+ ## Support
42
136
 
43
- - [**Nodes**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/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.
44
- - [**Connectors**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/connectors) - The relationship between two nodes is represented using a connector.
45
- - [**Labels**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/annotations)- Labels are used to annotate nodes and connectors.
46
- - [**Interactive Features**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/drawing-tool) - Interactive features are used to improve the run time editing experience of a diagram.
47
- - [**Data Binding**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/local-data) - Generates diagram with nodes and connectors based on the information provided from an external data source.
48
- - [**Commands**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/key-board-functions) - Supports a set of predefined commands that helps edit the diagram using keyboard. It is also possible to configure new commands and key combinations.
49
- - [**Automatic Layout**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/hierarchical-tree) - 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.
50
- - [**Overview Panel**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/overview) - The overview panel is used to improve navigation experience when exploring large diagrams.
51
- - [**SymbolPalettes**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/symbol-palette) - The symbol palette is a gallery of reusable symbols and nodes that can be dragged and dropped on the surface of a diagram.
52
- - [**Rulers**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/drawing-tool) - The ruler provides horizontal and vertical guides for measuring diagram objects in diagram control.
53
- - [**Serialization**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/serialization) - When saved in JSON format a diagram’s state persists, and then it can be loaded back using serialization.
54
- - [**Exporting and Printing**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/print-export) - Diagrams can be exported as .png, .jpeg, .bmp, and .svg image files, and can also be printed as documents.
55
- - [**Gridlines**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/default-functionalities) - 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.
56
- - [**Page Layout**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/print-export)- The drawing surface can be configured to page-like appearance using page size, orientation, and margins.
57
- - [**Context Menu**](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=diagram#/material/diagram/key-board-functions) - Frequently used commands can easily be mapped to the context menu.
137
+ Product support is available through the following mediums.
58
138
 
59
- ## Support
139
+ * [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
140
+ * [Community forum](https://www.syncfusion.com/forums/angular-js2?utm_source=npm&utm_medium=listing&utm_campaign=angular-diagram-npm)
141
+ * [GitHub issues](https://github.com/syncfusion/ej2-angular-ui-components/issues/new)
142
+ * [Request feature or report bug](https://www.syncfusion.com/feedback/angular?utm_source=npm&utm_medium=listing&utm_campaign=angular-diagram-npm)
143
+ * Live chat
60
144
 
61
- Product support is available for through following mediums.
145
+ ## Changelog
62
146
 
63
- * Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=diagram) support system or [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_campaign=diagram).
64
- * New [GitHub issue](https://github.com/syncfusion/ej2-angular-ui-components/issues/new).
65
- * Ask your query in Stack Overflow with tag `syncfusion`, `ej2`.
147
+ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/diagrams/CHANGELOG.md). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
66
148
 
67
- ## License
149
+ ## License and copyright
68
150
 
69
- Check the license detail [here](https://github.com/syncfusion/ej2/blob/master/license?utm_source=npm&utm_campaign=diagram).
151
+ > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
70
152
 
71
- ## Changelog
153
+ > A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
72
154
 
73
- Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/diagrams/CHANGELOG.md)
155
+ See [LICENSE FILE](https://github.com/syncfusion/ej2/blob/master/license?utm_source=npm&utm_campaign=diagram) for more info.
74
156
 
75
157
  © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-diagrams.umd.js
3
- * version : 20.3.61
3
+ * version : 20.4.38
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
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-diagrams.umd.min.js
3
- * version : 20.3.61
3
+ * version : 20.4.38
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
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-diagrams@*",
3
- "_id": "@syncfusion/ej2-angular-diagrams@20.3.60",
3
+ "_id": "@syncfusion/ej2-angular-diagrams@19.13.9",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-HFC7QF044RIZUP2ZuFq85AZLOZepq13JiOWXxgu+65J/tx2RBxtj7WfnfXay3lQS2sKy2e25qC6zQWeIHqK/Cg==",
5
+ "_integrity": "sha512-GS6boSZrIatpxxK6RuqbXTJwzE0bAnkTNwbG3eLY8qiUG7S52oouB413WERe4TEaPkSbCqbXwOTfzvNunjyQQg==",
6
6
  "_location": "/@syncfusion/ej2-angular-diagrams",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-diagrams/-/ej2-angular-diagrams-20.3.60.tgz",
23
- "_shasum": "fdcfd0e40aab094940193a49958b406f180d9bf6",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-angular-diagrams/-/ej2-angular-diagrams-19.13.9.tgz",
23
+ "_shasum": "10b810e460fc09a3ca1e30ed4e6e5d4f5badacf1",
24
24
  "_spec": "@syncfusion/ej2-angular-diagrams@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~20.3.56",
35
- "@syncfusion/ej2-base": "~20.3.56",
36
- "@syncfusion/ej2-diagrams": "20.3.61"
34
+ "@syncfusion/ej2-angular-base": "~20.4.38",
35
+ "@syncfusion/ej2-base": "~20.4.38",
36
+ "@syncfusion/ej2-diagrams": "20.4.38"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Angular",
@@ -62,5 +62,5 @@
62
62
  "schematics": "./schematics/collection.json",
63
63
  "sideEffects": false,
64
64
  "typings": "ej2-angular-diagrams.d.ts",
65
- "version": "20.3.61-ngcc"
65
+ "version": "20.4.38-ngcc"
66
66
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-diagrams";
2
- export declare const pkgVer = "^20.3.60";
2
+ export declare const pkgVer = "^19.13.9";
3
3
  export declare const moduleName = "DiagramModule, SymbolPaletteModule, OverviewModule";
4
- export declare const themeVer = "~20.3.60";
4
+ export declare const themeVer = "~19.13.9";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-diagrams';
4
- exports.pkgVer = '^20.3.61';
4
+ exports.pkgVer = '^20.4.38';
5
5
  exports.moduleName = 'DiagramModule, SymbolPaletteModule, OverviewModule';
6
- exports.themeVer = '~20.3.61';
6
+ exports.themeVer = '~20.4.38';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-diagrams';
2
- export const pkgVer = '^20.3.61';
2
+ export const pkgVer = '^20.4.38';
3
3
  export const moduleName = 'DiagramModule, SymbolPaletteModule, OverviewModule';
4
- export const themeVer = '~20.3.61';
4
+ export const themeVer = '~20.4.38';