@progress/kendo-angular-diagrams 21.0.1-develop.5 → 21.0.1-develop.6

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.
@@ -0,0 +1,15 @@
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
+ import { DiagramOptions } from "@progress/kendo-diagram-common";
6
+ import { ConnectionDefaults, ConnectionOptions, ShapeDefaults, ShapeOptions } from "./models";
7
+ /**
8
+ * @hidden
9
+ */
10
+ export interface DiagramOptionsAng extends DiagramOptions {
11
+ shapes?: ShapeOptions[];
12
+ connections?: ConnectionOptions[];
13
+ shapeDefaults?: ShapeDefaults;
14
+ connectionDefaults?: ConnectionDefaults;
15
+ }
@@ -121,14 +121,6 @@ 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[];
132
124
  /**
133
125
  * Fires when a shape or connection is created or removed.
134
126
  */
@@ -0,0 +1,5 @@
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
+ export {};
@@ -126,18 +126,6 @@ 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
- }
141
129
  /**
142
130
  * Fires when a shape or connection is created or removed.
143
131
  */
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1763029309,
14
- version: '21.0.1-develop.5',
13
+ publishDate: 1763386273,
14
+ version: '21.0.1-develop.6',
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: 1763029309,
24
- version: '21.0.1-develop.5',
23
+ publishDate: 1763386273,
24
+ version: '21.0.1-develop.6',
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,18 +246,6 @@ 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
- }
261
249
  /**
262
250
  * Fires when a shape or connection is created or removed.
263
251
  */
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 { 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, 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/models.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
- import { type ShapeDefaults as ShapeDefaultsCommon, type ConnectionDefaults as ConnectionDefaultsCommon, type ConnectionOptions as ConnectionOptionsCommon, type ShapeOptions as ShapeOptionsCommon, type DiagramOptions as DiagramOptionsCommon } from '@progress/kendo-diagram-common';
5
+ import { ShapeDefaultsBase, ConnectionDefaultsBase, ConnectionOptionsBase, ShapeOptionsBase } from '@progress/kendo-diagram-common';
6
6
  /**
7
7
  * Defines the tooltip configuration for shapes and connections.
8
8
  * Controls the visibility, content, and styling of tooltips.
@@ -21,7 +21,7 @@ export interface TooltipOptions {
21
21
  * Defines the configuration options for diagram shapes.
22
22
  * Extends the base shape options and adds tooltip support.
23
23
  */
24
- export interface ShapeOptions extends ShapeOptionsCommon {
24
+ export interface ShapeOptions extends ShapeOptionsBase {
25
25
  /**
26
26
  * Configures the tooltip that displays when you hover over the shape.
27
27
  */
@@ -35,7 +35,7 @@ export interface ShapeOptions extends ShapeOptionsCommon {
35
35
  * Defines the configuration options for diagram connections.
36
36
  * Extends the base connection options and adds tooltip support.
37
37
  */
38
- export interface ConnectionOptions extends ConnectionOptionsCommon {
38
+ export interface ConnectionOptions extends ConnectionOptionsBase {
39
39
  /**
40
40
  * Configures the tooltip that displays when you hover over the connection.
41
41
  */
@@ -49,7 +49,7 @@ export interface ConnectionOptions extends ConnectionOptionsCommon {
49
49
  * Defines the default configuration options for all connections in the `Diagram`.
50
50
  * These settings apply to connections unless overridden by individual connection options.
51
51
  */
52
- export interface ConnectionDefaults extends ConnectionDefaultsCommon {
52
+ export interface ConnectionDefaults extends ConnectionDefaultsBase {
53
53
  /**
54
54
  * Configures the default tooltip settings for all connections.
55
55
  */
@@ -59,22 +59,12 @@ export interface ConnectionDefaults extends ConnectionDefaultsCommon {
59
59
  * Defines the default configuration options for all shapes in the `Diagram`.
60
60
  * These settings apply to shapes unless overridden by individual shape options.
61
61
  */
62
- export interface ShapeDefaults extends ShapeDefaultsCommon {
62
+ export interface ShapeDefaults extends ShapeDefaultsBase {
63
63
  /**
64
64
  * Configures the default tooltip settings for all shapes.
65
65
  */
66
66
  tooltip?: TooltipOptions;
67
67
  }
68
- /**
69
- * @hidden
70
- *
71
- */
72
- export interface DiagramOptions extends DiagramOptionsCommon {
73
- shapeDefaults?: ShapeDefaults;
74
- connectionDefaults?: ConnectionDefaults;
75
- shapes: Array<ShapeOptions>;
76
- connections: Array<ConnectionOptions>;
77
- }
78
68
  /**
79
69
  * Defines the field mapping configuration for shapes data binding.
80
70
  * Maps source object properties to `Diagram` shape properties.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-diagrams",
3
- "version": "21.0.1-develop.5",
3
+ "version": "21.0.1-develop.6",
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": 1763029309,
22
+ "publishDate": 1763386273,
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.1-develop.5",
33
- "@progress/kendo-angular-buttons": "21.0.1-develop.5",
34
- "@progress/kendo-angular-dialog": "21.0.1-develop.5",
35
- "@progress/kendo-angular-dropdowns": "21.0.1-develop.5",
36
- "@progress/kendo-angular-icons": "21.0.1-develop.5",
37
- "@progress/kendo-angular-inputs": "21.0.1-develop.5",
38
- "@progress/kendo-angular-popup": "21.0.1-develop.5",
32
+ "@progress/kendo-angular-common": "21.0.1-develop.6",
33
+ "@progress/kendo-angular-buttons": "21.0.1-develop.6",
34
+ "@progress/kendo-angular-dialog": "21.0.1-develop.6",
35
+ "@progress/kendo-angular-dropdowns": "21.0.1-develop.6",
36
+ "@progress/kendo-angular-icons": "21.0.1-develop.6",
37
+ "@progress/kendo-angular-inputs": "21.0.1-develop.6",
38
+ "@progress/kendo-angular-popup": "21.0.1-develop.6",
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.5",
44
- "@progress/kendo-diagram-common": "1.5.1"
43
+ "@progress/kendo-angular-schematics": "21.0.1-develop.6",
44
+ "@progress/kendo-diagram-common": "2.0.0-develop.1"
45
45
  },
46
46
  "schematics": "./schematics/collection.json",
47
47
  "module": "fesm2022/progress-kendo-angular-diagrams.mjs",
package/utils.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
- import { type EditableDefaults, type ShapeDefaultsEditable } from "@progress/kendo-diagram-common";
5
+ import { EditableDefaults, ShapeDefaultsEditable } from "@progress/kendo-diagram-common";
6
6
  import { ConnectionDefaults, ShapeDefaults } from "./models";
7
7
  /** @hidden */
8
8
  export declare const DEFAULT_EDITABLE_SHAPE: ShapeDefaultsEditable;