@progress/kendo-angular-diagrams 21.0.0-develop.2 → 21.0.0-develop.20

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/models.d.ts ADDED
@@ -0,0 +1,128 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * Defines the field mapping configuration for shapes data binding.
7
+ * Maps source object properties to `Diagram` shape properties.
8
+ */
9
+ export interface ShapeModelFields {
10
+ /**
11
+ * The field that contains the unique identifier of the shape.
12
+ */
13
+ id?: string;
14
+ /**
15
+ * The field that contains the connectors configuration.
16
+ */
17
+ connectors?: string;
18
+ /**
19
+ * The field that contains the connector defaults configuration.
20
+ */
21
+ connectorDefaults?: string;
22
+ /**
23
+ * The field that contains the content configuration.
24
+ */
25
+ content?: string;
26
+ /**
27
+ * The field that contains the editable configuration.
28
+ */
29
+ editable?: string;
30
+ /**
31
+ * The field that contains the fill configuration.
32
+ */
33
+ fill?: string;
34
+ /**
35
+ * The field that contains the height value.
36
+ */
37
+ height?: string;
38
+ /**
39
+ * The field that contains the hover configuration.
40
+ */
41
+ hover?: string;
42
+ /**
43
+ * The field that contains the minimum height value.
44
+ */
45
+ minHeight?: string;
46
+ /**
47
+ * The field that contains the minimum width value.
48
+ */
49
+ minWidth?: string;
50
+ /**
51
+ * The field that contains the path configuration.
52
+ */
53
+ path?: string;
54
+ /**
55
+ * The field that contains the rotation configuration.
56
+ */
57
+ rotation?: string;
58
+ /**
59
+ * The field that contains the selectable configuration.
60
+ */
61
+ selectable?: string;
62
+ /**
63
+ * The field that contains the source configuration.
64
+ */
65
+ source?: string;
66
+ /**
67
+ * The field that contains the stroke configuration.
68
+ */
69
+ stroke?: string;
70
+ /**
71
+ * The field that contains the type configuration.
72
+ */
73
+ type?: string;
74
+ /**
75
+ * The field that contains the visual configuration.
76
+ */
77
+ visual?: string;
78
+ /**
79
+ * The field that contains the width value.
80
+ */
81
+ width?: string;
82
+ /**
83
+ * The field that contains the x coordinate.
84
+ */
85
+ x?: string;
86
+ /**
87
+ * The field that contains the y coordinate.
88
+ */
89
+ y?: string;
90
+ /**
91
+ * The field that contains the corner radius value.
92
+ */
93
+ cornerRadius?: string;
94
+ /**
95
+ * The field that contains the center configuration.
96
+ */
97
+ center?: string;
98
+ /**
99
+ * The field that contains the radius value.
100
+ */
101
+ radius?: string;
102
+ /**
103
+ * The field that contains the data item reference.
104
+ */
105
+ dataItem?: string;
106
+ }
107
+ /**
108
+ * Defines the field mapping configuration for connections data binding.
109
+ * Maps source object properties to `Diagram` connection properties.
110
+ */
111
+ export interface ConnectionModelFields {
112
+ /**
113
+ * The field that contains the source shape identifier.
114
+ */
115
+ from?: string;
116
+ /**
117
+ * The field that contains the target shape identifier.
118
+ */
119
+ to?: string;
120
+ /**
121
+ * The field that contains the connection points.
122
+ */
123
+ points?: string;
124
+ /**
125
+ * The field that contains the data item reference.
126
+ */
127
+ dataItem?: string;
128
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-diagrams",
3
- "version": "21.0.0-develop.2",
3
+ "version": "21.0.0-develop.20",
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": 1761753129,
22
+ "publishDate": 1762335779,
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,19 +29,19 @@
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.0-develop.2",
33
- "@progress/kendo-angular-buttons": "21.0.0-develop.2",
34
- "@progress/kendo-angular-dialog": "21.0.0-develop.2",
35
- "@progress/kendo-angular-dropdowns": "21.0.0-develop.2",
36
- "@progress/kendo-angular-icons": "21.0.0-develop.2",
37
- "@progress/kendo-angular-inputs": "21.0.0-develop.2",
38
- "@progress/kendo-angular-popup": "21.0.0-develop.2",
32
+ "@progress/kendo-angular-common": "21.0.0-develop.20",
33
+ "@progress/kendo-angular-buttons": "21.0.0-develop.20",
34
+ "@progress/kendo-angular-dialog": "21.0.0-develop.20",
35
+ "@progress/kendo-angular-dropdowns": "21.0.0-develop.20",
36
+ "@progress/kendo-angular-icons": "21.0.0-develop.20",
37
+ "@progress/kendo-angular-inputs": "21.0.0-develop.20",
38
+ "@progress/kendo-angular-popup": "21.0.0-develop.20",
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.0-develop.2",
44
- "@progress/kendo-diagram-common": "1.3.0"
43
+ "@progress/kendo-angular-schematics": "21.0.0-develop.20",
44
+ "@progress/kendo-diagram-common": "1.5.0"
45
45
  },
46
46
  "schematics": "./schematics/collection.json",
47
47
  "module": "fesm2022/progress-kendo-angular-diagrams.mjs",