@syncfusion/ej2-angular-diagrams 29.2.8-ngcc → 30.1.37-ngcc
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/@syncfusion/ej2-angular-diagrams.es5.js +1341 -1341
- package/@syncfusion/ej2-angular-diagrams.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-diagrams.js +1214 -1214
- package/@syncfusion/ej2-angular-diagrams.js.map +1 -1
- package/{license → LICENSE} +10 -10
- package/dist/ej2-angular-diagrams.umd.js +1343 -1333
- package/dist/ej2-angular-diagrams.umd.js.map +1 -1
- package/dist/ej2-angular-diagrams.umd.min.js +2 -2
- package/dist/ej2-angular-diagrams.umd.min.js.map +1 -1
- package/ej2-angular-diagrams.d.ts +7 -7
- package/ej2-angular-diagrams.metadata.json +1 -1
- package/package.json +4 -4
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/diagram/connector-annotation.directive.d.ts +170 -170
- package/src/diagram/connector-fixeduserhandle.directive.d.ts +111 -111
- package/src/diagram/connectors.directive.d.ts +275 -275
- package/src/diagram/customcursor.directive.d.ts +31 -31
- package/src/diagram/diagram-all.module.d.ts +25 -25
- package/src/diagram/diagram.component.d.ts +103 -103
- package/src/diagram/diagram.module.d.ts +5 -5
- package/src/diagram/layers.directive.d.ts +55 -55
- package/src/diagram/node-annotation.directive.d.ts +151 -151
- package/src/diagram/node-fixeduserhandle.directive.d.ts +102 -102
- package/src/diagram/nodes.directive.d.ts +333 -333
- package/src/diagram/ports.directive.d.ts +142 -142
- package/src/index.d.ts +20 -20
- package/src/overview/overview-all.module.d.ts +5 -5
- package/src/overview/overview.component.d.ts +29 -29
- package/src/overview/overview.module.d.ts +5 -5
- package/src/symbol-palette/palettes.directive.d.ts +51 -51
- package/src/symbol-palette/symbolpalette-all.module.d.ts +5 -5
- package/src/symbol-palette/symbolpalette.component.d.ts +32 -32
- package/src/symbol-palette/symbolpalette.module.d.ts +5 -5
@@ -1,102 +1,102 @@
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
/**
|
4
|
-
* Nodes Directive
|
5
|
-
* ```html
|
6
|
-
* <e-nodes>
|
7
|
-
* <e-node>
|
8
|
-
* <e-node-fixeduserhandles>
|
9
|
-
* <e-node-fixeduserhandle>
|
10
|
-
* </e-node-fixeduserhandle>
|
11
|
-
* </e-node-fixeduserhandles>
|
12
|
-
* </e-node>
|
13
|
-
* </e-nodes>
|
14
|
-
* ```
|
15
|
-
*/
|
16
|
-
export declare class NodeFixedUserHandleDirective extends ComplexBase<NodeFixedUserHandleDirective> {
|
17
|
-
private viewContainerRef;
|
18
|
-
directivePropList: any;
|
19
|
-
/**
|
20
|
-
* Specifies the cornerRadius for fixed user handle container
|
21
|
-
* @default 0
|
22
|
-
*/
|
23
|
-
cornerRadius: any;
|
24
|
-
/**
|
25
|
-
* Specifies the fill color of the fixed user handle
|
26
|
-
* @default 'transparent'
|
27
|
-
*/
|
28
|
-
fill: any;
|
29
|
-
/**
|
30
|
-
* Specifies the stroke color of the fixed user handle container
|
31
|
-
* @default ''
|
32
|
-
*/
|
33
|
-
handleStrokeColor: any;
|
34
|
-
/**
|
35
|
-
* Specifies the stroke width of the fixed user handle container
|
36
|
-
* @default 1
|
37
|
-
*/
|
38
|
-
handleStrokeWidth: any;
|
39
|
-
/**
|
40
|
-
* Specifies the height of the fixed user handle
|
41
|
-
* @default 10
|
42
|
-
*/
|
43
|
-
height: any;
|
44
|
-
/**
|
45
|
-
* Specifies the stroke color of the fixed user handle
|
46
|
-
* @default 'transparent'
|
47
|
-
*/
|
48
|
-
iconStrokeColor: any;
|
49
|
-
/**
|
50
|
-
* Specifies the stroke width of the fixed user handle
|
51
|
-
* @default 0
|
52
|
-
*/
|
53
|
-
iconStrokeWidth: any;
|
54
|
-
/**
|
55
|
-
* Specifies the unique id of the fixed user handle
|
56
|
-
* @default ''
|
57
|
-
*/
|
58
|
-
id: any;
|
59
|
-
/**
|
60
|
-
* Specifies the space that the fixed user handle has to be moved from its actual position
|
61
|
-
* @default new Margin(0,0,0,0)
|
62
|
-
*/
|
63
|
-
margin: any;
|
64
|
-
/**
|
65
|
-
* Specifies the position of the node fixed user handle
|
66
|
-
* @default { x: 0, y: 0 }
|
67
|
-
*/
|
68
|
-
offset: any;
|
69
|
-
/**
|
70
|
-
* Specifies the space between the fixed user handle and container
|
71
|
-
* @default new Margin(0,0,0,0)
|
72
|
-
*/
|
73
|
-
padding: any;
|
74
|
-
/**
|
75
|
-
* Specifies the shape information for fixed user handle
|
76
|
-
* @default ''
|
77
|
-
*/
|
78
|
-
pathData: any;
|
79
|
-
/**
|
80
|
-
* Used to show tooltip for fixed user handle on mouse over.
|
81
|
-
* @default {}
|
82
|
-
*/
|
83
|
-
tooltip: any;
|
84
|
-
/**
|
85
|
-
* Specifies the visibility of the fixed user handle
|
86
|
-
* @default true
|
87
|
-
*/
|
88
|
-
visibility: any;
|
89
|
-
/**
|
90
|
-
* Specifies the width of the fixed user handle
|
91
|
-
* @default 10
|
92
|
-
*/
|
93
|
-
width: any;
|
94
|
-
constructor(viewContainerRef: ViewContainerRef);
|
95
|
-
}
|
96
|
-
/**
|
97
|
-
* NodeFixedUserHandle Array Directive
|
98
|
-
* @private
|
99
|
-
*/
|
100
|
-
export declare class NodeFixedUserHandlesDirective extends ArrayBase<NodeFixedUserHandlesDirective> {
|
101
|
-
constructor();
|
102
|
-
}
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
/**
|
4
|
+
* Nodes Directive
|
5
|
+
* ```html
|
6
|
+
* <e-nodes>
|
7
|
+
* <e-node>
|
8
|
+
* <e-node-fixeduserhandles>
|
9
|
+
* <e-node-fixeduserhandle>
|
10
|
+
* </e-node-fixeduserhandle>
|
11
|
+
* </e-node-fixeduserhandles>
|
12
|
+
* </e-node>
|
13
|
+
* </e-nodes>
|
14
|
+
* ```
|
15
|
+
*/
|
16
|
+
export declare class NodeFixedUserHandleDirective extends ComplexBase<NodeFixedUserHandleDirective> {
|
17
|
+
private viewContainerRef;
|
18
|
+
directivePropList: any;
|
19
|
+
/**
|
20
|
+
* Specifies the cornerRadius for fixed user handle container
|
21
|
+
* @default 0
|
22
|
+
*/
|
23
|
+
cornerRadius: any;
|
24
|
+
/**
|
25
|
+
* Specifies the fill color of the fixed user handle
|
26
|
+
* @default 'transparent'
|
27
|
+
*/
|
28
|
+
fill: any;
|
29
|
+
/**
|
30
|
+
* Specifies the stroke color of the fixed user handle container
|
31
|
+
* @default ''
|
32
|
+
*/
|
33
|
+
handleStrokeColor: any;
|
34
|
+
/**
|
35
|
+
* Specifies the stroke width of the fixed user handle container
|
36
|
+
* @default 1
|
37
|
+
*/
|
38
|
+
handleStrokeWidth: any;
|
39
|
+
/**
|
40
|
+
* Specifies the height of the fixed user handle
|
41
|
+
* @default 10
|
42
|
+
*/
|
43
|
+
height: any;
|
44
|
+
/**
|
45
|
+
* Specifies the stroke color of the fixed user handle
|
46
|
+
* @default 'transparent'
|
47
|
+
*/
|
48
|
+
iconStrokeColor: any;
|
49
|
+
/**
|
50
|
+
* Specifies the stroke width of the fixed user handle
|
51
|
+
* @default 0
|
52
|
+
*/
|
53
|
+
iconStrokeWidth: any;
|
54
|
+
/**
|
55
|
+
* Specifies the unique id of the fixed user handle
|
56
|
+
* @default ''
|
57
|
+
*/
|
58
|
+
id: any;
|
59
|
+
/**
|
60
|
+
* Specifies the space that the fixed user handle has to be moved from its actual position
|
61
|
+
* @default new Margin(0,0,0,0)
|
62
|
+
*/
|
63
|
+
margin: any;
|
64
|
+
/**
|
65
|
+
* Specifies the position of the node fixed user handle
|
66
|
+
* @default { x: 0, y: 0 }
|
67
|
+
*/
|
68
|
+
offset: any;
|
69
|
+
/**
|
70
|
+
* Specifies the space between the fixed user handle and container
|
71
|
+
* @default new Margin(0,0,0,0)
|
72
|
+
*/
|
73
|
+
padding: any;
|
74
|
+
/**
|
75
|
+
* Specifies the shape information for fixed user handle
|
76
|
+
* @default ''
|
77
|
+
*/
|
78
|
+
pathData: any;
|
79
|
+
/**
|
80
|
+
* Used to show tooltip for fixed user handle on mouse over.
|
81
|
+
* @default {}
|
82
|
+
*/
|
83
|
+
tooltip: any;
|
84
|
+
/**
|
85
|
+
* Specifies the visibility of the fixed user handle
|
86
|
+
* @default true
|
87
|
+
*/
|
88
|
+
visibility: any;
|
89
|
+
/**
|
90
|
+
* Specifies the width of the fixed user handle
|
91
|
+
* @default 10
|
92
|
+
*/
|
93
|
+
width: any;
|
94
|
+
constructor(viewContainerRef: ViewContainerRef);
|
95
|
+
}
|
96
|
+
/**
|
97
|
+
* NodeFixedUserHandle Array Directive
|
98
|
+
* @private
|
99
|
+
*/
|
100
|
+
export declare class NodeFixedUserHandlesDirective extends ArrayBase<NodeFixedUserHandlesDirective> {
|
101
|
+
constructor();
|
102
|
+
}
|