@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.
Files changed (36) hide show
  1. package/@syncfusion/ej2-angular-diagrams.es5.js +1341 -1341
  2. package/@syncfusion/ej2-angular-diagrams.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-diagrams.js +1214 -1214
  4. package/@syncfusion/ej2-angular-diagrams.js.map +1 -1
  5. package/{license → LICENSE} +10 -10
  6. package/dist/ej2-angular-diagrams.umd.js +1343 -1333
  7. package/dist/ej2-angular-diagrams.umd.js.map +1 -1
  8. package/dist/ej2-angular-diagrams.umd.min.js +2 -2
  9. package/dist/ej2-angular-diagrams.umd.min.js.map +1 -1
  10. package/ej2-angular-diagrams.d.ts +7 -7
  11. package/ej2-angular-diagrams.metadata.json +1 -1
  12. package/package.json +4 -4
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +4 -4
  17. package/src/diagram/connector-annotation.directive.d.ts +170 -170
  18. package/src/diagram/connector-fixeduserhandle.directive.d.ts +111 -111
  19. package/src/diagram/connectors.directive.d.ts +275 -275
  20. package/src/diagram/customcursor.directive.d.ts +31 -31
  21. package/src/diagram/diagram-all.module.d.ts +25 -25
  22. package/src/diagram/diagram.component.d.ts +103 -103
  23. package/src/diagram/diagram.module.d.ts +5 -5
  24. package/src/diagram/layers.directive.d.ts +55 -55
  25. package/src/diagram/node-annotation.directive.d.ts +151 -151
  26. package/src/diagram/node-fixeduserhandle.directive.d.ts +102 -102
  27. package/src/diagram/nodes.directive.d.ts +333 -333
  28. package/src/diagram/ports.directive.d.ts +142 -142
  29. package/src/index.d.ts +20 -20
  30. package/src/overview/overview-all.module.d.ts +5 -5
  31. package/src/overview/overview.component.d.ts +29 -29
  32. package/src/overview/overview.module.d.ts +5 -5
  33. package/src/symbol-palette/palettes.directive.d.ts +51 -51
  34. package/src/symbol-palette/symbolpalette-all.module.d.ts +5 -5
  35. package/src/symbol-palette/symbolpalette.component.d.ts +32 -32
  36. package/src/symbol-palette/symbolpalette.module.d.ts +5 -5
