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

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.
@@ -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 { AfterViewInit, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
6
- import { type DiagramEditable, type DiagramLayout, type Pannable, type Selectable, type Shape, type DiagramDragEvent, type DiagramDomEvent, type DiagramZoomStartEvent, type DiagramZoomEndEvent, type DiagramSelectEvent, type DiagramPanEvent, type DiagramItemBoundsChangeEvent, type DiagramChangeEvent, type Connection, type Connector, Diagram, type Point, type Rect, type DiagramState, type BringIntoViewOptions, type SelectionOptions, type Direction } from '@progress/kendo-diagram-common';
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
7
  import { PopupService } from '@progress/kendo-angular-popup';
8
8
  import { Group } from '@progress/kendo-drawing';
9
9
  import { ShapeModelFields, ConnectionModelFields, ShapeDefaults, ConnectionDefaults, ShapeOptions, ConnectionOptions } from './models';
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1763386273,
14
- version: '21.0.1-develop.6',
13
+ publishDate: 1763460934,
14
+ version: '21.0.1-develop.8',
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: 1763386273,
24
- version: '21.0.1-develop.6',
23
+ publishDate: 1763460934,
24
+ version: '21.0.1-develop.8',
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
 
package/models.d.ts CHANGED
@@ -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 ShapeOptionsBase {
24
+ export interface ShapeOptions extends Omit<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 ShapeOptionsBase {
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 ConnectionOptionsBase {
38
+ export interface ConnectionOptions extends Omit<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 ConnectionOptionsBase {
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 ConnectionDefaultsBase {
52
+ export interface ConnectionDefaults extends Omit<ConnectionDefaultsBase, ''> {
53
53
  /**
54
54
  * Configures the default tooltip settings for all connections.
55
55
  */
@@ -59,7 +59,7 @@ export interface ConnectionDefaults extends ConnectionDefaultsBase {
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 ShapeDefaultsBase {
62
+ export interface ShapeDefaults extends Omit<ShapeDefaultsBase, ''> {
63
63
  /**
64
64
  * Configures the default tooltip settings for all shapes.
65
65
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-diagrams",
3
- "version": "21.0.1-develop.6",
3
+ "version": "21.0.1-develop.8",
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": 1763386273,
22
+ "publishDate": 1763460934,
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.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",
32
+ "@progress/kendo-angular-common": "21.0.1-develop.8",
33
+ "@progress/kendo-angular-buttons": "21.0.1-develop.8",
34
+ "@progress/kendo-angular-dialog": "21.0.1-develop.8",
35
+ "@progress/kendo-angular-dropdowns": "21.0.1-develop.8",
36
+ "@progress/kendo-angular-icons": "21.0.1-develop.8",
37
+ "@progress/kendo-angular-inputs": "21.0.1-develop.8",
38
+ "@progress/kendo-angular-popup": "21.0.1-develop.8",
39
39
  "rxjs": "^6.5.3 || ^7.0.0"
40
40
  },
41
41
  "dependencies": {
42
+ "@progress/kendo-diagram-common": "2.0.0-develop.1",
42
43
  "tslib": "^2.3.1",
43
- "@progress/kendo-angular-schematics": "21.0.1-develop.6",
44
- "@progress/kendo-diagram-common": "2.0.0-develop.1"
44
+ "@progress/kendo-angular-schematics": "21.0.1-develop.8"
45
45
  },
46
46
  "schematics": "./schematics/collection.json",
47
47
  "module": "fesm2022/progress-kendo-angular-diagrams.mjs",
@@ -1,15 +0,0 @@
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
- }
@@ -1,5 +0,0 @@
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 {};