@syncfusion/ej2-angular-diagrams 30.1.41-ngcc → 30.1.41

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.
Files changed (61) hide show
  1. package/CHANGELOG.md +2052 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
  4. package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
  5. package/esm2020/src/diagram/connectors.directive.mjs +60 -0
  6. package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
  7. package/esm2020/src/diagram/diagram-all.module.mjs +83 -0
  8. package/esm2020/src/diagram/diagram.component.mjs +231 -0
  9. package/esm2020/src/diagram/diagram.module.mjs +106 -0
  10. package/esm2020/src/diagram/layers.directive.mjs +54 -0
  11. package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
  12. package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
  13. package/esm2020/src/diagram/nodes.directive.mjs +62 -0
  14. package/esm2020/src/diagram/ports.directive.mjs +59 -0
  15. package/esm2020/src/index.mjs +21 -0
  16. package/esm2020/src/overview/overview-all.module.mjs +23 -0
  17. package/esm2020/src/overview/overview.component.mjs +60 -0
  18. package/esm2020/src/overview/overview.module.mjs +25 -0
  19. package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
  20. package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
  21. package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
  22. package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
  23. package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
  24. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1153 -0
  25. package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  26. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1153 -0
  27. package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
  28. package/package.json +20 -7
  29. package/public_api.d.ts +1 -1
  30. package/src/diagram/connector-annotation.directive.d.ts +175 -170
  31. package/src/diagram/connector-fixeduserhandle.directive.d.ts +116 -111
  32. package/src/diagram/connectors.directive.d.ts +281 -276
  33. package/src/diagram/customcursor.directive.d.ts +36 -31
  34. package/src/diagram/diagram-all.module.d.ts +31 -25
  35. package/src/diagram/diagram.component.d.ts +106 -103
  36. package/src/diagram/diagram.module.d.ts +20 -5
  37. package/src/diagram/layers.directive.d.ts +60 -55
  38. package/src/diagram/node-annotation.directive.d.ts +156 -151
  39. package/src/diagram/node-fixeduserhandle.directive.d.ts +107 -102
  40. package/src/diagram/nodes.directive.d.ts +343 -338
  41. package/src/diagram/ports.directive.d.ts +147 -142
  42. package/src/index.d.ts +20 -20
  43. package/src/overview/overview-all.module.d.ts +11 -5
  44. package/src/overview/overview.component.d.ts +32 -29
  45. package/src/overview/overview.module.d.ts +11 -5
  46. package/src/symbol-palette/palettes.directive.d.ts +56 -51
  47. package/src/symbol-palette/symbolpalette-all.module.d.ts +11 -5
  48. package/src/symbol-palette/symbolpalette.component.d.ts +35 -32
  49. package/src/symbol-palette/symbolpalette.module.d.ts +12 -5
  50. package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
  51. package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1342
  52. package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
  53. package/@syncfusion/ej2-angular-diagrams.js +0 -1261
  54. package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
  55. package/LICENSE +0 -10
  56. package/dist/ej2-angular-diagrams.umd.js +0 -1787
  57. package/dist/ej2-angular-diagrams.umd.js.map +0 -1
  58. package/dist/ej2-angular-diagrams.umd.min.js +0 -11
  59. package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
  60. package/ej2-angular-diagrams.d.ts +0 -7
  61. package/ej2-angular-diagrams.metadata.json +0 -1
