@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,338 +1,338 @@
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></e-node>
8
- * </e-nodes>
9
- * ```
10
- */
11
- export declare class NodeDirective extends ComplexBase<NodeDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- childFixedUserHandles: any;
15
- childAnnotations: any;
16
- childPorts: any;
17
- tags: string[];
18
- /**
19
- * Allows the user to save custom information/data about a node/connector
20
- * @aspdefaultvalueignore
21
- * @default undefined
22
- */
23
- addInfo: any;
24
- /**
25
- * Defines the collection of textual annotations of nodes/connectors
26
- * @aspdefaultvalueignore
27
- * @default undefined
28
- */
29
- annotations: any;
30
- /**
31
- * Sets the background color of the shape
32
- * @default 'transparent'
33
- */
34
- backgroundColor: any;
35
- /**
36
- * Sets the border color of the node
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></e-node>
8
+ * </e-nodes>
9
+ * ```
10
+ */
11
+ export declare class NodeDirective extends ComplexBase<NodeDirective> {
12
+ private viewContainerRef;
13
+ directivePropList: any;
14
+ childFixedUserHandles: any;
15
+ childAnnotations: any;
16
+ childPorts: any;
17
+ tags: string[];
18
+ /**
19
+ * Allows the user to save custom information/data about a node/connector
20
+ * @aspdefaultvalueignore
21
+ * @default undefined
22
+ */
23
+ addInfo: any;
24
+ /**
25
+ * Defines the collection of textual annotations of nodes/connectors
26
+ * @aspdefaultvalueignore
27
+ * @default undefined
28
+ */
29
+ annotations: any;
30
+ /**
31
+ * Sets the background color of the shape
32
+ * @default 'transparent'
33
+ */
34
+ backgroundColor: any;
35
+ /**
36
+ * Sets the border color of the node
37
37
 
38
- * @default 'none'
39
- */
40
- borderColor: any;
41
- /**
42
- * Sets the border width of the node
38
+ * @default 'none'
39
+ */
40
+ borderColor: any;
41
+ /**
42
+ * Sets the border width of the node
43
43
 
44
- * @default 0
45
- */
46
- borderWidth: any;
47
- /**
48
- * Set the branch for the mind map
49
- * @aspdefaultvalueignore
50
- * @default ''
51
- */
52
- branch: any;
53
- /**
54
- * Defines the children of group element
55
- * @aspdefaultvalueignore
56
- * @default undefined
57
- */
58
- children: any;
59
- /**
60
- * Defines the collapsed state of a node
61
- * @default {}
62
- */
63
- collapseIcon: any;
64
- /**
65
- * Used to define a index of column in the grid
66
- * @aspdefaultvalueignore
67
- * @default undefined
68
- */
69
- columnIndex: any;
70
- /**
71
- * Merge the column use the property in the grid container
72
- * @aspdefaultvalueignore
73
- * @default undefined
74
- */
75
- columnSpan: any;
76
- /**
77
- * Used to define the column for the grid container
78
- * @aspdefaultvalueignore
79
- * @default undefined
80
- */
81
- columns: any;
82
- /**
83
- * Enables/Disables certain features of nodes
84
- * * None - Disable all node Constraints
85
- * * Select - Enables node to be selected
86
- * * Drag - Enables node to be Dragged
87
- * * Rotate - Enables node to be Rotate
88
- * * Shadow - Enables node to display shadow
89
- * * PointerEvents - Enables node to provide pointer option
90
- * * Delete - Enables node to delete
91
- * * InConnect - Enables node to provide in connect option
92
- * * OutConnect - Enables node to provide out connect option
93
- * * Individual - Enables node to provide individual resize option
94
- * * Expandable - Enables node to provide Expandable option
95
- * * AllowDrop - Enables node to provide allow to drop option
96
- * * Inherit - Enables node to inherit the interaction option
97
- * * ResizeNorthEast - Enable ResizeNorthEast of the node
98
- * * ResizeEast - Enable ResizeEast of the node
99
- * * ResizeSouthEast - Enable ResizeSouthEast of the node
100
- * * ResizeSouth - Enable ResizeSouthWest of the node
101
- * * ResizeSouthWest - Enable ResizeSouthWest of the node
102
- * * ResizeSouth - Enable ResizeSouth of the node
103
- * * ResizeSouthWest - Enable ResizeSouthWest of the node
104
- * * ResizeWest - Enable ResizeWest of the node
105
- * * ResizeNorth - Enable ResizeNorth of the node
106
- * * Resize - Enables the Aspect ratio fo the node
107
- * * AspectRatio - Enables the Aspect ratio fo the node
108
- * * Tooltip - Enables or disables tool tip for the Nodes
109
- * * InheritTooltip - Enables or disables tool tip for the Nodes
110
- * * ReadOnly - Enables the ReadOnly support for Annotation
111
- * @default 'Default'
112
- * @aspnumberenum
113
- */
114
- constraints: any;
115
- /**
116
- * Defines the type of the container
117
- * @aspdefaultvalueignore
118
- * @default null
44
+ * @default 0
45
+ */
46
+ borderWidth: any;
47
+ /**
48
+ * Set the branch for the mind map
49
+ * @aspdefaultvalueignore
50
+ * @default ''
51
+ */
52
+ branch: any;
53
+ /**
54
+ * Defines the children of group element
55
+ * @aspdefaultvalueignore
56
+ * @default undefined
57
+ */
58
+ children: any;
59
+ /**
60
+ * Defines the collapsed state of a node
61
+ * @default {}
62
+ */
63
+ collapseIcon: any;
64
+ /**
65
+ * Used to define a index of column in the grid
66
+ * @aspdefaultvalueignore
67
+ * @default undefined
68
+ */
69
+ columnIndex: any;
70
+ /**
71
+ * Merge the column use the property in the grid container
72
+ * @aspdefaultvalueignore
73
+ * @default undefined
74
+ */
75
+ columnSpan: any;
76
+ /**
77
+ * Used to define the column for the grid container
78
+ * @aspdefaultvalueignore
79
+ * @default undefined
80
+ */
81
+ columns: any;
82
+ /**
83
+ * Enables/Disables certain features of nodes
84
+ * * None - Disable all node Constraints
85
+ * * Select - Enables node to be selected
86
+ * * Drag - Enables node to be Dragged
87
+ * * Rotate - Enables node to be Rotate
88
+ * * Shadow - Enables node to display shadow
89
+ * * PointerEvents - Enables node to provide pointer option
90
+ * * Delete - Enables node to delete
91
+ * * InConnect - Enables node to provide in connect option
92
+ * * OutConnect - Enables node to provide out connect option
93
+ * * Individual - Enables node to provide individual resize option
94
+ * * Expandable - Enables node to provide Expandable option
95
+ * * AllowDrop - Enables node to provide allow to drop option
96
+ * * Inherit - Enables node to inherit the interaction option
97
+ * * ResizeNorthEast - Enable ResizeNorthEast of the node
98
+ * * ResizeEast - Enable ResizeEast of the node
99
+ * * ResizeSouthEast - Enable ResizeSouthEast of the node
100
+ * * ResizeSouth - Enable ResizeSouthWest of the node
101
+ * * ResizeSouthWest - Enable ResizeSouthWest of the node
102
+ * * ResizeSouth - Enable ResizeSouth of the node
103
+ * * ResizeSouthWest - Enable ResizeSouthWest of the node
104
+ * * ResizeWest - Enable ResizeWest of the node
105
+ * * ResizeNorth - Enable ResizeNorth of the node
106
+ * * Resize - Enables the Aspect ratio fo the node
107
+ * * AspectRatio - Enables the Aspect ratio fo the node
108
+ * * Tooltip - Enables or disables tool tip for the Nodes
109
+ * * InheritTooltip - Enables or disables tool tip for the Nodes
110
+ * * ReadOnly - Enables the ReadOnly support for Annotation
111
+ * @default 'Default'
112
+ * @aspnumberenum
113
+ */
114
+ constraints: any;
115
+ /**
116
+ * Defines the type of the container
117
+ * @aspdefaultvalueignore
118
+ * @default null
119
119
 
120
- */
121
- container: any;
122
- /**
123
- * Sets the data source of the node
124
- */
125
- data: any;
126
- /**
127
- * Defines the size of a drop symbol
128
- * @aspdefaultvalueignore
129
- * @default undefined
130
- */
131
- dragSize: any;
132
- /**
133
- * Defines whether the node should be automatically positioned or not. Applicable, if layout option is enabled.
134
- * @default false
135
- */
136
- excludeFromLayout: any;
137
- /**
138
- * Defines the expanded state of a node
139
- * @default {}
140
- */
141
- expandIcon: any;
142
- /**
143
- * Specifies the collection of the fixed user handle
144
- * @aspdefaultvalueignore
145
- * @default undefined
146
- */
147
- fixedUserHandles: any;
148
- /**
149
- * Flip the element in Horizontal/Vertical directions
150
- * @aspdefaultvalueignore
151
- * @default None
152
- */
153
- flip: any;
154
- /**
155
- * Allows you to flip only the node or along with port and label
156
- * @aspdefaultvalueignore
157
- * @default All
158
- */
159
- flipMode: any;
160
- /**
161
- * Sets the height of the node
162
- * @aspdefaultvalueignore
163
- * @default undefined
164
- */
165
- height: any;
166
- /**
167
- * Sets the horizontalAlignment of the node
168
- * @default 'Stretch'
169
- */
170
- horizontalAlignment: any;
171
- /**
172
- * Represents the unique id of nodes/connectors
173
- * @default ''
174
- */
175
- id: any;
176
- /**
177
- * Defines whether the node is expanded or not
178
- * @default true
179
- */
180
- isExpanded: any;
181
- /**
182
- * Sets the layout properties using node property
183
- * @default new NodeLayoutInfo()
184
- * @asptype object
185
- */
186
- layoutInfo: any;
187
- /**
188
- * Defines the space to be left between the node and its immediate parent
189
- * @default {}
190
- */
191
- margin: any;
192
- /**
193
- * Sets the maximum height of the node
194
- * @aspdefaultvalueignore
195
- * @default undefined
196
- */
197
- maxHeight: any;
198
- /**
199
- * Sets the maximum width of the node
200
- * @aspdefaultvalueignore
201
- * @default undefined
202
- */
203
- maxWidth: any;
204
- /**
205
- * Sets the minimum height of the node
206
- * @aspdefaultvalueignore
207
- * @default undefined
208
- */
209
- minHeight: any;
210
- /**
211
- * Sets the minimum width of the node
212
- * @aspdefaultvalueignore
213
- * @default undefined
214
- */
215
- minWidth: any;
216
- /**
217
- * Sets the x-coordinate of the position of the node
218
- * @default 0
219
- */
220
- offsetX: any;
221
- /**
222
- * Sets the y-coordinate of the position of the node
223
- * @default 0
224
- */
225
- offsetY: any;
226
- /**
227
- * Defines the space between the group node edges and its children
228
- * @aspdefaultvalueignore
229
- * @default 0
230
- */
231
- padding: any;
232
- /**
233
- * Sets the reference point, that will act as the offset values(offsetX, offsetY) of a node
234
- * @default new Point(0.5,0.5)
235
- */
236
- pivot: any;
237
- /**
238
- * Defines the collection of connection points of nodes/connectors
239
- * @aspdefaultvalueignore
240
- * @default undefined
241
- */
242
- ports: any;
243
- /**
244
- * Defines the size of the symbol preview
245
- * @aspdefaultvalueignore
246
- * @default undefined
247
- */
248
- previewSize: any;
249
- /**
250
- * Sets the rotate angle of the node
251
- * @default 0
252
- */
253
- rotateAngle: any;
254
- /**
255
- * Used to define a index of row in the grid
256
- * @aspdefaultvalueignore
257
- * @default undefined
258
- */
259
- rowIndex: any;
260
- /**
261
- * Merge the row use the property in the grid container
262
- * @aspdefaultvalueignore
263
- * @default undefined
264
- */
265
- rowSpan: any;
266
- /**
267
- * Used to define the rows for the grid container
268
- * @aspdefaultvalueignore
120
+ */
121
+ container: any;
122
+ /**
123
+ * Sets the data source of the node
124
+ */
125
+ data: any;
126
+ /**
127
+ * Defines the size of a drop symbol
128
+ * @aspdefaultvalueignore
129
+ * @default undefined
130
+ */
131
+ dragSize: any;
132
+ /**
133
+ * Defines whether the node should be automatically positioned or not. Applicable, if layout option is enabled.
134
+ * @default false
135
+ */
136
+ excludeFromLayout: any;
137
+ /**
138
+ * Defines the expanded state of a node
139
+ * @default {}
140
+ */
141
+ expandIcon: any;
142
+ /**
143
+ * Specifies the collection of the fixed user handle
144
+ * @aspdefaultvalueignore
145
+ * @default undefined
146
+ */
147
+ fixedUserHandles: any;
148
+ /**
149
+ * Flip the element in Horizontal/Vertical directions
150
+ * @aspdefaultvalueignore
151
+ * @default None
152
+ */
153
+ flip: any;
154
+ /**
155
+ * Allows you to flip only the node or along with port and label
156
+ * @aspdefaultvalueignore
157
+ * @default All
158
+ */
159
+ flipMode: any;
160
+ /**
161
+ * Sets the height of the node
162
+ * @aspdefaultvalueignore
163
+ * @default undefined
164
+ */
165
+ height: any;
166
+ /**
167
+ * Sets the horizontalAlignment of the node
168
+ * @default 'Stretch'
169
+ */
170
+ horizontalAlignment: any;
171
+ /**
172
+ * Represents the unique id of nodes/connectors
173
+ * @default ''
174
+ */
175
+ id: any;
176
+ /**
177
+ * Defines whether the node is expanded or not
178
+ * @default true
179
+ */
180
+ isExpanded: any;
181
+ /**
182
+ * Sets the layout properties using node property
183
+ * @default new NodeLayoutInfo()
184
+ * @asptype object
185
+ */
186
+ layoutInfo: any;
187
+ /**
188
+ * Defines the space to be left between the node and its immediate parent
189
+ * @default {}
190
+ */
191
+ margin: any;
192
+ /**
193
+ * Sets the maximum height of the node
194
+ * @aspdefaultvalueignore
195
+ * @default undefined
196
+ */
197
+ maxHeight: any;
198
+ /**
199
+ * Sets the maximum width of the node
200
+ * @aspdefaultvalueignore
201
+ * @default undefined
202
+ */
203
+ maxWidth: any;
204
+ /**
205
+ * Sets the minimum height of the node
206
+ * @aspdefaultvalueignore
207
+ * @default undefined
208
+ */
209
+ minHeight: any;
210
+ /**
211
+ * Sets the minimum width of the node
212
+ * @aspdefaultvalueignore
213
+ * @default undefined
214
+ */
215
+ minWidth: any;
216
+ /**
217
+ * Sets the x-coordinate of the position of the node
218
+ * @default 0
219
+ */
220
+ offsetX: any;
221
+ /**
222
+ * Sets the y-coordinate of the position of the node
223
+ * @default 0
224
+ */
225
+ offsetY: any;
226
+ /**
227
+ * Defines the space between the group node edges and its children
228
+ * @aspdefaultvalueignore
229
+ * @default 0
230
+ */
231
+ padding: any;
232
+ /**
233
+ * Sets the reference point, that will act as the offset values(offsetX, offsetY) of a node
234
+ * @default new Point(0.5,0.5)
235
+ */
236
+ pivot: any;
237
+ /**
238
+ * Defines the collection of connection points of nodes/connectors
239
+ * @aspdefaultvalueignore
240
+ * @default undefined
241
+ */
242
+ ports: any;
243
+ /**
244
+ * Defines the size of the symbol preview
245
+ * @aspdefaultvalueignore
246
+ * @default undefined
247
+ */
248
+ previewSize: any;
249
+ /**
250
+ * Sets the rotate angle of the node
251
+ * @default 0
252
+ */
253
+ rotateAngle: any;
254
+ /**
255
+ * Used to define a index of row in the grid
256
+ * @aspdefaultvalueignore
257
+ * @default undefined
258
+ */
259
+ rowIndex: any;
260
+ /**
261
+ * Merge the row use the property in the grid container
262
+ * @aspdefaultvalueignore
263
+ * @default undefined
264
+ */
265
+ rowSpan: any;
266
+ /**
267
+ * Used to define the rows for the grid container
268
+ * @aspdefaultvalueignore
269
269
 
270
- * @default undefined
271
- */
272
- rows: any;
273
- /**
274
- * Defines the shadow of a shape/path
275
- * @default null
276
- */
277
- shadow: any;
278
- /**
279
- * Defines the shape of a node
280
- * @default Basic Shape
281
- * @asptype object
282
- */
283
- shape: any;
284
- /**
285
- * Sets the shape style of the node
286
- * @default new ShapeStyle()
287
- * @asptype object
288
- */
289
- style: any;
290
- /**
291
- * Defines the symbol info of a connector
292
- * @aspdefaultvalueignore
293
- * @default undefined
294
- * @ignoreapilink
295
- */
296
- symbolInfo: any;
297
- /**
298
- * defines the tooltip for the node
299
- * @default {}
300
- */
301
- tooltip: any;
302
- /**
303
- * Sets the verticalAlignment of the node
304
- * @default 'Stretch'
305
- */
306
- verticalAlignment: any;
307
- /**
308
- * Sets the visibility of the node/connector
309
- * @default true
310
- */
311
- visible: any;
312
- /**
313
- * Sets the width of the node
314
- * @aspdefaultvalueignore
315
- * @default undefined
316
- */
317
- width: any;
318
- /**
319
- * Sets or gets the UI of a node
320
- * @default null
270
+ * @default undefined
271
+ */
272
+ rows: any;
273
+ /**
274
+ * Defines the shadow of a shape/path
275
+ * @default null
276
+ */
277
+ shadow: any;
278
+ /**
279
+ * Defines the shape of a node
280
+ * @default Basic Shape
281
+ * @asptype object
282
+ */
283
+ shape: any;
284
+ /**
285
+ * Sets the shape style of the node
286
+ * @default new ShapeStyle()
287
+ * @asptype object
288
+ */
289
+ style: any;
290
+ /**
291
+ * Defines the symbol info of a connector
292
+ * @aspdefaultvalueignore
293
+ * @default undefined
294
+ * @ignoreapilink
295
+ */
296
+ symbolInfo: any;
297
+ /**
298
+ * defines the tooltip for the node
299
+ * @default {}
300
+ */
301
+ tooltip: any;
302
+ /**
303
+ * Sets the verticalAlignment of the node
304
+ * @default 'Stretch'
305
+ */
306
+ verticalAlignment: any;
307
+ /**
308
+ * Sets the visibility of the node/connector
309
+ * @default true
310
+ */
311
+ visible: any;
312
+ /**
313
+ * Sets the width of the node
314
+ * @aspdefaultvalueignore
315
+ * @default undefined
316
+ */
317
+ width: any;
318
+ /**
319
+ * Sets or gets the UI of a node
320
+ * @default null
321
321
 
322
- */
323
- wrapper: any;
324
- /**
325
- * Defines the visual order of the node/connector in DOM
326
- * @aspdefaultvalue 5e-324
327
- * @default Number.MIN_VALUE
328
- */
329
- zIndex: any;
330
- constructor(viewContainerRef: ViewContainerRef);
331
- }
332
- /**
333
- * Node Array Directive
334
- * @private
335
- */
336
- export declare class NodesDirective extends ArrayBase<NodesDirective> {
337
- constructor();
338
- }
322
+ */
323
+ wrapper: any;
324
+ /**
325
+ * Defines the visual order of the node/connector in DOM
326
+ * @aspdefaultvalue 5e-324
327
+ * @default Number.MIN_VALUE
328
+ */
329
+ zIndex: any;
330
+ constructor(viewContainerRef: ViewContainerRef);
331
+ }
332
+ /**
333
+ * Node Array Directive
334
+ * @private
335
+ */
336
+ export declare class NodesDirective extends ArrayBase<NodesDirective> {
337
+ constructor();
338
+ }