@progress/kendo-angular-diagrams 21.0.1-develop.7 → 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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1763448339,
14
- version: '21.0.1-develop.7',
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: 1763448339,
24
- version: '21.0.1-develop.7',
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.7",
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": 1763448339,
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.7",
33
- "@progress/kendo-angular-buttons": "21.0.1-develop.7",
34
- "@progress/kendo-angular-dialog": "21.0.1-develop.7",
35
- "@progress/kendo-angular-dropdowns": "21.0.1-develop.7",
36
- "@progress/kendo-angular-icons": "21.0.1-develop.7",
37
- "@progress/kendo-angular-inputs": "21.0.1-develop.7",
38
- "@progress/kendo-angular-popup": "21.0.1-develop.7",
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
42
  "@progress/kendo-diagram-common": "2.0.0-develop.1",
43
43
  "tslib": "^2.3.1",
44
- "@progress/kendo-angular-schematics": "21.0.1-develop.7"
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",