@progress/kendo-angular-diagrams 19.3.0-develop.16 → 19.3.0-develop.18

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.
@@ -35,7 +35,7 @@ export class DiagramComponent {
35
35
  * Defines the connections that render between the shapes in the Diagram.
36
36
  * Changing this property dynamically reinitializes the Diagram.
37
37
  */
38
- connections;
38
+ connections = [];
39
39
  /**
40
40
  * A set of settings to configure the Diagram behavior when the user attempts to drag, resize, or remove shapes.
41
41
  * Changing the property value dynamically triggers a reinitialization of the Diagram.
@@ -46,7 +46,7 @@ export class DiagramComponent {
46
46
  * The layout of a diagram consists of arranging the shapes (sometimes also the connections) in some fashion in order to achieve an aesthetically pleasing experience to the user.
47
47
  * Changing the property value dynamically triggers a reinitialization of the Diagram.
48
48
  */
49
- layout = { type: 'tree' };
49
+ layout;
50
50
  /**
51
51
  * Defines the pannable options. Use this setting to disable Diagram pan or change the key that activates the pan behavior.
52
52
  * @default true
@@ -72,7 +72,7 @@ export class DiagramComponent {
72
72
  * Defines the shapes that render in the Diagram.
73
73
  * Changing the property value dynamically triggers a reinitialization of the Diagram.
74
74
  */
75
- shapes;
75
+ shapes = [];
76
76
  /**
77
77
  * Defines the zoom level of the Diagram.
78
78
  *
@@ -182,8 +182,7 @@ export class DiagramComponent {
182
182
  zoomMin: this.zoomMin,
183
183
  zoomRate: this.zoomRate,
184
184
  shapeDefaults: this.shapeDefaults,
185
- connectionDefaults: this.connectionDefaults,
186
- layout: this.layout,
185
+ connectionDefaults: this.connectionDefaults
187
186
  };
188
187
  constructor(wrapperElement, renderer, zone) {
189
188
  this.wrapperElement = wrapperElement;
@@ -576,7 +575,6 @@ export class DiagramComponent {
576
575
  this.diagram._createOptionElements();
577
576
  this.diagram.zoom(this.diagram.options.zoom);
578
577
  this.diagram.canvas.draw();
579
- this.diagram.bringIntoView(this.diagram.shapes);
580
578
  });
581
579
  }
582
580
  updateOptions(prop) {
package/esm2022/index.mjs CHANGED
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- export { Shape, Connection, Connector, Diagram, Point, Rect } from '@progress/kendo-diagram-common';
5
+ export { Shape, Connection, Connector, Diagram, Point, Rect, Circle, Group, FlowchartShapeType } from '@progress/kendo-diagram-common';
6
6
  export { DiagramModule } from './diagram.module';
7
7
  export { DiagramComponent } from './diagram.component';
8
8
  export * from './directives';
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-diagrams',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1753436119,
13
- version: '19.3.0-develop.16',
12
+ publishDate: 1753975371,
13
+ version: '19.3.0-develop.18',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
15
15
  };
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { events, loadTheme, Diagram } from '@progress/kendo-diagram-common';
6
- export { Connection, Connector, Diagram, Point, Rect, Shape } from '@progress/kendo-diagram-common';
6
+ export { Circle, Connection, Connector, Diagram, FlowchartShapeType, Group, Point, Rect, Shape } from '@progress/kendo-diagram-common';
7
7
  import * as i0 from '@angular/core';
8
8
  import { EventEmitter, Component, HostBinding, Input, Output, NgModule } from '@angular/core';
9
9
  import { validatePackage } from '@progress/kendo-licensing';
@@ -17,8 +17,8 @@ const packageMetadata = {
17
17
  name: '@progress/kendo-angular-diagrams',
18
18
  productName: 'Kendo UI for Angular',
19
19
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
20
- publishDate: 1753436119,
21
- version: '19.3.0-develop.16',
20
+ publishDate: 1753975371,
21
+ version: '19.3.0-develop.18',
22
22
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
23
23
  };
24
24
 
@@ -72,7 +72,7 @@ class DiagramComponent {
72
72
  * Defines the connections that render between the shapes in the Diagram.
73
73
  * Changing this property dynamically reinitializes the Diagram.
74
74
  */
75
- connections;
75
+ connections = [];
76
76
  /**
77
77
  * A set of settings to configure the Diagram behavior when the user attempts to drag, resize, or remove shapes.
78
78
  * Changing the property value dynamically triggers a reinitialization of the Diagram.
@@ -83,7 +83,7 @@ class DiagramComponent {
83
83
  * The layout of a diagram consists of arranging the shapes (sometimes also the connections) in some fashion in order to achieve an aesthetically pleasing experience to the user.
84
84
  * Changing the property value dynamically triggers a reinitialization of the Diagram.
85
85
  */
86
- layout = { type: 'tree' };
86
+ layout;
87
87
  /**
88
88
  * Defines the pannable options. Use this setting to disable Diagram pan or change the key that activates the pan behavior.
89
89
  * @default true
@@ -109,7 +109,7 @@ class DiagramComponent {
109
109
  * Defines the shapes that render in the Diagram.
110
110
  * Changing the property value dynamically triggers a reinitialization of the Diagram.
111
111
  */
112
- shapes;
112
+ shapes = [];
113
113
  /**
114
114
  * Defines the zoom level of the Diagram.
115
115
  *
@@ -219,8 +219,7 @@ class DiagramComponent {
219
219
  zoomMin: this.zoomMin,
220
220
  zoomRate: this.zoomRate,
221
221
  shapeDefaults: this.shapeDefaults,
222
- connectionDefaults: this.connectionDefaults,
223
- layout: this.layout,
222
+ connectionDefaults: this.connectionDefaults
224
223
  };
225
224
  constructor(wrapperElement, renderer, zone) {
226
225
  this.wrapperElement = wrapperElement;
@@ -613,7 +612,6 @@ class DiagramComponent {
613
612
  this.diagram._createOptionElements();
614
613
  this.diagram.zoom(this.diagram.options.zoom);
615
614
  this.diagram.canvas.draw();
616
- this.diagram.bringIntoView(this.diagram.shapes);
617
615
  });
618
616
  }
619
617
  updateOptions(prop) {
package/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- export { DiagramOptions, ShapeConnector, ShapeContent, EditableDefaults, ShapeDefaultsEditable, ShapeEditable, ShapeFillGradientStop, ShapeFillGradient, ShapeFill, ShapeHover, ShapeRotation, Fill, Stroke, DashType, ShapeType, ShapeConnectorHover, ShapeConnectorDefaults, ShapeDefaults, ShapeOptions, Selectable, Pannable, LayoutGrid, DiagramLayout, DiagramEditable, Coordinate, ConnectionOptions, ConnectionDefaults, DiagramDragEvent, DiagramDomEvent, DiagramZoomStartEvent, DiagramZoomEndEvent, DiagramPanEvent, DiagramSelectEvent, DiagramChangeEvent, DiagramItemBoundsChangeEvent, Shape, Connection, Connector, Diagram, Point, Rect, DiagramState, BringIntoViewOptions, SelectionOptions, Direction } from '@progress/kendo-diagram-common';
5
+ export { DiagramOptions, ShapeConnector, ShapeContent, EditableDefaults, ShapeDefaultsEditable, ShapeEditable, ShapeFillGradientStop, ShapeFillGradient, ShapeFill, ShapeHover, ShapeRotation, Fill, Stroke, DashType, ShapeType, ShapeConnectorHover, ShapeConnectorDefaults, ShapeDefaults, ShapeOptions, Selectable, Pannable, LayoutGrid, DiagramLayout, DiagramEditable, Coordinate, ConnectionOptions, ConnectionDefaults, DiagramDragEvent, DiagramDomEvent, DiagramZoomStartEvent, DiagramZoomEndEvent, DiagramPanEvent, DiagramSelectEvent, DiagramChangeEvent, DiagramItemBoundsChangeEvent, Shape, Connection, Connector, Diagram, Point, Rect, DiagramState, BringIntoViewOptions, SelectionOptions, Direction, Circle, Group, FlowchartShapeType } from '@progress/kendo-diagram-common';
6
6
  export { DiagramModule } from './diagram.module';
7
7
  export { DiagramComponent } from './diagram.component';
8
8
  export * from './directives';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-diagrams",
3
- "version": "19.3.0-develop.16",
3
+ "version": "19.3.0-develop.18",
4
4
  "description": "Kendo UI Angular diagrams component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -18,7 +18,7 @@
18
18
  "friendlyName": "Diagrams",
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
- "publishDate": 1753436119,
21
+ "publishDate": 1753975371,
22
22
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
23
23
  }
24
24
  },
@@ -28,19 +28,19 @@
28
28
  "@angular/core": "16 - 20",
29
29
  "@angular/platform-browser": "16 - 20",
30
30
  "@progress/kendo-licensing": "^1.5.0",
31
- "@progress/kendo-angular-common": "19.3.0-develop.16",
32
- "@progress/kendo-angular-buttons": "19.3.0-develop.16",
33
- "@progress/kendo-angular-dialog": "19.3.0-develop.16",
34
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.16",
35
- "@progress/kendo-angular-icons": "19.3.0-develop.16",
36
- "@progress/kendo-angular-inputs": "19.3.0-develop.16",
37
- "@progress/kendo-angular-popup": "19.3.0-develop.16",
31
+ "@progress/kendo-angular-common": "19.3.0-develop.18",
32
+ "@progress/kendo-angular-buttons": "19.3.0-develop.18",
33
+ "@progress/kendo-angular-dialog": "19.3.0-develop.18",
34
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.18",
35
+ "@progress/kendo-angular-icons": "19.3.0-develop.18",
36
+ "@progress/kendo-angular-inputs": "19.3.0-develop.18",
37
+ "@progress/kendo-angular-popup": "19.3.0-develop.18",
38
38
  "rxjs": "^6.5.3 || ^7.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.3.1",
42
- "@progress/kendo-angular-schematics": "19.3.0-develop.16",
43
- "@progress/kendo-diagram-common": "1.1.0"
42
+ "@progress/kendo-angular-schematics": "19.3.0-develop.18",
43
+ "@progress/kendo-diagram-common": "1.2.0-develop.9"
44
44
  },
45
45
  "schematics": "./schematics/collection.json",
46
46
  "module": "fesm2022/progress-kendo-angular-diagrams.mjs",