@progress/kendo-angular-diagrams 19.3.0-develop.7
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/LICENSE.md +11 -0
- package/NOTICE.txt +200 -0
- package/README.md +32 -0
- package/diagram.component.d.ts +375 -0
- package/diagram.module.d.ts +42 -0
- package/directives.d.ts +25 -0
- package/esm2022/diagram.component.mjs +655 -0
- package/esm2022/diagram.module.mjs +51 -0
- package/esm2022/directives.mjs +27 -0
- package/esm2022/index.mjs +8 -0
- package/esm2022/package-metadata.mjs +15 -0
- package/esm2022/progress-kendo-angular-diagrams.mjs +8 -0
- package/esm2022/utils.mjs +29 -0
- package/fesm2022/progress-kendo-angular-diagrams.mjs +766 -0
- package/index.d.ts +8 -0
- package/package-metadata.d.ts +9 -0
- package/package.json +60 -0
- package/schematics/collection.json +12 -0
- package/schematics/ngAdd/index.js +8 -0
- package/schematics/ngAdd/schema.json +24 -0
- package/utils.d.ts +13 -0
|
@@ -0,0 +1,27 @@
|
|
|
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 { DiagramComponent } from "./diagram.component";
|
|
6
|
+
/**
|
|
7
|
+
* Represents the utility array that that contains all `Diagram`-related components and directives.
|
|
8
|
+
*
|
|
9
|
+
* Use `KENDO_DIAGRAM` to import all Diagram components and directives at once.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import { Component } from '@angular/core';
|
|
14
|
+
* import { KENDO_DIAGRAM } from '@progress/kendo-angular-diagrams';
|
|
15
|
+
*
|
|
16
|
+
* @Component({
|
|
17
|
+
* selector: 'my-diagram-app',
|
|
18
|
+
* standalone: true,
|
|
19
|
+
* imports: [KENDO_DIAGRAM],
|
|
20
|
+
* template: `...`
|
|
21
|
+
* })
|
|
22
|
+
* export class DiagramAppComponent {}
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export const KENDO_DIAGRAM = [
|
|
26
|
+
DiagramComponent
|
|
27
|
+
];
|
|
@@ -0,0 +1,8 @@
|
|
|
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 { Shape, Connection, Connector, Diagram, Point, Rect } from '@progress/kendo-diagram-common';
|
|
6
|
+
export { DiagramModule } from './diagram.module';
|
|
7
|
+
export { DiagramComponent } from './diagram.component';
|
|
8
|
+
export * from './directives';
|
|
@@ -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
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export const packageMetadata = {
|
|
9
|
+
name: '@progress/kendo-angular-diagrams',
|
|
10
|
+
productName: 'Kendo UI for Angular',
|
|
11
|
+
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
+
publishDate: 1752220563,
|
|
13
|
+
version: '19.3.0-develop.7',
|
|
14
|
+
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',
|
|
15
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
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
|
+
* Generated bundle index. Do not edit.
|
|
7
|
+
*/
|
|
8
|
+
export * from './index';
|
|
@@ -0,0 +1,29 @@
|
|
|
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
|
+
/** @hidden */
|
|
6
|
+
export const DEFAULT_EDITABLE_SHAPE = {
|
|
7
|
+
drag: true,
|
|
8
|
+
remove: true,
|
|
9
|
+
connect: true,
|
|
10
|
+
};
|
|
11
|
+
/** @hidden */
|
|
12
|
+
export const DEFAULT_EDITABLE_CONNECTION = {
|
|
13
|
+
drag: true,
|
|
14
|
+
remove: true,
|
|
15
|
+
};
|
|
16
|
+
/** @hidden */
|
|
17
|
+
export const CONNECTION_DEFAULTS = { editable: DEFAULT_EDITABLE_CONNECTION };
|
|
18
|
+
/** @hidden */
|
|
19
|
+
export const SHAPE_DEFAULTS = {
|
|
20
|
+
editable: DEFAULT_EDITABLE_SHAPE,
|
|
21
|
+
height: 100,
|
|
22
|
+
width: 100,
|
|
23
|
+
minHeight: 50,
|
|
24
|
+
minWidth: 50,
|
|
25
|
+
x: 0,
|
|
26
|
+
y: 0,
|
|
27
|
+
type: 'rectangle',
|
|
28
|
+
selectable: true,
|
|
29
|
+
};
|