@progress/kendo-angular-diagrams 21.0.1-develop.2 → 21.0.1-develop.3

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.
@@ -121,6 +121,14 @@ export declare class DiagramComponent implements AfterViewInit, OnChanges, OnDes
121
121
  * @default 0.1
122
122
  */
123
123
  zoomRate?: number;
124
+ /**
125
+ * Returns the actual shape instances created by the `Diagram`.
126
+ */
127
+ get shapeInstances(): Shape[];
128
+ /**
129
+ * Returns the actual connection instances created by the `Diagram`.
130
+ */
131
+ get connectionInstances(): Connection[];
124
132
  /**
125
133
  * Fires when a shape or connection is created or removed.
126
134
  */
@@ -126,6 +126,18 @@ export class DiagramComponent {
126
126
  * @default 0.1
127
127
  */
128
128
  zoomRate = 0.1;
129
+ /**
130
+ * Returns the actual shape instances created by the `Diagram`.
131
+ */
132
+ get shapeInstances() {
133
+ return this.diagramWidget?.shapes;
134
+ }
135
+ /**
136
+ * Returns the actual connection instances created by the `Diagram`.
137
+ */
138
+ get connectionInstances() {
139
+ return this.diagramWidget?.connections;
140
+ }
129
141
  /**
130
142
  * Fires when a shape or connection is created or removed.
131
143
  */
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1762955423,
14
- version: '21.0.1-develop.2',
13
+ publishDate: 1762962828,
14
+ version: '21.0.1-develop.3',
15
15
  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',
16
16
  };
@@ -20,8 +20,8 @@ const packageMetadata = {
20
20
  productName: 'Kendo UI for Angular',
21
21
  productCode: 'KENDOUIANGULAR',
22
22
  productCodes: ['KENDOUIANGULAR'],
23
- publishDate: 1762955423,
24
- version: '21.0.1-develop.2',
23
+ publishDate: 1762962828,
24
+ version: '21.0.1-develop.3',
25
25
  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',
26
26
  };
27
27
 
@@ -246,6 +246,18 @@ class DiagramComponent {
246
246
  * @default 0.1
247
247
  */
248
248
  zoomRate = 0.1;
249
+ /**
250
+ * Returns the actual shape instances created by the `Diagram`.
251
+ */
252
+ get shapeInstances() {
253
+ return this.diagramWidget?.shapes;
254
+ }
255
+ /**
256
+ * Returns the actual connection instances created by the `Diagram`.
257
+ */
258
+ get connectionInstances() {
259
+ return this.diagramWidget?.connections;
260
+ }
249
261
  /**
250
262
  * Fires when a shape or connection is created or removed.
251
263
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-diagrams",
3
- "version": "21.0.1-develop.2",
3
+ "version": "21.0.1-develop.3",
4
4
  "description": "Kendo UI Angular diagrams component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1762955423,
22
+ "publishDate": 1762962828,
23
23
  "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"
24
24
  }
25
25
  },
@@ -29,18 +29,18 @@
29
29
  "@angular/core": "18 - 20",
30
30
  "@angular/platform-browser": "18 - 20",
31
31
  "@progress/kendo-licensing": "^1.7.0",
32
- "@progress/kendo-angular-common": "21.0.1-develop.2",
33
- "@progress/kendo-angular-buttons": "21.0.1-develop.2",
34
- "@progress/kendo-angular-dialog": "21.0.1-develop.2",
35
- "@progress/kendo-angular-dropdowns": "21.0.1-develop.2",
36
- "@progress/kendo-angular-icons": "21.0.1-develop.2",
37
- "@progress/kendo-angular-inputs": "21.0.1-develop.2",
38
- "@progress/kendo-angular-popup": "21.0.1-develop.2",
32
+ "@progress/kendo-angular-common": "21.0.1-develop.3",
33
+ "@progress/kendo-angular-buttons": "21.0.1-develop.3",
34
+ "@progress/kendo-angular-dialog": "21.0.1-develop.3",
35
+ "@progress/kendo-angular-dropdowns": "21.0.1-develop.3",
36
+ "@progress/kendo-angular-icons": "21.0.1-develop.3",
37
+ "@progress/kendo-angular-inputs": "21.0.1-develop.3",
38
+ "@progress/kendo-angular-popup": "21.0.1-develop.3",
39
39
  "rxjs": "^6.5.3 || ^7.0.0"
40
40
  },
41
41
  "dependencies": {
42
42
  "tslib": "^2.3.1",
43
- "@progress/kendo-angular-schematics": "21.0.1-develop.2",
43
+ "@progress/kendo-angular-schematics": "21.0.1-develop.3",
44
44
  "@progress/kendo-diagram-common": "1.5.1"
45
45
  },
46
46
  "schematics": "./schematics/collection.json",