@progress/kendo-angular-diagrams 22.1.0-develop.8 → 23.0.0-develop.1
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/diagram.component.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
6
6
|
import { DiagramEditable, DiagramLayout, Pannable, Selectable, Shape, DiagramDragEvent, DiagramDomEvent, DiagramZoomStartEvent, DiagramZoomEndEvent, DiagramSelectEvent, DiagramPanEvent, DiagramItemBoundsChangeEvent, DiagramChangeEvent, Connection, Connector, Diagram, Point, Rect, DiagramState, BringIntoViewOptions, SelectionOptions, Direction } from '@progress/kendo-diagram-common';
|
|
7
|
+
import { LicenseMessage } from '@progress/kendo-licensing';
|
|
7
8
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
8
9
|
import { Group } from '@progress/kendo-drawing';
|
|
9
10
|
import { ShapeModelFields, ConnectionModelFields, ShapeDefaults, ConnectionDefaults, ShapeOptions, ConnectionOptions, DiagramNavigationOptions } from './models';
|
|
@@ -11,7 +12,7 @@ import { ShapeTooltipTemplateDirective } from './shape-tooltip-template.directiv
|
|
|
11
12
|
import { ConnectionTooltipTemplateDirective } from './connection-tooltip-template.directive';
|
|
12
13
|
import * as i0 from "@angular/core";
|
|
13
14
|
/**
|
|
14
|
-
* Represents the [Kendo UI Diagram component for Angular](
|
|
15
|
+
* Represents the [Kendo UI Diagram component for Angular](https://www.telerik.com/kendo-angular-ui/components/diagrams).
|
|
15
16
|
*
|
|
16
17
|
* The Diagram component is used to create organizational charts, and other types of diagrams.
|
|
17
18
|
*
|
|
@@ -33,14 +34,14 @@ export declare class DiagramComponent implements AfterViewInit, OnChanges, OnDes
|
|
|
33
34
|
*/
|
|
34
35
|
connectionDefaults?: ConnectionDefaults;
|
|
35
36
|
/**
|
|
36
|
-
* Defines the connections that render between the shapes in the `Diagram` (see [Connections article](
|
|
37
|
+
* Defines the connections that render between the shapes in the `Diagram` (see [Connections article](https://www.telerik.com/kendo-angular-ui/components/diagrams/connections)).
|
|
37
38
|
* Accepts either an array of `ConnectionOptions` or an array of any objects
|
|
38
39
|
* that will be mapped using the `connectionModelFields` configuration.
|
|
39
40
|
*
|
|
40
41
|
*/
|
|
41
42
|
connections?: any[];
|
|
42
43
|
/**
|
|
43
|
-
* Defines the field mapping configuration for connections data binding ([see example](
|
|
44
|
+
* Defines the field mapping configuration for connections data binding ([see example](https://www.telerik.com/kendo-angular-ui/components/diagrams/data-binding#field-mapping)).
|
|
44
45
|
* Maps source object properties to `Diagram` connection properties.
|
|
45
46
|
* Only used when `connections` is an array of custom objects instead of `ConnectionOptions`.
|
|
46
47
|
*/
|
|
@@ -53,7 +54,7 @@ export declare class DiagramComponent implements AfterViewInit, OnChanges, OnDes
|
|
|
53
54
|
*/
|
|
54
55
|
editable?: boolean | DiagramEditable;
|
|
55
56
|
/**
|
|
56
|
-
* Defines the layout configuration for arranging shapes and connections in the `Diagram` (see [Layout article](
|
|
57
|
+
* Defines the layout configuration for arranging shapes and connections in the `Diagram` (see [Layout article](https://www.telerik.com/kendo-angular-ui/components/diagrams/layouts)).
|
|
57
58
|
*
|
|
58
59
|
*/
|
|
59
60
|
layout?: DiagramLayout;
|
|
@@ -80,14 +81,14 @@ export declare class DiagramComponent implements AfterViewInit, OnChanges, OnDes
|
|
|
80
81
|
*/
|
|
81
82
|
shapeDefaults?: ShapeDefaults;
|
|
82
83
|
/**
|
|
83
|
-
* Defines the shapes that render in the `Diagram` (see [Shapes article](
|
|
84
|
+
* Defines the shapes that render in the `Diagram` (see [Shapes article](https://www.telerik.com/kendo-angular-ui/components/diagrams/shapes)).
|
|
84
85
|
* Accepts either an array of `ShapeOptions` or an array of any objects
|
|
85
86
|
* that will be mapped using the `shapeModelFields` configuration.
|
|
86
87
|
*
|
|
87
88
|
*/
|
|
88
89
|
shapes?: any[];
|
|
89
90
|
/**
|
|
90
|
-
* Defines the field mapping configuration for shapes data binding ([see example](
|
|
91
|
+
* Defines the field mapping configuration for shapes data binding ([see example](https://www.telerik.com/kendo-angular-ui/components/diagrams/data-binding#field-mapping)).
|
|
91
92
|
* Maps source object properties to `Diagram` shape properties.
|
|
92
93
|
* Only used when `shapes` is an array of custom objects instead of `ShapeOptions`.
|
|
93
94
|
*/
|
|
@@ -205,7 +206,7 @@ export declare class DiagramComponent implements AfterViewInit, OnChanges, OnDes
|
|
|
205
206
|
/**
|
|
206
207
|
* @hidden
|
|
207
208
|
*/
|
|
208
|
-
licenseMessage?:
|
|
209
|
+
licenseMessage?: LicenseMessage;
|
|
209
210
|
/**
|
|
210
211
|
* @hidden
|
|
211
212
|
*/
|
|
@@ -21,7 +21,7 @@ const packageMetadata = {
|
|
|
21
21
|
productCode: 'KENDOUIANGULAR',
|
|
22
22
|
productCodes: ['KENDOUIANGULAR'],
|
|
23
23
|
publishDate: 0,
|
|
24
|
-
version: '
|
|
24
|
+
version: '23.0.0-develop.1',
|
|
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
|
|
|
@@ -113,7 +113,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
113
113
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
114
114
|
|
|
115
115
|
/**
|
|
116
|
-
* Represents the [Kendo UI Diagram component for Angular](
|
|
116
|
+
* Represents the [Kendo UI Diagram component for Angular](https://www.telerik.com/kendo-angular-ui/components/diagrams).
|
|
117
117
|
*
|
|
118
118
|
* The Diagram component is used to create organizational charts, and other types of diagrams.
|
|
119
119
|
*
|
|
@@ -135,14 +135,14 @@ class DiagramComponent {
|
|
|
135
135
|
*/
|
|
136
136
|
connectionDefaults;
|
|
137
137
|
/**
|
|
138
|
-
* Defines the connections that render between the shapes in the `Diagram` (see [Connections article](
|
|
138
|
+
* Defines the connections that render between the shapes in the `Diagram` (see [Connections article](https://www.telerik.com/kendo-angular-ui/components/diagrams/connections)).
|
|
139
139
|
* Accepts either an array of `ConnectionOptions` or an array of any objects
|
|
140
140
|
* that will be mapped using the `connectionModelFields` configuration.
|
|
141
141
|
*
|
|
142
142
|
*/
|
|
143
143
|
connections = [];
|
|
144
144
|
/**
|
|
145
|
-
* Defines the field mapping configuration for connections data binding ([see example](
|
|
145
|
+
* Defines the field mapping configuration for connections data binding ([see example](https://www.telerik.com/kendo-angular-ui/components/diagrams/data-binding#field-mapping)).
|
|
146
146
|
* Maps source object properties to `Diagram` connection properties.
|
|
147
147
|
* Only used when `connections` is an array of custom objects instead of `ConnectionOptions`.
|
|
148
148
|
*/
|
|
@@ -155,7 +155,7 @@ class DiagramComponent {
|
|
|
155
155
|
*/
|
|
156
156
|
editable = true;
|
|
157
157
|
/**
|
|
158
|
-
* Defines the layout configuration for arranging shapes and connections in the `Diagram` (see [Layout article](
|
|
158
|
+
* Defines the layout configuration for arranging shapes and connections in the `Diagram` (see [Layout article](https://www.telerik.com/kendo-angular-ui/components/diagrams/layouts)).
|
|
159
159
|
*
|
|
160
160
|
*/
|
|
161
161
|
layout;
|
|
@@ -182,14 +182,14 @@ class DiagramComponent {
|
|
|
182
182
|
*/
|
|
183
183
|
shapeDefaults;
|
|
184
184
|
/**
|
|
185
|
-
* Defines the shapes that render in the `Diagram` (see [Shapes article](
|
|
185
|
+
* Defines the shapes that render in the `Diagram` (see [Shapes article](https://www.telerik.com/kendo-angular-ui/components/diagrams/shapes)).
|
|
186
186
|
* Accepts either an array of `ShapeOptions` or an array of any objects
|
|
187
187
|
* that will be mapped using the `shapeModelFields` configuration.
|
|
188
188
|
*
|
|
189
189
|
*/
|
|
190
190
|
shapes = [];
|
|
191
191
|
/**
|
|
192
|
-
* Defines the field mapping configuration for shapes data binding ([see example](
|
|
192
|
+
* Defines the field mapping configuration for shapes data binding ([see example](https://www.telerik.com/kendo-angular-ui/components/diagrams/data-binding#field-mapping)).
|
|
193
193
|
* Maps source object properties to `Diagram` shape properties.
|
|
194
194
|
* Only used when `shapes` is an array of custom objects instead of `ShapeOptions`.
|
|
195
195
|
*/
|
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2026 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 { ShapeDefaultsBase, ConnectionDefaultsBase, ShapeOptionsBase, ConnectionOptionsBase, ShapeConnector, ShapeContent, EditableDefaults, ShapeDefaultsEditable, ShapeEditable, ShapeFillGradientStop, ShapeFillGradient, ShapeFill, ShapeHover, ShapeRotation, Fill, Stroke, DashType, ShapeType, ShapeConnectorHover, ShapeConnectorDefaults, Selectable, Pannable, LayoutGrid, DiagramLayout, DiagramEditable, Coordinate, DiagramDragEvent, DiagramDomEvent, DiagramZoomStartEvent, DiagramZoomEndEvent, DiagramPanEvent, DiagramSelectEvent, DiagramChangeEvent, DiagramItemBoundsChangeEvent, Shape, Connection, Connector, Point, Rect, DiagramState, BringIntoViewOptions, SelectionOptions, Direction, Circle, Group, FlowchartShapeType, ArrowMarker, CircleMarker, Collate, DataInputOutput, DataStorage, Database, Decision, Delay, DirectAccessStorage, Display, Document, MultipleDocuments, Extract, Image, InternalStorage, Layout, Line, LogicalOr, ManualInputOutput, ManualOperation, Merge, MultiLineTextBlock, OffPageConnector, OnPageConnector, Path, Polyline, PredefinedProcess, Preparation, Process, Rectangle, Sort, SummingJunction, Terminator, TextBlock, MarkerType, ConnectionCap, ConnectionContent, convertToDiagramModel, DiagramMapping, ConvertResult, ConnectionMapping, ShapeMapping, MapSpec, FromPathOrFn } from '@progress/kendo-diagram-common';
|
|
5
|
+
export { ShapeDefaultsBase, ConnectionDefaultsBase, ShapeOptionsBase, ConnectionOptionsBase, ConnectionDefaultsEditable, ConnectionPointsEditable, ShapeConnector, ShapeContent, EditableDefaults, ShapeDefaultsEditable, ShapeEditable, ShapeFillGradientStop, ShapeFillGradient, ShapeFill, ShapeHover, ShapeRotation, Fill, Stroke, DashType, ShapeType, ShapeConnectorHover, ShapeConnectorDefaults, Selectable, Pannable, LayoutGrid, DiagramLayout, DiagramEditable, Coordinate, DiagramDragEvent, DiagramDomEvent, DiagramZoomStartEvent, DiagramZoomEndEvent, DiagramPanEvent, DiagramSelectEvent, DiagramChangeEvent, DiagramItemBoundsChangeEvent, Shape, Connection, Connector, Point, Rect, DiagramState, BringIntoViewOptions, SelectionOptions, Direction, Circle, Group, FlowchartShapeType, ArrowMarker, CircleMarker, Collate, DataInputOutput, DataStorage, Database, Decision, Delay, DirectAccessStorage, Display, Document, MultipleDocuments, Extract, Image, InternalStorage, Layout, Line, LogicalOr, ManualInputOutput, ManualOperation, Merge, MultiLineTextBlock, OffPageConnector, OnPageConnector, Path, Polyline, PredefinedProcess, Preparation, Process, Rectangle, Sort, SummingJunction, Terminator, TextBlock, MarkerType, ConnectionCap, ConnectionContent, convertToDiagramModel, DiagramMapping, ConvertResult, ConnectionMapping, ShapeMapping, MapSpec, FromPathOrFn } from '@progress/kendo-diagram-common';
|
|
6
6
|
export { DiagramModule } from './diagram.module';
|
|
7
7
|
export { DiagramComponent } from './diagram.component';
|
|
8
8
|
export { ShapeTooltipTemplateDirective } from './shape-tooltip-template.directive';
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770287092,
|
|
11
|
+
"version": "23.0.0-develop.1",
|
|
12
12
|
"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"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-diagrams",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.1",
|
|
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":
|
|
22
|
+
"publishDate": 1770287092,
|
|
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
|
},
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"@angular/common": "19 - 21",
|
|
29
29
|
"@angular/core": "19 - 21",
|
|
30
30
|
"@angular/platform-browser": "19 - 21",
|
|
31
|
-
"@progress/kendo-licensing": "^1.
|
|
32
|
-
"@progress/kendo-angular-common": "
|
|
33
|
-
"@progress/kendo-angular-buttons": "
|
|
34
|
-
"@progress/kendo-angular-dialog": "
|
|
35
|
-
"@progress/kendo-angular-dropdowns": "
|
|
36
|
-
"@progress/kendo-angular-icons": "
|
|
37
|
-
"@progress/kendo-angular-inputs": "
|
|
38
|
-
"@progress/kendo-angular-popup": "
|
|
31
|
+
"@progress/kendo-licensing": "^1.10.0",
|
|
32
|
+
"@progress/kendo-angular-common": "23.0.0-develop.1",
|
|
33
|
+
"@progress/kendo-angular-buttons": "23.0.0-develop.1",
|
|
34
|
+
"@progress/kendo-angular-dialog": "23.0.0-develop.1",
|
|
35
|
+
"@progress/kendo-angular-dropdowns": "23.0.0-develop.1",
|
|
36
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.1",
|
|
37
|
+
"@progress/kendo-angular-inputs": "23.0.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.1",
|
|
39
39
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@progress/kendo-diagram-common": "^2.
|
|
42
|
+
"@progress/kendo-diagram-common": "^2.3.1",
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "
|
|
44
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.1"
|
|
45
45
|
},
|
|
46
46
|
"schematics": "./schematics/collection.json",
|
|
47
47
|
"module": "fesm2022/progress-kendo-angular-diagrams.mjs",
|