@@ -1,103 +1,103 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Diagram } from '@syncfusion/ej2-diagrams';
4
- import { LayersDirective } from './layers.directive';
5
- import { CustomCursorsDirective } from './customcursor.directive';
6
- import { ConnectorsDirective } from './connectors.directive';
7
- import { NodesDirective } from './nodes.directive';
8
- export declare const inputs: string[];
9
- export declare const outputs: string[];
10
- export declare const twoWays: string[];
11
- /**
12
- * Diagram Component
13
- * ```html
14
- * <ej-diagram></ej-diagram>
15
- * ```
16
- */
17
- export declare class DiagramComponent extends Diagram implements IComponentBase {
18
- private ngEle;
19
- private srenderer;
20
- private viewContainerRef;
21
- private injector;
22
- context: any;
23
- tagObjects: any;
24
- animationComplete: any;
25
- click: any;
26
- collectionChange: any;
27
- commandExecute: any;
28
- connectionChange: any;
29
- contextMenuBeforeItemRender: any;
30
- contextMenuClick: any;
31
- contextMenuOpen: any;
32
- created: any;
33
- dataLoaded: any;
34
- doubleClick: any;
35
- dragEnter: any;
36
- dragLeave: any;
37
- dragOver: any;
38
- drop: any;
39
- elementDraw: any;
40
- expandStateChange: any;
41
- fixedUserHandleClick: any;
42
- historyChange: any;
43
- historyStateChange: any;
44
- keyDown: any;
45
- keyUp: any;
46
- layoutUpdated: any;
47
- load: any;
48
- loaded: any;
49
- mouseEnter: any;
50
- mouseLeave: any;
51
- mouseOver: any;
52
- mouseWheel: any;
53
- onFixedUserHandleMouseDown: any;
54
- onFixedUserHandleMouseEnter: any;
55
- onFixedUserHandleMouseLeave: any;
56
- onFixedUserHandleMouseUp: any;
57
- onImageLoad: any;
58
- onUserHandleMouseDown: any;
59
- onUserHandleMouseEnter: any;
60
- onUserHandleMouseLeave: any;
61
- onUserHandleMouseUp: any;
62
- positionChange: any;
63
- propertyChange: any;
64
- rotateChange: any;
65
- scrollChange: any;
66
- segmentChange: any;
67
- segmentCollectionChange: any;
68
- selectionChange: any;
69
- sizeChange: any;
70
- sourcePointChange: any;
71
- targetPointChange: any;
72
- textEdit: any;
73
- childLayers: QueryList<LayersDirective>;
74
- childCustomCursor: QueryList<CustomCursorsDirective>;
75
- childConnectors: QueryList<ConnectorsDirective>;
76
- childNodes: QueryList<NodesDirective>;
77
- tags: string[];
78
- /**
79
- * Customizes the annotation template
80
- * @default undefined
81
- * @asptype string
82
- */
83
- annotationTemplate: any;
84
- /**
85
- * Customizes the node template
86
- * @default undefined
87
- * @asptype string
88
- */
89
- nodeTemplate: any;
90
- /**
91
- * This property represents the template content of a user handle. The user can define any HTML element as a template.
92
- * @default undefined
93
- * @asptype string
94
- */
95
- userHandleTemplate: any;
96
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
97
- ngOnInit(): void;
98
- ngAfterViewInit(): void;
99
- ngOnDestroy(): void;
100
- ngAfterContentChecked(): void;
101
- registerEvents: (eventList: string[]) => void;
102
- addTwoWay: (propList: string[]) => void;
103
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Diagram } from '@syncfusion/ej2-diagrams';
4
+ import { LayersDirective } from './layers.directive';
5
+ import { CustomCursorsDirective } from './customcursor.directive';
6
+ import { ConnectorsDirective } from './connectors.directive';
7
+ import { NodesDirective } from './nodes.directive';
8
+ export declare const inputs: string[];
9
+ export declare const outputs: string[];
10
+ export declare const twoWays: string[];
11
+ /**
12
+ * Diagram Component
13
+ * ```html
14
+ * <ej-diagram></ej-diagram>
15
+ * ```
16
+ */
17
+ export declare class DiagramComponent extends Diagram implements IComponentBase {
18
+ private ngEle;
19
+ private srenderer;
20
+ private viewContainerRef;
21
+ private injector;
22
+ context: any;
23
+ tagObjects: any;
24
+ animationComplete: any;
25
+ click: any;
26
+ collectionChange: any;
27
+ commandExecute: any;
28
+ connectionChange: any;
29
+ contextMenuBeforeItemRender: any;
30
+ contextMenuClick: any;
31
+ contextMenuOpen: any;
32
+ created: any;
33
+ dataLoaded: any;
34
+ doubleClick: any;
35
+ dragEnter: any;
36
+ dragLeave: any;
37
+ dragOver: any;
38
+ drop: any;
39
+ elementDraw: any;
40
+ expandStateChange: any;
41
+ fixedUserHandleClick: any;
42
+ historyChange: any;
43
+ historyStateChange: any;
44
+ keyDown: any;
45
+ keyUp: any;
46
+ layoutUpdated: any;
47
+ load: any;
48
+ loaded: any;
49
+ mouseEnter: any;
50
+ mouseLeave: any;
51
+ mouseOver: any;
52
+ mouseWheel: any;
53
+ onFixedUserHandleMouseDown: any;
54
+ onFixedUserHandleMouseEnter: any;
55
+ onFixedUserHandleMouseLeave: any;
56
+ onFixedUserHandleMouseUp: any;
57
+ onImageLoad: any;
58
+ onUserHandleMouseDown: any;
59
+ onUserHandleMouseEnter: any;
60
+ onUserHandleMouseLeave: any;
61
+ onUserHandleMouseUp: any;
62
+ positionChange: any;
63
+ propertyChange: any;
64
+ rotateChange: any;
65
+ scrollChange: any;
66
+ segmentChange: any;
67
+ segmentCollectionChange: any;
68
+ selectionChange: any;
69
+ sizeChange: any;
70
+ sourcePointChange: any;
71
+ targetPointChange: any;
72
+ textEdit: any;
73
+ childLayers: QueryList<LayersDirective>;
74
+ childCustomCursor: QueryList<CustomCursorsDirective>;
75
+ childConnectors: QueryList<ConnectorsDirective>;
76
+ childNodes: QueryList<NodesDirective>;
77
+ tags: string[];
78
+ /**
79
+ * Customizes the annotation template
80
+ * @default undefined
81
+ * @asptype string
82
+ */
83
+ annotationTemplate: any;
84
+ /**
85
+ * Customizes the node template
86
+ * @default undefined
87
+ * @asptype string
88
+ */
89
+ nodeTemplate: any;
90
+ /**
91
+ * This property represents the template content of a user handle. The user can define any HTML element as a template.
92
+ * @default undefined
93
+ * @asptype string
94
+ */
95
+ userHandleTemplate: any;
96
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
97
+ ngOnInit(): void;
98
+ ngAfterViewInit(): void;
99
+ ngOnDestroy(): void;
100
+ ngAfterContentChecked(): void;
101
+ registerEvents: (eventList: string[]) => void;
102
+ addTwoWay: (propList: string[]) => void;
103
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Diagram component.
3
- */
4
- export declare class DiagramModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Diagram component.
3
+ */
4
+ export declare class DiagramModule {
5
+ }
@@ -1,55 +1,55 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Layers Directive
5
- * ```html
6
- * <e-layers>
7
- * <e-layer></e-layer>
8
- * </e-layers>
9
- * ```
10
- */
11
- export declare class LayerDirective extends ComplexBase<LayerDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- /**
15
- * Defines the description of the layer
16
- *
17
- * @aspdefaultvalueignore
18
- * @default undefined
19
- */
20
- addInfo: any;
21
- /**
22
- * Defines the id of a diagram layer
23
- * @default ''
24
- */
25
- id: any;
26
- /**
27
- * Enables or disables editing objects in a particular layer
28
- * @default false
29
- */
30
- lock: any;
31
- /**
32
- * Defines the collection of the objects that are added to a particular layer
33
- * @aspdefaultvalueignore
34
- * @default undefined
35
- */
36
- objects: any;
37
- /**
38
- * Enables or disables the visibility of objects in a particular layer
39
- * @default true
40
- */
41
- visible: any;
42
- /**
43
- * Defines the zOrder of the layer
44
- * @default -1
45
- */
46
- zIndex: any;
47
- constructor(viewContainerRef: ViewContainerRef);
48
- }
49
- /**
50
- * Layer Array Directive
51
- * @private
52
- */
53
- export declare class LayersDirective extends ArrayBase<LayersDirective> {
54
- constructor();
55
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * Layers Directive
5
+ * ```html
6
+ * <e-layers>
7
+ * <e-layer></e-layer>
8
+ * </e-layers>
9
+ * ```
10
+ */
11
+ export declare class LayerDirective extends ComplexBase<LayerDirective> {
12
+ private viewContainerRef;
13
+ directivePropList: any;
14
+ /**
15
+ * Defines the description of the layer
16
+ *
17
+ * @aspdefaultvalueignore
18
+ * @default undefined
19
+ */
20
+ addInfo: any;
21
+ /**
22
+ * Defines the id of a diagram layer
23
+ * @default ''
24
+ */
25
+ id: any;
26
+ /**
27
+ * Enables or disables editing objects in a particular layer
28
+ * @default false
29
+ */
30
+ lock: any;
31
+ /**
32
+ * Defines the collection of the objects that are added to a particular layer
33
+ * @aspdefaultvalueignore
34
+ * @default undefined
35
+ */
36
+ objects: any;
37
+ /**
38
+ * Enables or disables the visibility of objects in a particular layer
39
+ * @default true
40
+ */
41
+ visible: any;
42
+ /**
43
+ * Defines the zOrder of the layer
44
+ * @default -1
45
+ */
46
+ zIndex: any;
47
+ constructor(viewContainerRef: ViewContainerRef);
48
+ }
49
+ /**
50
+ * Layer Array Directive
51
+ * @private
52
+ */
53
+ export declare class LayersDirective extends ArrayBase<LayersDirective> {
54
+ constructor();
55
+ }
@@ -1,151 +1,151 @@
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
+ /**
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
+ }