@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,276 +1,276 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Connectors Directive
5
- * ```html
6
- * <e-connectors>
7
- * <e-connector></e-connector>
8
- * </e-connectors>
9
- * ```
10
- */
11
- export declare class ConnectorDirective extends ComplexBase<ConnectorDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- childFixedUserHandles: any;
15
- childAnnotations: any;
16
- tags: string[];
17
- /**
18
- * Defines the type of the connector
19
- * * Straight - Sets the segment type as Straight
20
- * * Orthogonal - Sets the segment type as Orthogonal
21
- * * Bezier - Sets the segment type as Bezier
22
- * @default 'Straight'
23
- * @asptype Syncfusion.EJ2.Diagrams.Segments
24
- */
25
- type: any;
26
- /**
27
- * Allows the user to save custom information/data about a node/connector
28
- * @aspdefaultvalueignore
29
- * @default undefined
30
- */
31
- addInfo: any;
32
- /**
33
- * Specifies a value indicating whether to overlap the connector over with the source and target node.
34
- * If the LineRouting is enabled in the diagram, then allowNodeOverlap property will not work.
35
- * @default false
36
- */
37
- allowNodeOverlap: any;
38
- /**
39
- *
40
- */
41
- annotations: any;
42
- /**
43
- * Sets the bezier settings of editing the segments.
44
- * @default null
45
- */
46
- bezierSettings: any;
47
- /**
48
- * Defines the bridgeSpace of connector
49
- * @default 10
50
- */
51
- bridgeSpace: any;
52
- /**
53
- * Sets the connector padding value
54
- * @default 0
55
- */
56
- connectionPadding: any;
57
- /**
58
- * Sets the distance between source node and connector
59
- * @default 13
60
- */
61
- connectorSpacing: any;
62
- /**
63
- * Defines the constraints of connector
64
- * * None - Interaction of the connectors cannot be done.
65
- * * Select - Selects the connector.
66
- * * Delete - Delete the connector.
67
- * * Drag - Drag the connector.
68
- * * DragSourceEnd - Drag the source end of the connector.
69
- * * DragTargetEnd - Drag the target end of the connector.
70
- * * DragSegmentThump - Drag the segment thumb of the connector.
71
- * * AllowDrop - Allow to drop a node.
72
- * * Bridging - Creates bridge on intersection of two connectors.
73
- * * InheritBridging - Creates bridge on intersection of two connectors.
74
- * * PointerEvents - Sets the pointer events.
75
- * * Tooltip - Displays a tooltip for the connectors.
76
- * * InheritToolTip - Displays a tooltip for the connectors.
77
- * * Interaction - Features of the connector used for interaction.
78
- * * ReadOnly - Enables ReadOnly
79
- * @default 'Default'
80
- * @aspnumberenum
81
- */
82
- constraints: any;
83
- /**
84
- * Sets the corner radius of the connector
85
- * @default 0
86
- */
87
- cornerRadius: any;
88
- /**
89
- * Defines the size of a drop symbol
90
- * @aspdefaultvalueignore
91
- * @default undefined
92
- */
93
- dragSize: any;
94
- /**
95
- * Defines whether the node should be automatically positioned or not. Applicable, if layout option is enabled.
96
- * @default false
97
- */
98
- excludeFromLayout: any;
99
- /**
100
- * Specifies the collection of the fixed user handle
101
- * @aspdefaultvalueignore
102
- * @default undefined
103
- */
104
- fixedUserHandles: any;
105
- /**
106
- * Flip the element in Horizontal/Vertical directions
107
- * @aspdefaultvalueignore
108
- * @default None
109
- */
110
- flip: any;
111
- /**
112
- * Allows you to flip only the node or along with port and label
113
- * @aspdefaultvalueignore
114
- * @default All
115
- */
116
- flipMode: any;
117
- /**
118
- * Sets the connector padding value
119
- * @default 10
120
- */
121
- hitPadding: any;
122
- /**
123
- * Represents the unique id of nodes/connectors
124
- * @default ''
125
- */
126
- id: any;
127
- /**
128
- * Defines the space to be left between the node and its immediate parent
129
- * @default {}
130
- */
131
- margin: any;
132
- /**
133
- * Sets the maximum segment thumb for the connector
134
- * @default null
135
- */
136
- maxSegmentThumb: any;
137
- /**
138
- * Defines the behavior of connection ports
139
- * @aspdefaultvalueignore
140
- * @default undefined
141
- */
142
- ports: any;
143
- /**
144
- * Defines the size of the symbol preview
145
- * @aspdefaultvalueignore
146
- * @default undefined
147
- */
148
- previewSize: any;
149
- /**
150
- * Defines the shape for the connector segmentThumb
151
- * Rhombus - Sets the segmentThumb shape as Rhombus
152
- * Square - Sets the segmentThumb shape as Square
153
- * Rectangle - Sets the segmentThumb shape as Rectangle
154
- * Ellipse - Sets the segmentThumb shape as Ellipse
155
- * Arrow - Sets the segmentThumb shape as Arrow
156
- * Diamond - Sets the segmentThumb shape as Diamond
157
- * OpenArrow - Sets the segmentThumb shape as OpenArrow
158
- * Circle - Sets the segmentThumb shape as Circle
159
- * Fletch - Sets the segmentThumb shape as Fletch
160
- * OpenFetch - Sets the segmentThumb shape as OpenFetch
161
- * IndentedArrow - Sets the segmentThumb shape as Indented Arrow
162
- * OutdentedArrow - Sets the segmentThumb shape as Outdented Arrow
163
- * DoubleArrow - Sets the segmentThumb shape as DoubleArrow
164
- * @default 'Circle'
165
- */
166
- segmentThumbShape: any;
167
- /**
168
- * Specifies the size of the segment thumb for individual connector. When not set, it defaults to matching the underlying path data
169
- * @default 10
170
- */
171
- segmentThumbSize: any;
172
- /**
173
- * Defines the segments
174
- * @default []
175
- * @asptype object
176
- */
177
- segments: any;
178
- /**
179
- * Defines the shape of the connector
180
- * @default 'Bpmn'
181
- * @asptype object
182
- */
183
- shape: any;
184
- /**
185
- * Defines the source decorator of the connector
186
- * @default new Decorator()
187
- */
188
- sourceDecorator: any;
189
- /**
190
- * Sets the source node/connector object of the connector
191
- * @default null
192
- */
193
- sourceID: any;
194
- /**
195
- * Sets the source padding of the connector
196
- * @default 0
197
- */
198
- sourcePadding: any;
199
- /**
200
- * Sets the beginning point of the connector
201
- * @default new Point(0,0)
202
- */
203
- sourcePoint: any;
204
- /**
205
- * Sets the unique id of the source port of the connector
206
- * @default ''
207
- */
208
- sourcePortID: any;
209
- /**
210
- * Defines the appearance of the connection path
211
- * @default ''
212
- */
213
- style: any;
214
- /**
215
- * Defines the symbol info of a connector
216
- * @aspdefaultvalueignore
217
- * @default undefined
218
- * @ignoreapilink
219
- */
220
- symbolInfo: any;
221
- /**
222
- * Defines the target decorator of the connector
223
- * @default new Decorator()
224
- */
225
- targetDecorator: any;
226
- /**
227
- * Sets the target node/connector object of the connector
228
- * @default null
229
- */
230
- targetID: any;
231
- /**
232
- * Sets the target padding of the connector
233
- * @default 0
234
- */
235
- targetPadding: any;
236
- /**
237
- * Sets the end point of the connector
238
- * @default new Point(0,0)
239
- */
240
- targetPoint: any;
241
- /**
242
- * Sets the unique id of the target port of the connector
243
- * @default ''
244
- */
245
- targetPortID: any;
246
- /**
247
- * defines the tooltip for the connector
248
- * @default new DiagramToolTip();
249
- */
250
- tooltip: any;
251
- /**
252
- * Sets the visibility of the node/connector
253
- * @default true
254
- */
255
- visible: any;
256
- /**
257
- * Defines the UI of the connector
258
- * @default null
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * Connectors Directive
5
+ * ```html
6
+ * <e-connectors>
7
+ * <e-connector></e-connector>
8
+ * </e-connectors>
9
+ * ```
10
+ */
11
+ export declare class ConnectorDirective extends ComplexBase<ConnectorDirective> {
12
+ private viewContainerRef;
13
+ directivePropList: any;
14
+ childFixedUserHandles: any;
15
+ childAnnotations: any;
16
+ tags: string[];
17
+ /**
18
+ * Defines the type of the connector
19
+ * * Straight - Sets the segment type as Straight
20
+ * * Orthogonal - Sets the segment type as Orthogonal
21
+ * * Bezier - Sets the segment type as Bezier
22
+ * @default 'Straight'
23
+ * @asptype Syncfusion.EJ2.Diagrams.Segments
24
+ */
25
+ type: any;
26
+ /**
27
+ * Allows the user to save custom information/data about a node/connector
28
+ * @aspdefaultvalueignore
29
+ * @default undefined
30
+ */
31
+ addInfo: any;
32
+ /**
33
+ * Specifies a value indicating whether to overlap the connector over with the source and target node.
34
+ * If the LineRouting is enabled in the diagram, then allowNodeOverlap property will not work.
35
+ * @default false
36
+ */
37
+ allowNodeOverlap: any;
38
+ /**
39
+ *
40
+ */
41
+ annotations: any;
42
+ /**
43
+ * Sets the bezier settings of editing the segments.
44
+ * @default null
45
+ */
46
+ bezierSettings: any;
47
+ /**
48
+ * Defines the bridgeSpace of connector
49
+ * @default 10
50
+ */
51
+ bridgeSpace: any;
52
+ /**
53
+ * Sets the connector padding value
54
+ * @default 0
55
+ */
56
+ connectionPadding: any;
57
+ /**
58
+ * Sets the distance between source node and connector
59
+ * @default 13
60
+ */
61
+ connectorSpacing: any;
62
+ /**
63
+ * Defines the constraints of connector
64
+ * * None - Interaction of the connectors cannot be done.
65
+ * * Select - Selects the connector.
66
+ * * Delete - Delete the connector.
67
+ * * Drag - Drag the connector.
68
+ * * DragSourceEnd - Drag the source end of the connector.
69
+ * * DragTargetEnd - Drag the target end of the connector.
70
+ * * DragSegmentThump - Drag the segment thumb of the connector.
71
+ * * AllowDrop - Allow to drop a node.
72
+ * * Bridging - Creates bridge on intersection of two connectors.
73
+ * * InheritBridging - Creates bridge on intersection of two connectors.
74
+ * * PointerEvents - Sets the pointer events.
75
+ * * Tooltip - Displays a tooltip for the connectors.
76
+ * * InheritToolTip - Displays a tooltip for the connectors.
77
+ * * Interaction - Features of the connector used for interaction.
78
+ * * ReadOnly - Enables ReadOnly
79
+ * @default 'Default'
80
+ * @aspnumberenum
81
+ */
82
+ constraints: any;
83
+ /**
84
+ * Sets the corner radius of the connector
85
+ * @default 0
86
+ */
87
+ cornerRadius: any;
88
+ /**
89
+ * Defines the size of a drop symbol
90
+ * @aspdefaultvalueignore
91
+ * @default undefined
92
+ */
93
+ dragSize: any;
94
+ /**
95
+ * Defines whether the node should be automatically positioned or not. Applicable, if layout option is enabled.
96
+ * @default false
97
+ */
98
+ excludeFromLayout: any;
99
+ /**
100
+ * Specifies the collection of the fixed user handle
101
+ * @aspdefaultvalueignore
102
+ * @default undefined
103
+ */
104
+ fixedUserHandles: any;
105
+ /**
106
+ * Flip the element in Horizontal/Vertical directions
107
+ * @aspdefaultvalueignore
108
+ * @default None
109
+ */
110
+ flip: any;
111
+ /**
112
+ * Allows you to flip only the node or along with port and label
113
+ * @aspdefaultvalueignore
114
+ * @default All
115
+ */
116
+ flipMode: any;
117
+ /**
118
+ * Sets the connector padding value
119
+ * @default 10
120
+ */
121
+ hitPadding: any;
122
+ /**
123
+ * Represents the unique id of nodes/connectors
124
+ * @default ''
125
+ */
126
+ id: any;
127
+ /**
128
+ * Defines the space to be left between the node and its immediate parent
129
+ * @default {}
130
+ */
131
+ margin: any;
132
+ /**
133
+ * Sets the maximum segment thumb for the connector
134
+ * @default null
135
+ */
136
+ maxSegmentThumb: any;
137
+ /**
138
+ * Defines the behavior of connection ports
139
+ * @aspdefaultvalueignore
140
+ * @default undefined
141
+ */
142
+ ports: any;
143
+ /**
144
+ * Defines the size of the symbol preview
145
+ * @aspdefaultvalueignore
146
+ * @default undefined
147
+ */
148
+ previewSize: any;
149
+ /**
150
+ * Defines the shape for the connector segmentThumb
151
+ * Rhombus - Sets the segmentThumb shape as Rhombus
152
+ * Square - Sets the segmentThumb shape as Square
153
+ * Rectangle - Sets the segmentThumb shape as Rectangle
154
+ * Ellipse - Sets the segmentThumb shape as Ellipse
155
+ * Arrow - Sets the segmentThumb shape as Arrow
156
+ * Diamond - Sets the segmentThumb shape as Diamond
157
+ * OpenArrow - Sets the segmentThumb shape as OpenArrow
158
+ * Circle - Sets the segmentThumb shape as Circle
159
+ * Fletch - Sets the segmentThumb shape as Fletch
160
+ * OpenFetch - Sets the segmentThumb shape as OpenFetch
161
+ * IndentedArrow - Sets the segmentThumb shape as Indented Arrow
162
+ * OutdentedArrow - Sets the segmentThumb shape as Outdented Arrow
163
+ * DoubleArrow - Sets the segmentThumb shape as DoubleArrow
164
+ * @default 'Circle'
165
+ */
166
+ segmentThumbShape: any;
167
+ /**
168
+ * Specifies the size of the segment thumb for individual connector. When not set, it defaults to matching the underlying path data
169
+ * @default 10
170
+ */
171
+ segmentThumbSize: any;
172
+ /**
173
+ * Defines the segments
174
+ * @default []
175
+ * @asptype object
176
+ */
177
+ segments: any;
178
+ /**
179
+ * Defines the shape of the connector
180
+ * @default 'Bpmn'
181
+ * @asptype object
182
+ */
183
+ shape: any;
184
+ /**
185
+ * Defines the source decorator of the connector
186
+ * @default new Decorator()
187
+ */
188
+ sourceDecorator: any;
189
+ /**
190
+ * Sets the source node/connector object of the connector
191
+ * @default null
192
+ */
193
+ sourceID: any;
194
+ /**
195
+ * Sets the source padding of the connector
196
+ * @default 0
197
+ */
198
+ sourcePadding: any;
199
+ /**
200
+ * Sets the beginning point of the connector
201
+ * @default new Point(0,0)
202
+ */
203
+ sourcePoint: any;
204
+ /**
205
+ * Sets the unique id of the source port of the connector
206
+ * @default ''
207
+ */
208
+ sourcePortID: any;
209
+ /**
210
+ * Defines the appearance of the connection path
211
+ * @default ''
212
+ */
213
+ style: any;
214
+ /**
215
+ * Defines the symbol info of a connector
216
+ * @aspdefaultvalueignore
217
+ * @default undefined
218
+ * @ignoreapilink
219
+ */
220
+ symbolInfo: any;
221
+ /**
222
+ * Defines the target decorator of the connector
223
+ * @default new Decorator()
224
+ */
225
+ targetDecorator: any;
226
+ /**
227
+ * Sets the target node/connector object of the connector
228
+ * @default null
229
+ */
230
+ targetID: any;
231
+ /**
232
+ * Sets the target padding of the connector
233
+ * @default 0
234
+ */
235
+ targetPadding: any;
236
+ /**
237
+ * Sets the end point of the connector
238
+ * @default new Point(0,0)
239
+ */
240
+ targetPoint: any;
241
+ /**
242
+ * Sets the unique id of the target port of the connector
243
+ * @default ''
244
+ */
245
+ targetPortID: any;
246
+ /**
247
+ * defines the tooltip for the connector
248
+ * @default new DiagramToolTip();
249
+ */
250
+ tooltip: any;
251
+ /**
252
+ * Sets the visibility of the node/connector
253
+ * @default true
254
+ */
255
+ visible: any;
256
+ /**
257
+ * Defines the UI of the connector
258
+ * @default null
259
259
 
260
- */
261
- wrapper: any;
262
- /**
263
- * Defines the visual order of the node/connector in DOM
264
- * @aspdefaultvalue 5e-324
265
- * @default Number.MIN_VALUE
266
- */
267
- zIndex: any;
268
- constructor(viewContainerRef: ViewContainerRef);
269
- }
270
- /**
271
- * Connector Array Directive
272
- * @private
273
- */
274
- export declare class ConnectorsDirective extends ArrayBase<ConnectorsDirective> {
275
- constructor();
276
- }
260
+ */
261
+ wrapper: any;
262
+ /**
263
+ * Defines the visual order of the node/connector in DOM
264
+ * @aspdefaultvalue 5e-324
265
+ * @default Number.MIN_VALUE
266
+ */
267
+ zIndex: any;
268
+ constructor(viewContainerRef: ViewContainerRef);
269
+ }
270
+ /**
271
+ * Connector Array Directive
272
+ * @private
273
+ */
274
+ export declare class ConnectorsDirective extends ArrayBase<ConnectorsDirective> {
275
+ constructor();
276
+ }
@@ -1,31 +1,31 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Cursor Maps Directive
5
- * ```html
6
- * <e-cusrsormaps>
7
- * <e-cursormap></e-cursormap>
8
- * </e-cursormaps>
9
- * ```
10
- */
11
- export declare class CustomCursorDirective extends ComplexBase<CustomCursorDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- /**
15
- * Defines the property of a Data Map Items
16
- */
17
- action: any;
18
- /**
19
- * Defines the Fields for the Data Map Items
20
- * @default ''
21
- */
22
- cursor: any;
23
- constructor(viewContainerRef: ViewContainerRef);
24
- }
25
- /**
26
- * CustomCursor Array Directive
27
- * @private
28
- */
29
- export declare class CustomCursorsDirective extends ArrayBase<CustomCursorsDirective> {
30
- constructor();
31
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * Cursor Maps Directive
5
+ * ```html
6
+ * <e-cusrsormaps>
7
+ * <e-cursormap></e-cursormap>
8
+ * </e-cursormaps>
9
+ * ```
10
+ */
11
+ export declare class CustomCursorDirective extends ComplexBase<CustomCursorDirective> {
12
+ private viewContainerRef;
13
+ directivePropList: any;
14
+ /**
15
+ * Defines the property of a Data Map Items
16
+ */
17
+ action: any;
18
+ /**
19
+ * Defines the Fields for the Data Map Items
20
+ * @default ''
21
+ */
22
+ cursor: any;
23
+ constructor(viewContainerRef: ViewContainerRef);
24
+ }
25
+ /**
26
+ * CustomCursor Array Directive
27
+ * @private
28
+ */
29
+ export declare class CustomCursorsDirective extends ArrayBase<CustomCursorsDirective> {
30
+ constructor();
31
+ }
@@ -1,25 +1,25 @@
1
- import { ValueProvider } from '@angular/core';
2
- export declare const HierarchicalTreeService: ValueProvider;
3
- export declare const MindMapService: ValueProvider;
4
- export declare const RadialTreeService: ValueProvider;
5
- export declare const ComplexHierarchicalTreeService: ValueProvider;
6
- export declare const DataBindingService: ValueProvider;
7
- export declare const SnappingService: ValueProvider;
8
- export declare const PrintAndExportService: ValueProvider;
9
- export declare const BpmnDiagramsService: ValueProvider;
10
- export declare const SymmetricLayoutService: ValueProvider;
11
- export declare const ConnectorBridgingService: ValueProvider;
12
- export declare const UndoRedoService: ValueProvider;
13
- export declare const LayoutAnimationService: ValueProvider;
14
- export declare const DiagramContextMenuService: ValueProvider;
15
- export declare const LineRoutingService: ValueProvider;
16
- export declare const AvoidLineOverlappingService: ValueProvider;
17
- export declare const ConnectorEditingService: ValueProvider;
18
- export declare const LineDistributionService: ValueProvider;
19
- export declare const Ej1SerializationService: ValueProvider;
20
- export declare const FlowchartLayoutService: ValueProvider;
21
- /**
22
- * NgModule definition for the Diagram component with providers.
23
- */
24
- export declare class DiagramAllModule {
25
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ export declare const HierarchicalTreeService: ValueProvider;
3
+ export declare const MindMapService: ValueProvider;
4
+ export declare const RadialTreeService: ValueProvider;
5
+ export declare const ComplexHierarchicalTreeService: ValueProvider;
6
+ export declare const DataBindingService: ValueProvider;
7
+ export declare const SnappingService: ValueProvider;
8
+ export declare const PrintAndExportService: ValueProvider;
9
+ export declare const BpmnDiagramsService: ValueProvider;
10
+ export declare const SymmetricLayoutService: ValueProvider;
11
+ export declare const ConnectorBridgingService: ValueProvider;
12
+ export declare const UndoRedoService: ValueProvider;
13
+ export declare const LayoutAnimationService: ValueProvider;
14
+ export declare const DiagramContextMenuService: ValueProvider;
15
+ export declare const LineRoutingService: ValueProvider;
16
+ export declare const AvoidLineOverlappingService: ValueProvider;
17
+ export declare const ConnectorEditingService: ValueProvider;
18
+ export declare const LineDistributionService: ValueProvider;
19
+ export declare const Ej1SerializationService: ValueProvider;
20
+ export declare const FlowchartLayoutService: ValueProvider;
21
+ /**
22
+ * NgModule definition for the Diagram component with providers.
23
+ */
24
+ export declare class DiagramAllModule {
25
+ }