@@ -1,151 +1,156 @@
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-annotations>
9
- * <e-node-annotation>
10
- * </e-node-annotation>
11
- * </e-node-annotations>
12
- * </e-node>
13
- * </e-nodes>
14
- * ```
15
- */
16
- export declare class NodeAnnotationDirective extends ComplexBase<NodeAnnotationDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Sets the type of the annotation
21
- * * Shape - Sets the annotation type as Shape
22
- * * Path - Sets the annotation type as Path
23
- * @default 'Shape'
24
- */
25
- type: any;
26
- /**
27
- * Allows the user to save custom information/data about an annotation
28
- *
29
- * @aspdefaultvalueignore
30
- * @default undefined
31
- */
32
- addInfo: any;
33
- /**
34
- * Defines the type of annotation template
35
- * String - Defines annotation template to be in string
36
- * Template - Defines annotation template to be in html content
37
- * @default 'String'
38
- */
39
- annotationType: any;
40
- /**
41
- * Enables or disables the default behaviors of the label.
42
- * * ReadOnly - Enables/Disables the ReadOnly Constraints
43
- * * InheritReadOnly - Enables/Disables the InheritReadOnly Constraints
44
- * @default 'InheritReadOnly'
45
- * @aspnumberenum
46
- */
47
- constraints: any;
48
- /**
49
- * Sets the textual description of the node/connector
50
- * @default ''
51
- */
52
- content: any;
53
- /**
54
- * Sets the space to be left between an annotation and its parent node/connector
55
- * @default new Margin(20,20,20,20)
56
- */
57
- dragLimit: any;
58
- /**
59
- * Sets the height of the text
60
- * @aspdefaultvalueignore
61
- * @default undefined
62
- */
63
- height: any;
64
- /**
65
- * Sets the horizontal alignment of the text with respect to the parent node/connector
66
- * * Stretch - Stretches the diagram element throughout its immediate parent
67
- * * Left - Aligns the diagram element at the left of its immediate parent
68
- * * Right - Aligns the diagram element at the right of its immediate parent
69
- * * Center - Aligns the diagram element at the center of its immediate parent
70
- * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
71
- * @default 'Center'
72
- */
73
- horizontalAlignment: any;
74
- /**
75
- * Sets the hyperlink of the label
76
- *
77
- * @aspdefaultvalueignore
78
- * @default undefined
79
- */
80
- hyperlink: any;
81
- /**
82
- * Defines the unique id of the annotation
83
- * @default ''
84
- */
85
- id: any;
86
- /**
87
- * Sets the space to be left between an annotation and its parent node/connector
88
- * @default new Margin(0,0,0,0)
89
- */
90
- margin: any;
91
- /**
92
- * Sets the position of the annotation with respect to its parent bounds
93
- * @default { x: 0.5, y: 0.5 }
94
- * @blazortype NodeAnnotationOffset
95
- */
96
- offset: any;
97
- /**
98
- * Sets the rotate angle of the text
99
- * @default 0
100
- */
101
- rotateAngle: any;
102
- /**
103
- * Gets or sets the reference mode for annotation rotation.
104
- * @default 'Parent'
105
- */
106
- rotationReference: any;
107
- /**
108
- * Defines the appearance of the text
109
- * @default new TextStyle()
110
- */
111
- style: any;
112
- /**
113
- * Sets the textual description of the node/connector
114
- * @default 'undefined'
115
- */
116
- template: any;
117
- /**
118
- * This property is used to show tooltip for annotation on mouse over.
119
- * @default new DiagramToolTip();
120
- */
121
- tooltip: any;
122
- /**
123
- * Sets the vertical alignment of the text with respect to the parent node/connector
124
- * * Stretch - Stretches the diagram element throughout its immediate parent
125
- * * Top - Aligns the diagram element at the top of its immediate parent
126
- * * Bottom - Aligns the diagram element at the bottom of its immediate parent
127
- * * Center - Aligns the diagram element at the center of its immediate parent
128
- * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
129
- * @default 'Center'
130
- */
131
- verticalAlignment: any;
132
- /**
133
- * Defines the visibility of the label
134
- * @default true
135
- */
136
- visibility: any;
137
- /**
138
- * Sets the width of the text
139
- * @aspdefaultvalueignore
140
- * @default undefined
141
- */
142
- width: any;
143
- constructor(viewContainerRef: ViewContainerRef);
144
- }
145
- /**
146
- * NodeAnnotation Array Directive
147
- * @private
148
- */
149
- export declare class NodeAnnotationsDirective extends ArrayBase<NodeAnnotationsDirective> {
150
- constructor();
151
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Nodes Directive
6
+ * ```html
7
+ * <e-nodes>
8
+ * <e-node>
9
+ * <e-node-annotations>
10
+ * <e-node-annotation>
11
+ * </e-node-annotation>
12
+ * </e-node-annotations>
13
+ * </e-node>
14
+ * </e-nodes>
15
+ * ```
16
+ */
17
+ export declare class NodeAnnotationDirective extends ComplexBase<NodeAnnotationDirective> {
18
+ private viewContainerRef;
19
+ directivePropList: any;
20
+ /**
21
+ * Sets the type of the annotation
22
+ * * Shape - Sets the annotation type as Shape
23
+ * * Path - Sets the annotation type as Path
24
+ * @default 'Shape'
25
+ */
26
+ type: any;
27
+ /**
28
+ * Allows the user to save custom information/data about an annotation
29
+ *
30
+ * @aspdefaultvalueignore
31
+ * @default undefined
32
+ */
33
+ addInfo: any;
34
+ /**
35
+ * Defines the type of annotation template
36
+ * String - Defines annotation template to be in string
37
+ * Template - Defines annotation template to be in html content
38
+ * @default 'String'
39
+ */
40
+ annotationType: any;
41
+ /**
42
+ * Enables or disables the default behaviors of the label.
43
+ * * ReadOnly - Enables/Disables the ReadOnly Constraints
44
+ * * InheritReadOnly - Enables/Disables the InheritReadOnly Constraints
45
+ * @default 'InheritReadOnly'
46
+ * @aspnumberenum
47
+ */
48
+ constraints: any;
49
+ /**
50
+ * Sets the textual description of the node/connector
51
+ * @default ''
52
+ */
53
+ content: any;
54
+ /**
55
+ * Sets the space to be left between an annotation and its parent node/connector
56
+ * @default new Margin(20,20,20,20)
57
+ */
58
+ dragLimit: any;
59
+ /**
60
+ * Sets the height of the text
61
+ * @aspdefaultvalueignore
62
+ * @default undefined
63
+ */
64
+ height: any;
65
+ /**
66
+ * Sets the horizontal alignment of the text with respect to the parent node/connector
67
+ * * Stretch - Stretches the diagram element throughout its immediate parent
68
+ * * Left - Aligns the diagram element at the left of its immediate parent
69
+ * * Right - Aligns the diagram element at the right of its immediate parent
70
+ * * Center - Aligns the diagram element at the center of its immediate parent
71
+ * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
72
+ * @default 'Center'
73
+ */
74
+ horizontalAlignment: any;
75
+ /**
76
+ * Sets the hyperlink of the label
77
+ *
78
+ * @aspdefaultvalueignore
79
+ * @default undefined
80
+ */
81
+ hyperlink: any;
82
+ /**
83
+ * Defines the unique id of the annotation
84
+ * @default ''
85
+ */
86
+ id: any;
87
+ /**
88
+ * Sets the space to be left between an annotation and its parent node/connector
89
+ * @default new Margin(0,0,0,0)
90
+ */
91
+ margin: any;
92
+ /**
93
+ * Sets the position of the annotation with respect to its parent bounds
94
+ * @default { x: 0.5, y: 0.5 }
95
+ * @blazortype NodeAnnotationOffset
96
+ */
97
+ offset: any;
98
+ /**
99
+ * Sets the rotate angle of the text
100
+ * @default 0
101
+ */
102
+ rotateAngle: any;
103
+ /**
104
+ * Gets or sets the reference mode for annotation rotation.
105
+ * @default 'Parent'
106
+ */
107
+ rotationReference: any;
108
+ /**
109
+ * Defines the appearance of the text
110
+ * @default new TextStyle()
111
+ */
112
+ style: any;
113
+ /**
114
+ * Sets the textual description of the node/connector
115
+ * @default 'undefined'
116
+ */
117
+ template: any;
118
+ /**
119
+ * This property is used to show tooltip for annotation on mouse over.
120
+ * @default new DiagramToolTip();
121
+ */
122
+ tooltip: any;
123
+ /**
124
+ * Sets the vertical alignment of the text with respect to the parent node/connector
125
+ * * Stretch - Stretches the diagram element throughout its immediate parent
126
+ * * Top - Aligns the diagram element at the top of its immediate parent
127
+ * * Bottom - Aligns the diagram element at the bottom of its immediate parent
128
+ * * Center - Aligns the diagram element at the center of its immediate parent
129
+ * * Auto - Aligns the diagram element based on the characteristics of its immediate parent
130
+ * @default 'Center'
131
+ */
132
+ verticalAlignment: any;
133
+ /**
134
+ * Defines the visibility of the label
135
+ * @default true
136
+ */
137
+ visibility: any;
138
+ /**
139
+ * Sets the width of the text
140
+ * @aspdefaultvalueignore
141
+ * @default undefined
142
+ */
143
+ width: any;
144
+ constructor(viewContainerRef: ViewContainerRef);
145
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeAnnotationDirective, never>;
146
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NodeAnnotationDirective, "e-node>e-node-annotations>e-node-annotation", never, { "addInfo": "addInfo"; "annotationType": "annotationType"; "constraints": "constraints"; "content": "content"; "dragLimit": "dragLimit"; "height": "height"; "horizontalAlignment": "horizontalAlignment"; "hyperlink": "hyperlink"; "id": "id"; "margin": "margin"; "offset": "offset"; "rotateAngle": "rotateAngle"; "rotationReference": "rotationReference"; "style": "style"; "template": "template"; "tooltip": "tooltip"; "type": "type"; "verticalAlignment": "verticalAlignment"; "visibility": "visibility"; "width": "width"; }, {}, never>;
147
+ }
148
+ /**
149
+ * NodeAnnotation Array Directive
150
+ * @private
151
+ */
152
+ export declare class NodeAnnotationsDirective extends ArrayBase<NodeAnnotationsDirective> {
153
+ constructor();
154
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeAnnotationsDirective, never>;
155
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NodeAnnotationsDirective, "e-node>e-node-annotations", never, {}, {}, ["children"]>;
156
+ }
@@ -1,102 +1,107 @@
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
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Nodes Directive
6
+ * ```html
7
+ * <e-nodes>
8
+ * <e-node>
9
+ * <e-node-fixeduserhandles>
10
+ * <e-node-fixeduserhandle>
11
+ * </e-node-fixeduserhandle>
12
+ * </e-node-fixeduserhandles>
13
+ * </e-node>
14
+ * </e-nodes>
15
+ * ```
16
+ */
17
+ export declare class NodeFixedUserHandleDirective extends ComplexBase<NodeFixedUserHandleDirective> {
18
+ private viewContainerRef;
19
+ directivePropList: any;
20
+ /**
21
+ * Specifies the cornerRadius for fixed user handle container
22
+ * @default 0
23
+ */
24
+ cornerRadius: any;
25
+ /**
26
+ * Specifies the fill color of the fixed user handle
27
+ * @default 'transparent'
28
+ */
29
+ fill: any;
30
+ /**
31
+ * Specifies the stroke color of the fixed user handle container
32
+ * @default ''
33
+ */
34
+ handleStrokeColor: any;
35
+ /**
36
+ * Specifies the stroke width of the fixed user handle container
37
+ * @default 1
38
+ */
39
+ handleStrokeWidth: any;
40
+ /**
41
+ * Specifies the height of the fixed user handle
42
+ * @default 10
43
+ */
44
+ height: any;
45
+ /**
46
+ * Specifies the stroke color of the fixed user handle
47
+ * @default 'transparent'
48
+ */
49
+ iconStrokeColor: any;
50
+ /**
51
+ * Specifies the stroke width of the fixed user handle
52
+ * @default 0
53
+ */
54
+ iconStrokeWidth: any;
55
+ /**
56
+ * Specifies the unique id of the fixed user handle
57
+ * @default ''
58
+ */
59
+ id: any;
60
+ /**
61
+ * Specifies the space that the fixed user handle has to be moved from its actual position
62
+ * @default new Margin(0,0,0,0)
63
+ */
64
+ margin: any;
65
+ /**
66
+ * Specifies the position of the node fixed user handle
67
+ * @default { x: 0, y: 0 }
68
+ */
69
+ offset: any;
70
+ /**
71
+ * Specifies the space between the fixed user handle and container
72
+ * @default new Margin(0,0,0,0)
73
+ */
74
+ padding: any;
75
+ /**
76
+ * Specifies the shape information for fixed user handle
77
+ * @default ''
78
+ */
79
+ pathData: any;
80
+ /**
81
+ * Used to show tooltip for fixed user handle on mouse over.
82
+ * @default {}
83
+ */
84
+ tooltip: any;
85
+ /**
86
+ * Specifies the visibility of the fixed user handle
87
+ * @default true
88
+ */
89
+ visibility: any;
90
+ /**
91
+ * Specifies the width of the fixed user handle
92
+ * @default 10
93
+ */
94
+ width: any;
95
+ constructor(viewContainerRef: ViewContainerRef);
96
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeFixedUserHandleDirective, never>;
97
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NodeFixedUserHandleDirective, "e-node>e-node-fixeduserhandles>e-node-fixeduserhandle", never, { "cornerRadius": "cornerRadius"; "fill": "fill"; "handleStrokeColor": "handleStrokeColor"; "handleStrokeWidth": "handleStrokeWidth"; "height": "height"; "iconStrokeColor": "iconStrokeColor"; "iconStrokeWidth": "iconStrokeWidth"; "id": "id"; "margin": "margin"; "offset": "offset"; "padding": "padding"; "pathData": "pathData"; "tooltip": "tooltip"; "visibility": "visibility"; "width": "width"; }, {}, never>;
98
+ }
99
+ /**
100
+ * NodeFixedUserHandle Array Directive
101
+ * @private
102
+ */
103
+ export declare class NodeFixedUserHandlesDirective extends ArrayBase<NodeFixedUserHandlesDirective> {
104
+ constructor();
105
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeFixedUserHandlesDirective, never>;
106
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NodeFixedUserHandlesDirective, "e-node>e-node-fixeduserhandles", never, {}, {}, ["children"]>;
107
+ }