@syncfusion/ej2-angular-diagrams 30.1.37-ngcc → 30.1.37
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/CHANGELOG.md +2011 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/diagram/connector-annotation.directive.mjs +59 -0
- package/esm2020/src/diagram/connector-fixeduserhandle.directive.mjs +59 -0
- package/esm2020/src/diagram/connectors.directive.mjs +60 -0
- package/esm2020/src/diagram/customcursor.directive.mjs +54 -0
- package/esm2020/src/diagram/diagram-all.module.mjs +83 -0
- package/esm2020/src/diagram/diagram.component.mjs +231 -0
- package/esm2020/src/diagram/diagram.module.mjs +106 -0
- package/esm2020/src/diagram/layers.directive.mjs +54 -0
- package/esm2020/src/diagram/node-annotation.directive.mjs +59 -0
- package/esm2020/src/diagram/node-fixeduserhandle.directive.mjs +59 -0
- package/esm2020/src/diagram/nodes.directive.mjs +62 -0
- package/esm2020/src/diagram/ports.directive.mjs +59 -0
- package/esm2020/src/index.mjs +21 -0
- package/esm2020/src/overview/overview-all.module.mjs +23 -0
- package/esm2020/src/overview/overview.component.mjs +60 -0
- package/esm2020/src/overview/overview.module.mjs +25 -0
- package/esm2020/src/symbol-palette/palettes.directive.mjs +52 -0
- package/esm2020/src/symbol-palette/symbolpalette-all.module.mjs +23 -0
- package/esm2020/src/symbol-palette/symbolpalette.component.mjs +71 -0
- package/esm2020/src/symbol-palette/symbolpalette.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-diagrams.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-diagrams.mjs +1153 -0
- package/fesm2015/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-diagrams.mjs +1153 -0
- package/fesm2020/syncfusion-ej2-angular-diagrams.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/diagram/connector-annotation.directive.d.ts +175 -170
- package/src/diagram/connector-fixeduserhandle.directive.d.ts +116 -111
- package/src/diagram/connectors.directive.d.ts +281 -276
- package/src/diagram/customcursor.directive.d.ts +36 -31
- package/src/diagram/diagram-all.module.d.ts +31 -25
- package/src/diagram/diagram.component.d.ts +106 -103
- package/src/diagram/diagram.module.d.ts +20 -5
- package/src/diagram/layers.directive.d.ts +60 -55
- package/src/diagram/node-annotation.directive.d.ts +156 -151
- package/src/diagram/node-fixeduserhandle.directive.d.ts +107 -102
- package/src/diagram/nodes.directive.d.ts +343 -338
- package/src/diagram/ports.directive.d.ts +147 -142
- package/src/index.d.ts +20 -20
- package/src/overview/overview-all.module.d.ts +11 -5
- package/src/overview/overview.component.d.ts +32 -29
- package/src/overview/overview.module.d.ts +11 -5
- package/src/symbol-palette/palettes.directive.d.ts +56 -51
- package/src/symbol-palette/symbolpalette-all.module.d.ts +11 -5
- package/src/symbol-palette/symbolpalette.component.d.ts +35 -32
- package/src/symbol-palette/symbolpalette.module.d.ts +12 -5
- package/syncfusion-ej2-angular-diagrams.d.ts +5 -0
- package/@syncfusion/ej2-angular-diagrams.es5.js +0 -1342
- package/@syncfusion/ej2-angular-diagrams.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-diagrams.js +0 -1261
- package/@syncfusion/ej2-angular-diagrams.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-diagrams.umd.js +0 -1785
- package/dist/ej2-angular-diagrams.umd.js.map +0 -1
- package/dist/ej2-angular-diagrams.umd.min.js +0 -11
- package/dist/ej2-angular-diagrams.umd.min.js.map +0 -1
- package/ej2-angular-diagrams.d.ts +0 -7
- package/ej2-angular-diagrams.metadata.json +0 -1
@@ -1,1261 +0,0 @@
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
|
2
|
-
import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
|
3
|
-
import { AvoidLineOverlapping, BpmnDiagrams, ComplexHierarchicalTree, ConnectorBridging, ConnectorEditing, DataBinding, Diagram, DiagramContextMenu, Ej1Serialization, FlowchartLayout, HierarchicalTree, LayoutAnimation, LineDistribution, LineRouting, MindMap, Overview, PrintAndExport, RadialTree, Snapping, SymbolPalette, SymmetricLayout, UndoRedo } from '@syncfusion/ej2-diagrams';
|
4
|
-
import { CommonModule } from '@angular/common';
|
5
|
-
|
6
|
-
let input = ['addInfo', 'id', 'lock', 'objects', 'visible', 'zIndex'];
|
7
|
-
let outputs = [];
|
8
|
-
/**
|
9
|
-
* Layers Directive
|
10
|
-
* ```html
|
11
|
-
* <e-layers>
|
12
|
-
* <e-layer></e-layer>
|
13
|
-
* </e-layers>
|
14
|
-
* ```
|
15
|
-
*/
|
16
|
-
class LayerDirective extends ComplexBase {
|
17
|
-
/**
|
18
|
-
* @param {?} viewContainerRef
|
19
|
-
*/
|
20
|
-
constructor(viewContainerRef) {
|
21
|
-
super();
|
22
|
-
this.viewContainerRef = viewContainerRef;
|
23
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
24
|
-
this.registerEvents(outputs);
|
25
|
-
this.directivePropList = input;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
LayerDirective.decorators = [
|
29
|
-
{ type: Directive, args: [{
|
30
|
-
selector: 'e-layers>e-layer',
|
31
|
-
inputs: input,
|
32
|
-
outputs: outputs,
|
33
|
-
queries: {}
|
34
|
-
},] },
|
35
|
-
];
|
36
|
-
/**
|
37
|
-
* @nocollapse
|
38
|
-
*/
|
39
|
-
LayerDirective.ctorParameters = () => [
|
40
|
-
{ type: ViewContainerRef, },
|
41
|
-
];
|
42
|
-
/**
|
43
|
-
* Layer Array Directive
|
44
|
-
*/
|
45
|
-
class LayersDirective extends ArrayBase {
|
46
|
-
constructor() {
|
47
|
-
super('layers');
|
48
|
-
}
|
49
|
-
}
|
50
|
-
LayersDirective.decorators = [
|
51
|
-
{ type: Directive, args: [{
|
52
|
-
selector: 'ej-diagram>e-layers',
|
53
|
-
queries: {
|
54
|
-
children: new ContentChildren(LayerDirective)
|
55
|
-
},
|
56
|
-
},] },
|
57
|
-
];
|
58
|
-
/**
|
59
|
-
* @nocollapse
|
60
|
-
*/
|
61
|
-
LayersDirective.ctorParameters = () => [];
|
62
|
-
|
63
|
-
let input$1 = ['action', 'cursor'];
|
64
|
-
let outputs$1 = [];
|
65
|
-
/**
|
66
|
-
* Cursor Maps Directive
|
67
|
-
* ```html
|
68
|
-
* <e-cusrsormaps>
|
69
|
-
* <e-cursormap></e-cursormap>
|
70
|
-
* </e-cursormaps>
|
71
|
-
* ```
|
72
|
-
*/
|
73
|
-
class CustomCursorDirective extends ComplexBase {
|
74
|
-
/**
|
75
|
-
* @param {?} viewContainerRef
|
76
|
-
*/
|
77
|
-
constructor(viewContainerRef) {
|
78
|
-
super();
|
79
|
-
this.viewContainerRef = viewContainerRef;
|
80
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
81
|
-
this.registerEvents(outputs$1);
|
82
|
-
this.directivePropList = input$1;
|
83
|
-
}
|
84
|
-
}
|
85
|
-
CustomCursorDirective.decorators = [
|
86
|
-
{ type: Directive, args: [{
|
87
|
-
selector: 'e-cursormaps>e-cursormap',
|
88
|
-
inputs: input$1,
|
89
|
-
outputs: outputs$1,
|
90
|
-
queries: {}
|
91
|
-
},] },
|
92
|
-
];
|
93
|
-
/**
|
94
|
-
* @nocollapse
|
95
|
-
*/
|
96
|
-
CustomCursorDirective.ctorParameters = () => [
|
97
|
-
{ type: ViewContainerRef, },
|
98
|
-
];
|
99
|
-
/**
|
100
|
-
* CustomCursor Array Directive
|
101
|
-
*/
|
102
|
-
class CustomCursorsDirective extends ArrayBase {
|
103
|
-
constructor() {
|
104
|
-
super('customcursor');
|
105
|
-
}
|
106
|
-
}
|
107
|
-
CustomCursorsDirective.decorators = [
|
108
|
-
{ type: Directive, args: [{
|
109
|
-
selector: 'ej-diagram>e-cursormaps',
|
110
|
-
queries: {
|
111
|
-
children: new ContentChildren(CustomCursorDirective)
|
112
|
-
},
|
113
|
-
},] },
|
114
|
-
];
|
115
|
-
/**
|
116
|
-
* @nocollapse
|
117
|
-
*/
|
118
|
-
CustomCursorsDirective.ctorParameters = () => [];
|
119
|
-
|
120
|
-
let input$2 = ['alignment', 'cornerRadius', 'displacement', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'offset', 'padding', 'pathData', 'tooltip', 'visibility', 'width'];
|
121
|
-
let outputs$2 = [];
|
122
|
-
/**
|
123
|
-
* Connectors Directive
|
124
|
-
* ```html
|
125
|
-
* <e-connectors>
|
126
|
-
* <e-connector>
|
127
|
-
* <e-connector-fixeduserhandles>
|
128
|
-
* <e-connector-fixeduserhandle>
|
129
|
-
* </e-connector-fixeduserhandle>
|
130
|
-
* </e-connector-fixeduserhandles>
|
131
|
-
* </e-connector>
|
132
|
-
* </e-connectors>
|
133
|
-
* ```
|
134
|
-
*/
|
135
|
-
class ConnectorFixedUserHandleDirective extends ComplexBase {
|
136
|
-
/**
|
137
|
-
* @param {?} viewContainerRef
|
138
|
-
*/
|
139
|
-
constructor(viewContainerRef) {
|
140
|
-
super();
|
141
|
-
this.viewContainerRef = viewContainerRef;
|
142
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
143
|
-
this.registerEvents(outputs$2);
|
144
|
-
this.directivePropList = input$2;
|
145
|
-
}
|
146
|
-
}
|
147
|
-
ConnectorFixedUserHandleDirective.decorators = [
|
148
|
-
{ type: Directive, args: [{
|
149
|
-
selector: 'e-connector>e-connector-fixeduserhandles>e-connector-fixeduserhandle',
|
150
|
-
inputs: input$2,
|
151
|
-
outputs: outputs$2,
|
152
|
-
queries: {}
|
153
|
-
},] },
|
154
|
-
];
|
155
|
-
/**
|
156
|
-
* @nocollapse
|
157
|
-
*/
|
158
|
-
ConnectorFixedUserHandleDirective.ctorParameters = () => [
|
159
|
-
{ type: ViewContainerRef, },
|
160
|
-
];
|
161
|
-
/**
|
162
|
-
* ConnectorFixedUserHandle Array Directive
|
163
|
-
*/
|
164
|
-
class ConnectorFixedUserHandlesDirective extends ArrayBase {
|
165
|
-
constructor() {
|
166
|
-
super('fixeduserhandles');
|
167
|
-
}
|
168
|
-
}
|
169
|
-
ConnectorFixedUserHandlesDirective.decorators = [
|
170
|
-
{ type: Directive, args: [{
|
171
|
-
selector: 'e-connector>e-connector-fixeduserhandles',
|
172
|
-
queries: {
|
173
|
-
children: new ContentChildren(ConnectorFixedUserHandleDirective)
|
174
|
-
},
|
175
|
-
},] },
|
176
|
-
];
|
177
|
-
/**
|
178
|
-
* @nocollapse
|
179
|
-
*/
|
180
|
-
ConnectorFixedUserHandlesDirective.ctorParameters = () => [];
|
181
|
-
|
182
|
-
let input$3 = ['addInfo', 'alignment', 'annotationType', 'constraints', 'content', 'displacement', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'rotationReference', 'segmentAngle', 'style', 'template', 'tooltip', 'type', 'verticalAlignment', 'visibility', 'width'];
|
183
|
-
let outputs$3 = [];
|
184
|
-
/**
|
185
|
-
* Connectors Directive
|
186
|
-
* ```html
|
187
|
-
* <e-connectors>
|
188
|
-
* <e-connector>
|
189
|
-
* <e-connector-annotations>
|
190
|
-
* <e-connector-annotation>
|
191
|
-
* </e-connector-annotation>
|
192
|
-
* </e-connector-annotations>
|
193
|
-
* </e-connector>
|
194
|
-
* </e-connectors>
|
195
|
-
* ```
|
196
|
-
*/
|
197
|
-
class ConnectorAnnotationDirective extends ComplexBase {
|
198
|
-
/**
|
199
|
-
* @param {?} viewContainerRef
|
200
|
-
*/
|
201
|
-
constructor(viewContainerRef) {
|
202
|
-
super();
|
203
|
-
this.viewContainerRef = viewContainerRef;
|
204
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
205
|
-
this.registerEvents(outputs$3);
|
206
|
-
this.directivePropList = input$3;
|
207
|
-
}
|
208
|
-
}
|
209
|
-
ConnectorAnnotationDirective.decorators = [
|
210
|
-
{ type: Directive, args: [{
|
211
|
-
selector: 'e-connector>e-connector-annotations>e-connector-annotation',
|
212
|
-
inputs: input$3,
|
213
|
-
outputs: outputs$3,
|
214
|
-
queries: {}
|
215
|
-
},] },
|
216
|
-
];
|
217
|
-
/**
|
218
|
-
* @nocollapse
|
219
|
-
*/
|
220
|
-
ConnectorAnnotationDirective.ctorParameters = () => [
|
221
|
-
{ type: ViewContainerRef, },
|
222
|
-
];
|
223
|
-
/**
|
224
|
-
* ConnectorAnnotation Array Directive
|
225
|
-
*/
|
226
|
-
class ConnectorAnnotationsDirective extends ArrayBase {
|
227
|
-
constructor() {
|
228
|
-
super('annotations');
|
229
|
-
}
|
230
|
-
}
|
231
|
-
ConnectorAnnotationsDirective.decorators = [
|
232
|
-
{ type: Directive, args: [{
|
233
|
-
selector: 'e-connector>e-connector-annotations',
|
234
|
-
queries: {
|
235
|
-
children: new ContentChildren(ConnectorAnnotationDirective)
|
236
|
-
},
|
237
|
-
},] },
|
238
|
-
];
|
239
|
-
/**
|
240
|
-
* @nocollapse
|
241
|
-
*/
|
242
|
-
ConnectorAnnotationsDirective.ctorParameters = () => [];
|
243
|
-
|
244
|
-
let input$4 = ['addInfo', 'allowNodeOverlap', 'annotations', 'bezierSettings', 'bridgeSpace', 'connectionPadding', 'connectorSpacing', 'constraints', 'cornerRadius', 'dragSize', 'excludeFromLayout', 'fixedUserHandles', 'flip', 'flipMode', 'hitPadding', 'id', 'margin', 'maxSegmentThumb', 'ports', 'previewSize', 'segmentThumbShape', 'segmentThumbSize', 'segments', 'shape', 'sourceDecorator', 'sourceID', 'sourcePadding', 'sourcePoint', 'sourcePortID', 'style', 'symbolInfo', 'targetDecorator', 'targetID', 'targetPadding', 'targetPoint', 'targetPortID', 'tooltip', 'type', 'visible', 'wrapper', 'zIndex'];
|
245
|
-
let outputs$4 = [];
|
246
|
-
/**
|
247
|
-
* Connectors Directive
|
248
|
-
* ```html
|
249
|
-
* <e-connectors>
|
250
|
-
* <e-connector></e-connector>
|
251
|
-
* </e-connectors>
|
252
|
-
* ```
|
253
|
-
*/
|
254
|
-
class ConnectorDirective extends ComplexBase {
|
255
|
-
/**
|
256
|
-
* @param {?} viewContainerRef
|
257
|
-
*/
|
258
|
-
constructor(viewContainerRef) {
|
259
|
-
super();
|
260
|
-
this.viewContainerRef = viewContainerRef;
|
261
|
-
this.tags = ['fixedUserHandles', 'annotations'];
|
262
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
263
|
-
this.registerEvents(outputs$4);
|
264
|
-
this.directivePropList = input$4;
|
265
|
-
}
|
266
|
-
}
|
267
|
-
ConnectorDirective.decorators = [
|
268
|
-
{ type: Directive, args: [{
|
269
|
-
selector: 'e-connectors>e-connector',
|
270
|
-
inputs: input$4,
|
271
|
-
outputs: outputs$4,
|
272
|
-
queries: {
|
273
|
-
childFixedUserHandles: new ContentChild(ConnectorFixedUserHandlesDirective),
|
274
|
-
childAnnotations: new ContentChild(ConnectorAnnotationsDirective)
|
275
|
-
}
|
276
|
-
},] },
|
277
|
-
];
|
278
|
-
/**
|
279
|
-
* @nocollapse
|
280
|
-
*/
|
281
|
-
ConnectorDirective.ctorParameters = () => [
|
282
|
-
{ type: ViewContainerRef, },
|
283
|
-
];
|
284
|
-
/**
|
285
|
-
* Connector Array Directive
|
286
|
-
*/
|
287
|
-
class ConnectorsDirective extends ArrayBase {
|
288
|
-
constructor() {
|
289
|
-
super('connectors');
|
290
|
-
}
|
291
|
-
}
|
292
|
-
ConnectorsDirective.decorators = [
|
293
|
-
{ type: Directive, args: [{
|
294
|
-
selector: 'ej-diagram>e-connectors',
|
295
|
-
queries: {
|
296
|
-
children: new ContentChildren(ConnectorDirective)
|
297
|
-
},
|
298
|
-
},] },
|
299
|
-
];
|
300
|
-
/**
|
301
|
-
* @nocollapse
|
302
|
-
*/
|
303
|
-
ConnectorsDirective.ctorParameters = () => [];
|
304
|
-
|
305
|
-
let input$5 = ['cornerRadius', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'margin', 'offset', 'padding', 'pathData', 'tooltip', 'visibility', 'width'];
|
306
|
-
let outputs$5 = [];
|
307
|
-
/**
|
308
|
-
* Nodes Directive
|
309
|
-
* ```html
|
310
|
-
* <e-nodes>
|
311
|
-
* <e-node>
|
312
|
-
* <e-node-fixeduserhandles>
|
313
|
-
* <e-node-fixeduserhandle>
|
314
|
-
* </e-node-fixeduserhandle>
|
315
|
-
* </e-node-fixeduserhandles>
|
316
|
-
* </e-node>
|
317
|
-
* </e-nodes>
|
318
|
-
* ```
|
319
|
-
*/
|
320
|
-
class NodeFixedUserHandleDirective extends ComplexBase {
|
321
|
-
/**
|
322
|
-
* @param {?} viewContainerRef
|
323
|
-
*/
|
324
|
-
constructor(viewContainerRef) {
|
325
|
-
super();
|
326
|
-
this.viewContainerRef = viewContainerRef;
|
327
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
328
|
-
this.registerEvents(outputs$5);
|
329
|
-
this.directivePropList = input$5;
|
330
|
-
}
|
331
|
-
}
|
332
|
-
NodeFixedUserHandleDirective.decorators = [
|
333
|
-
{ type: Directive, args: [{
|
334
|
-
selector: 'e-node>e-node-fixeduserhandles>e-node-fixeduserhandle',
|
335
|
-
inputs: input$5,
|
336
|
-
outputs: outputs$5,
|
337
|
-
queries: {}
|
338
|
-
},] },
|
339
|
-
];
|
340
|
-
/**
|
341
|
-
* @nocollapse
|
342
|
-
*/
|
343
|
-
NodeFixedUserHandleDirective.ctorParameters = () => [
|
344
|
-
{ type: ViewContainerRef, },
|
345
|
-
];
|
346
|
-
/**
|
347
|
-
* NodeFixedUserHandle Array Directive
|
348
|
-
*/
|
349
|
-
class NodeFixedUserHandlesDirective extends ArrayBase {
|
350
|
-
constructor() {
|
351
|
-
super('fixeduserhandles');
|
352
|
-
}
|
353
|
-
}
|
354
|
-
NodeFixedUserHandlesDirective.decorators = [
|
355
|
-
{ type: Directive, args: [{
|
356
|
-
selector: 'e-node>e-node-fixeduserhandles',
|
357
|
-
queries: {
|
358
|
-
children: new ContentChildren(NodeFixedUserHandleDirective)
|
359
|
-
},
|
360
|
-
},] },
|
361
|
-
];
|
362
|
-
/**
|
363
|
-
* @nocollapse
|
364
|
-
*/
|
365
|
-
NodeFixedUserHandlesDirective.ctorParameters = () => [];
|
366
|
-
|
367
|
-
let input$6 = ['addInfo', 'annotationType', 'constraints', 'content', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'rotationReference', 'style', 'template', 'tooltip', 'type', 'verticalAlignment', 'visibility', 'width'];
|
368
|
-
let outputs$6 = [];
|
369
|
-
/**
|
370
|
-
* Nodes Directive
|
371
|
-
* ```html
|
372
|
-
* <e-nodes>
|
373
|
-
* <e-node>
|
374
|
-
* <e-node-annotations>
|
375
|
-
* <e-node-annotation>
|
376
|
-
* </e-node-annotation>
|
377
|
-
* </e-node-annotations>
|
378
|
-
* </e-node>
|
379
|
-
* </e-nodes>
|
380
|
-
* ```
|
381
|
-
*/
|
382
|
-
class NodeAnnotationDirective extends ComplexBase {
|
383
|
-
/**
|
384
|
-
* @param {?} viewContainerRef
|
385
|
-
*/
|
386
|
-
constructor(viewContainerRef) {
|
387
|
-
super();
|
388
|
-
this.viewContainerRef = viewContainerRef;
|
389
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
390
|
-
this.registerEvents(outputs$6);
|
391
|
-
this.directivePropList = input$6;
|
392
|
-
}
|
393
|
-
}
|
394
|
-
NodeAnnotationDirective.decorators = [
|
395
|
-
{ type: Directive, args: [{
|
396
|
-
selector: 'e-node>e-node-annotations>e-node-annotation',
|
397
|
-
inputs: input$6,
|
398
|
-
outputs: outputs$6,
|
399
|
-
queries: {}
|
400
|
-
},] },
|
401
|
-
];
|
402
|
-
/**
|
403
|
-
* @nocollapse
|
404
|
-
*/
|
405
|
-
NodeAnnotationDirective.ctorParameters = () => [
|
406
|
-
{ type: ViewContainerRef, },
|
407
|
-
];
|
408
|
-
/**
|
409
|
-
* NodeAnnotation Array Directive
|
410
|
-
*/
|
411
|
-
class NodeAnnotationsDirective extends ArrayBase {
|
412
|
-
constructor() {
|
413
|
-
super('annotations');
|
414
|
-
}
|
415
|
-
}
|
416
|
-
NodeAnnotationsDirective.decorators = [
|
417
|
-
{ type: Directive, args: [{
|
418
|
-
selector: 'e-node>e-node-annotations',
|
419
|
-
queries: {
|
420
|
-
children: new ContentChildren(NodeAnnotationDirective)
|
421
|
-
},
|
422
|
-
},] },
|
423
|
-
];
|
424
|
-
/**
|
425
|
-
* @nocollapse
|
426
|
-
*/
|
427
|
-
NodeAnnotationsDirective.ctorParameters = () => [];
|
428
|
-
|
429
|
-
let input$7 = ['addInfo', 'connectionDirection', 'constraints', 'height', 'horizontalAlignment', 'id', 'inEdges', 'margin', 'offset', 'outEdges', 'pathData', 'shape', 'style', 'tooltip', 'verticalAlignment', 'visibility', 'width'];
|
430
|
-
let outputs$7 = [];
|
431
|
-
/**
|
432
|
-
* Nodes Directive
|
433
|
-
* ```html
|
434
|
-
* <e-nodes>
|
435
|
-
* <e-node>
|
436
|
-
* <e-node-ports>
|
437
|
-
* <e-node-port>
|
438
|
-
* </e-node-port>
|
439
|
-
* </e-node-ports>
|
440
|
-
* </e-node>
|
441
|
-
* </e-nodes>
|
442
|
-
* ```
|
443
|
-
*/
|
444
|
-
class PortDirective extends ComplexBase {
|
445
|
-
/**
|
446
|
-
* @param {?} viewContainerRef
|
447
|
-
*/
|
448
|
-
constructor(viewContainerRef) {
|
449
|
-
super();
|
450
|
-
this.viewContainerRef = viewContainerRef;
|
451
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
452
|
-
this.registerEvents(outputs$7);
|
453
|
-
this.directivePropList = input$7;
|
454
|
-
}
|
455
|
-
}
|
456
|
-
PortDirective.decorators = [
|
457
|
-
{ type: Directive, args: [{
|
458
|
-
selector: 'e-node>e-node-ports>e-node-port',
|
459
|
-
inputs: input$7,
|
460
|
-
outputs: outputs$7,
|
461
|
-
queries: {}
|
462
|
-
},] },
|
463
|
-
];
|
464
|
-
/**
|
465
|
-
* @nocollapse
|
466
|
-
*/
|
467
|
-
PortDirective.ctorParameters = () => [
|
468
|
-
{ type: ViewContainerRef, },
|
469
|
-
];
|
470
|
-
/**
|
471
|
-
* Port Array Directive
|
472
|
-
*/
|
473
|
-
class PortsDirective extends ArrayBase {
|
474
|
-
constructor() {
|
475
|
-
super('ports');
|
476
|
-
}
|
477
|
-
}
|
478
|
-
PortsDirective.decorators = [
|
479
|
-
{ type: Directive, args: [{
|
480
|
-
selector: 'e-node>e-node-ports',
|
481
|
-
queries: {
|
482
|
-
children: new ContentChildren(PortDirective)
|
483
|
-
},
|
484
|
-
},] },
|
485
|
-
];
|
486
|
-
/**
|
487
|
-
* @nocollapse
|
488
|
-
*/
|
489
|
-
PortsDirective.ctorParameters = () => [];
|
490
|
-
|
491
|
-
let input$8 = ['addInfo', 'annotations', 'backgroundColor', 'borderColor', 'borderWidth', 'branch', 'children', 'collapseIcon', 'columnIndex', 'columnSpan', 'columns', 'constraints', 'container', 'data', 'dragSize', 'excludeFromLayout', 'expandIcon', 'fixedUserHandles', 'flip', 'flipMode', 'height', 'horizontalAlignment', 'id', 'isExpanded', 'layoutInfo', 'margin', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'offsetX', 'offsetY', 'padding', 'pivot', 'ports', 'previewSize', 'rotateAngle', 'rowIndex', 'rowSpan', 'rows', 'shadow', 'shape', 'style', 'symbolInfo', 'tooltip', 'verticalAlignment', 'visible', 'width', 'wrapper', 'zIndex'];
|
492
|
-
let outputs$8 = [];
|
493
|
-
/**
|
494
|
-
* Nodes Directive
|
495
|
-
* ```html
|
496
|
-
* <e-nodes>
|
497
|
-
* <e-node></e-node>
|
498
|
-
* </e-nodes>
|
499
|
-
* ```
|
500
|
-
*/
|
501
|
-
class NodeDirective extends ComplexBase {
|
502
|
-
/**
|
503
|
-
* @param {?} viewContainerRef
|
504
|
-
*/
|
505
|
-
constructor(viewContainerRef) {
|
506
|
-
super();
|
507
|
-
this.viewContainerRef = viewContainerRef;
|
508
|
-
this.tags = ['fixedUserHandles', 'annotations', 'ports'];
|
509
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
510
|
-
this.registerEvents(outputs$8);
|
511
|
-
this.directivePropList = input$8;
|
512
|
-
}
|
513
|
-
}
|
514
|
-
NodeDirective.decorators = [
|
515
|
-
{ type: Directive, args: [{
|
516
|
-
selector: 'e-nodes>e-node',
|
517
|
-
inputs: input$8,
|
518
|
-
outputs: outputs$8,
|
519
|
-
queries: {
|
520
|
-
childFixedUserHandles: new ContentChild(NodeFixedUserHandlesDirective),
|
521
|
-
childAnnotations: new ContentChild(NodeAnnotationsDirective),
|
522
|
-
childPorts: new ContentChild(PortsDirective)
|
523
|
-
}
|
524
|
-
},] },
|
525
|
-
];
|
526
|
-
/**
|
527
|
-
* @nocollapse
|
528
|
-
*/
|
529
|
-
NodeDirective.ctorParameters = () => [
|
530
|
-
{ type: ViewContainerRef, },
|
531
|
-
];
|
532
|
-
/**
|
533
|
-
* Node Array Directive
|
534
|
-
*/
|
535
|
-
class NodesDirective extends ArrayBase {
|
536
|
-
constructor() {
|
537
|
-
super('nodes');
|
538
|
-
}
|
539
|
-
}
|
540
|
-
NodesDirective.decorators = [
|
541
|
-
{ type: Directive, args: [{
|
542
|
-
selector: 'ej-diagram>e-nodes',
|
543
|
-
queries: {
|
544
|
-
children: new ContentChildren(NodeDirective)
|
545
|
-
},
|
546
|
-
},] },
|
547
|
-
];
|
548
|
-
/**
|
549
|
-
* @nocollapse
|
550
|
-
*/
|
551
|
-
NodesDirective.ctorParameters = () => [];
|
552
|
-
|
553
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
554
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
555
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
556
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
557
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
558
|
-
};
|
559
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
560
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
561
|
-
};
|
562
|
-
const inputs = ['addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'diagramSettings', 'drawingObject', 'enableConnectorSplit', 'enablePersistence', 'enableRtl', 'fixedUserHandleTemplate', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'model', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'segmentThumbShape', 'segmentThumbSize', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'userHandleTemplate', 'width'];
|
563
|
-
const outputs$9 = ['animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'elementDraw', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'layoutUpdated', 'load', 'loaded', 'mouseEnter', 'mouseLeave', 'mouseOver', 'mouseWheel', 'onFixedUserHandleMouseDown', 'onFixedUserHandleMouseEnter', 'onFixedUserHandleMouseLeave', 'onFixedUserHandleMouseUp', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
|
564
|
-
const twoWays = [''];
|
565
|
-
/**
|
566
|
-
* Diagram Component
|
567
|
-
* ```html
|
568
|
-
* <ej-diagram></ej-diagram>
|
569
|
-
* ```
|
570
|
-
*/
|
571
|
-
let DiagramComponent = class DiagramComponent extends Diagram {
|
572
|
-
/**
|
573
|
-
* @param {?} ngEle
|
574
|
-
* @param {?} srenderer
|
575
|
-
* @param {?} viewContainerRef
|
576
|
-
* @param {?} injector
|
577
|
-
*/
|
578
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
579
|
-
super();
|
580
|
-
this.ngEle = ngEle;
|
581
|
-
this.srenderer = srenderer;
|
582
|
-
this.viewContainerRef = viewContainerRef;
|
583
|
-
this.injector = injector;
|
584
|
-
this.tags = ['layers', 'customCursor', 'connectors', 'nodes'];
|
585
|
-
this.element = this.ngEle.nativeElement;
|
586
|
-
this.injectedModules = this.injectedModules || [];
|
587
|
-
try {
|
588
|
-
let mod = this.injector.get('DiagramsHierarchicalTree');
|
589
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
590
|
-
this.injectedModules.push(mod);
|
591
|
-
}
|
592
|
-
}
|
593
|
-
catch (_a) { }
|
594
|
-
try {
|
595
|
-
let mod = this.injector.get('DiagramsMindMap');
|
596
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
597
|
-
this.injectedModules.push(mod);
|
598
|
-
}
|
599
|
-
}
|
600
|
-
catch (_b) { }
|
601
|
-
try {
|
602
|
-
let mod = this.injector.get('DiagramsRadialTree');
|
603
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
604
|
-
this.injectedModules.push(mod);
|
605
|
-
}
|
606
|
-
}
|
607
|
-
catch (_c) { }
|
608
|
-
try {
|
609
|
-
let mod = this.injector.get('DiagramsComplexHierarchicalTree');
|
610
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
611
|
-
this.injectedModules.push(mod);
|
612
|
-
}
|
613
|
-
}
|
614
|
-
catch (_d) { }
|
615
|
-
try {
|
616
|
-
let mod = this.injector.get('DiagramsDataBinding');
|
617
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
618
|
-
this.injectedModules.push(mod);
|
619
|
-
}
|
620
|
-
}
|
621
|
-
catch (_e) { }
|
622
|
-
try {
|
623
|
-
let mod = this.injector.get('DiagramsSnapping');
|
624
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
625
|
-
this.injectedModules.push(mod);
|
626
|
-
}
|
627
|
-
}
|
628
|
-
catch (_f) { }
|
629
|
-
try {
|
630
|
-
let mod = this.injector.get('DiagramsPrintAndExport');
|
631
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
632
|
-
this.injectedModules.push(mod);
|
633
|
-
}
|
634
|
-
}
|
635
|
-
catch (_g) { }
|
636
|
-
try {
|
637
|
-
let mod = this.injector.get('DiagramsBpmnDiagrams');
|
638
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
639
|
-
this.injectedModules.push(mod);
|
640
|
-
}
|
641
|
-
}
|
642
|
-
catch (_h) { }
|
643
|
-
try {
|
644
|
-
let mod = this.injector.get('DiagramsSymmetricLayout');
|
645
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
646
|
-
this.injectedModules.push(mod);
|
647
|
-
}
|
648
|
-
}
|
649
|
-
catch (_j) { }
|
650
|
-
try {
|
651
|
-
let mod = this.injector.get('DiagramsConnectorBridging');
|
652
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
653
|
-
this.injectedModules.push(mod);
|
654
|
-
}
|
655
|
-
}
|
656
|
-
catch (_k) { }
|
657
|
-
try {
|
658
|
-
let mod = this.injector.get('DiagramsUndoRedo');
|
659
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
660
|
-
this.injectedModules.push(mod);
|
661
|
-
}
|
662
|
-
}
|
663
|
-
catch (_l) { }
|
664
|
-
try {
|
665
|
-
let mod = this.injector.get('DiagramsLayoutAnimation');
|
666
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
667
|
-
this.injectedModules.push(mod);
|
668
|
-
}
|
669
|
-
}
|
670
|
-
catch (_m) { }
|
671
|
-
try {
|
672
|
-
let mod = this.injector.get('DiagramsDiagramContextMenu');
|
673
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
674
|
-
this.injectedModules.push(mod);
|
675
|
-
}
|
676
|
-
}
|
677
|
-
catch (_o) { }
|
678
|
-
try {
|
679
|
-
let mod = this.injector.get('DiagramsLineRouting');
|
680
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
681
|
-
this.injectedModules.push(mod);
|
682
|
-
}
|
683
|
-
}
|
684
|
-
catch (_p) { }
|
685
|
-
try {
|
686
|
-
let mod = this.injector.get('DiagramsAvoidLineOverlapping');
|
687
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
688
|
-
this.injectedModules.push(mod);
|
689
|
-
}
|
690
|
-
}
|
691
|
-
catch (_q) { }
|
692
|
-
try {
|
693
|
-
let mod = this.injector.get('DiagramsConnectorEditing');
|
694
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
695
|
-
this.injectedModules.push(mod);
|
696
|
-
}
|
697
|
-
}
|
698
|
-
catch (_r) { }
|
699
|
-
try {
|
700
|
-
let mod = this.injector.get('DiagramsLineDistribution');
|
701
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
702
|
-
this.injectedModules.push(mod);
|
703
|
-
}
|
704
|
-
}
|
705
|
-
catch (_s) { }
|
706
|
-
try {
|
707
|
-
let mod = this.injector.get('DiagramsEj1Serialization');
|
708
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
709
|
-
this.injectedModules.push(mod);
|
710
|
-
}
|
711
|
-
}
|
712
|
-
catch (_t) { }
|
713
|
-
try {
|
714
|
-
let mod = this.injector.get('DiagramsFlowchartLayout');
|
715
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
716
|
-
this.injectedModules.push(mod);
|
717
|
-
}
|
718
|
-
}
|
719
|
-
catch (_u) { }
|
720
|
-
this.registerEvents(outputs$9);
|
721
|
-
this.addTwoWay.call(this, twoWays);
|
722
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
723
|
-
this.context = new ComponentBase();
|
724
|
-
}
|
725
|
-
/**
|
726
|
-
* @return {?}
|
727
|
-
*/
|
728
|
-
ngOnInit() {
|
729
|
-
this.context.ngOnInit(this);
|
730
|
-
}
|
731
|
-
/**
|
732
|
-
* @return {?}
|
733
|
-
*/
|
734
|
-
ngAfterViewInit() {
|
735
|
-
this.context.ngAfterViewInit(this);
|
736
|
-
}
|
737
|
-
/**
|
738
|
-
* @return {?}
|
739
|
-
*/
|
740
|
-
ngOnDestroy() {
|
741
|
-
this.context.ngOnDestroy(this);
|
742
|
-
}
|
743
|
-
/**
|
744
|
-
* @return {?}
|
745
|
-
*/
|
746
|
-
ngAfterContentChecked() {
|
747
|
-
this.tagObjects[0].instance = this.childLayers;
|
748
|
-
if (this.childCustomCursor) {
|
749
|
-
this.tagObjects[1].instance = this.childCustomCursor;
|
750
|
-
}
|
751
|
-
if (this.childConnectors) {
|
752
|
-
this.tagObjects[2].instance = this.childConnectors;
|
753
|
-
}
|
754
|
-
if (this.childNodes) {
|
755
|
-
this.tagObjects[3].instance = this.childNodes;
|
756
|
-
}
|
757
|
-
this.context.ngAfterContentChecked(this);
|
758
|
-
}
|
759
|
-
};
|
760
|
-
DiagramComponent.decorators = [
|
761
|
-
{ type: Component, args: [{
|
762
|
-
selector: 'ejs-diagram',
|
763
|
-
inputs: inputs,
|
764
|
-
outputs: outputs$9,
|
765
|
-
template: '',
|
766
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
767
|
-
queries: {
|
768
|
-
childLayers: new ContentChild(LayersDirective),
|
769
|
-
childCustomCursor: new ContentChild(CustomCursorsDirective),
|
770
|
-
childConnectors: new ContentChild(ConnectorsDirective),
|
771
|
-
childNodes: new ContentChild(NodesDirective)
|
772
|
-
}
|
773
|
-
},] },
|
774
|
-
];
|
775
|
-
/**
|
776
|
-
* @nocollapse
|
777
|
-
*/
|
778
|
-
DiagramComponent.ctorParameters = () => [
|
779
|
-
{ type: ElementRef, },
|
780
|
-
{ type: Renderer2, },
|
781
|
-
{ type: ViewContainerRef, },
|
782
|
-
{ type: Injector, },
|
783
|
-
];
|
784
|
-
DiagramComponent.propDecorators = {
|
785
|
-
'annotationTemplate': [{ type: ContentChild, args: ['annotationTemplate',] },],
|
786
|
-
'nodeTemplate': [{ type: ContentChild, args: ['nodeTemplate',] },],
|
787
|
-
'userHandleTemplate': [{ type: ContentChild, args: ['userHandleTemplate',] },],
|
788
|
-
};
|
789
|
-
__decorate([
|
790
|
-
Template(),
|
791
|
-
__metadata("design:type", Object)
|
792
|
-
], DiagramComponent.prototype, "annotationTemplate", void 0);
|
793
|
-
__decorate([
|
794
|
-
Template(),
|
795
|
-
__metadata("design:type", Object)
|
796
|
-
], DiagramComponent.prototype, "nodeTemplate", void 0);
|
797
|
-
__decorate([
|
798
|
-
Template(),
|
799
|
-
__metadata("design:type", Object)
|
800
|
-
], DiagramComponent.prototype, "userHandleTemplate", void 0);
|
801
|
-
DiagramComponent = __decorate([
|
802
|
-
ComponentMixins([ComponentBase]),
|
803
|
-
__metadata("design:paramtypes", [ElementRef,
|
804
|
-
Renderer2,
|
805
|
-
ViewContainerRef,
|
806
|
-
Injector])
|
807
|
-
], DiagramComponent);
|
808
|
-
|
809
|
-
/**
|
810
|
-
* NgModule definition for the Diagram component.
|
811
|
-
*/
|
812
|
-
class DiagramModule {
|
813
|
-
}
|
814
|
-
DiagramModule.decorators = [
|
815
|
-
{ type: NgModule, args: [{
|
816
|
-
imports: [CommonModule],
|
817
|
-
declarations: [
|
818
|
-
DiagramComponent,
|
819
|
-
LayerDirective,
|
820
|
-
LayersDirective,
|
821
|
-
CustomCursorDirective,
|
822
|
-
CustomCursorsDirective,
|
823
|
-
ConnectorFixedUserHandleDirective,
|
824
|
-
ConnectorFixedUserHandlesDirective,
|
825
|
-
ConnectorAnnotationDirective,
|
826
|
-
ConnectorAnnotationsDirective,
|
827
|
-
ConnectorDirective,
|
828
|
-
ConnectorsDirective,
|
829
|
-
NodeFixedUserHandleDirective,
|
830
|
-
NodeFixedUserHandlesDirective,
|
831
|
-
NodeAnnotationDirective,
|
832
|
-
NodeAnnotationsDirective,
|
833
|
-
PortDirective,
|
834
|
-
PortsDirective,
|
835
|
-
NodeDirective,
|
836
|
-
NodesDirective
|
837
|
-
],
|
838
|
-
exports: [
|
839
|
-
DiagramComponent,
|
840
|
-
LayerDirective,
|
841
|
-
LayersDirective,
|
842
|
-
CustomCursorDirective,
|
843
|
-
CustomCursorsDirective,
|
844
|
-
ConnectorFixedUserHandleDirective,
|
845
|
-
ConnectorFixedUserHandlesDirective,
|
846
|
-
ConnectorAnnotationDirective,
|
847
|
-
ConnectorAnnotationsDirective,
|
848
|
-
ConnectorDirective,
|
849
|
-
ConnectorsDirective,
|
850
|
-
NodeFixedUserHandleDirective,
|
851
|
-
NodeFixedUserHandlesDirective,
|
852
|
-
NodeAnnotationDirective,
|
853
|
-
NodeAnnotationsDirective,
|
854
|
-
PortDirective,
|
855
|
-
PortsDirective,
|
856
|
-
NodeDirective,
|
857
|
-
NodesDirective
|
858
|
-
]
|
859
|
-
},] },
|
860
|
-
];
|
861
|
-
/**
|
862
|
-
* @nocollapse
|
863
|
-
*/
|
864
|
-
DiagramModule.ctorParameters = () => [];
|
865
|
-
|
866
|
-
const HierarchicalTreeService = { provide: 'DiagramsHierarchicalTree', useValue: HierarchicalTree };
|
867
|
-
const MindMapService = { provide: 'DiagramsMindMap', useValue: MindMap };
|
868
|
-
const RadialTreeService = { provide: 'DiagramsRadialTree', useValue: RadialTree };
|
869
|
-
const ComplexHierarchicalTreeService = { provide: 'DiagramsComplexHierarchicalTree', useValue: ComplexHierarchicalTree };
|
870
|
-
const DataBindingService = { provide: 'DiagramsDataBinding', useValue: DataBinding };
|
871
|
-
const SnappingService = { provide: 'DiagramsSnapping', useValue: Snapping };
|
872
|
-
const PrintAndExportService = { provide: 'DiagramsPrintAndExport', useValue: PrintAndExport };
|
873
|
-
const BpmnDiagramsService = { provide: 'DiagramsBpmnDiagrams', useValue: BpmnDiagrams };
|
874
|
-
const SymmetricLayoutService = { provide: 'DiagramsSymmetricLayout', useValue: SymmetricLayout };
|
875
|
-
const ConnectorBridgingService = { provide: 'DiagramsConnectorBridging', useValue: ConnectorBridging };
|
876
|
-
const UndoRedoService = { provide: 'DiagramsUndoRedo', useValue: UndoRedo };
|
877
|
-
const LayoutAnimationService = { provide: 'DiagramsLayoutAnimation', useValue: LayoutAnimation };
|
878
|
-
const DiagramContextMenuService = { provide: 'DiagramsDiagramContextMenu', useValue: DiagramContextMenu };
|
879
|
-
const LineRoutingService = { provide: 'DiagramsLineRouting', useValue: LineRouting };
|
880
|
-
const AvoidLineOverlappingService = { provide: 'DiagramsAvoidLineOverlapping', useValue: AvoidLineOverlapping };
|
881
|
-
const ConnectorEditingService = { provide: 'DiagramsConnectorEditing', useValue: ConnectorEditing };
|
882
|
-
const LineDistributionService = { provide: 'DiagramsLineDistribution', useValue: LineDistribution };
|
883
|
-
const Ej1SerializationService = { provide: 'DiagramsEj1Serialization', useValue: Ej1Serialization };
|
884
|
-
const FlowchartLayoutService = { provide: 'DiagramsFlowchartLayout', useValue: FlowchartLayout };
|
885
|
-
/**
|
886
|
-
* NgModule definition for the Diagram component with providers.
|
887
|
-
*/
|
888
|
-
class DiagramAllModule {
|
889
|
-
}
|
890
|
-
DiagramAllModule.decorators = [
|
891
|
-
{ type: NgModule, args: [{
|
892
|
-
imports: [CommonModule, DiagramModule],
|
893
|
-
exports: [
|
894
|
-
DiagramModule
|
895
|
-
],
|
896
|
-
providers: [
|
897
|
-
HierarchicalTreeService,
|
898
|
-
MindMapService,
|
899
|
-
RadialTreeService,
|
900
|
-
ComplexHierarchicalTreeService,
|
901
|
-
DataBindingService,
|
902
|
-
SnappingService,
|
903
|
-
PrintAndExportService,
|
904
|
-
BpmnDiagramsService,
|
905
|
-
SymmetricLayoutService,
|
906
|
-
ConnectorBridgingService,
|
907
|
-
UndoRedoService,
|
908
|
-
LayoutAnimationService,
|
909
|
-
DiagramContextMenuService,
|
910
|
-
LineRoutingService,
|
911
|
-
AvoidLineOverlappingService,
|
912
|
-
ConnectorEditingService,
|
913
|
-
LineDistributionService,
|
914
|
-
Ej1SerializationService,
|
915
|
-
FlowchartLayoutService
|
916
|
-
]
|
917
|
-
},] },
|
918
|
-
];
|
919
|
-
/**
|
920
|
-
* @nocollapse
|
921
|
-
*/
|
922
|
-
DiagramAllModule.ctorParameters = () => [];
|
923
|
-
|
924
|
-
let input$9 = ['expanded', 'height', 'iconCss', 'id', 'symbols', 'title'];
|
925
|
-
let outputs$10 = [];
|
926
|
-
/**
|
927
|
-
* Palette Directive
|
928
|
-
* ```html
|
929
|
-
* <e-palettes><e-palette></e-palette><e-palettes>
|
930
|
-
* ```
|
931
|
-
*/
|
932
|
-
class PaletteDirective extends ComplexBase {
|
933
|
-
/**
|
934
|
-
* @param {?} viewContainerRef
|
935
|
-
*/
|
936
|
-
constructor(viewContainerRef) {
|
937
|
-
super();
|
938
|
-
this.viewContainerRef = viewContainerRef;
|
939
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
940
|
-
this.registerEvents(outputs$10);
|
941
|
-
this.directivePropList = input$9;
|
942
|
-
}
|
943
|
-
}
|
944
|
-
PaletteDirective.decorators = [
|
945
|
-
{ type: Directive, args: [{
|
946
|
-
selector: 'e-palettes>e-palette',
|
947
|
-
inputs: input$9,
|
948
|
-
outputs: outputs$10,
|
949
|
-
queries: {}
|
950
|
-
},] },
|
951
|
-
];
|
952
|
-
/**
|
953
|
-
* @nocollapse
|
954
|
-
*/
|
955
|
-
PaletteDirective.ctorParameters = () => [
|
956
|
-
{ type: ViewContainerRef, },
|
957
|
-
];
|
958
|
-
/**
|
959
|
-
* Palette Array Directive
|
960
|
-
*/
|
961
|
-
class PalettesDirective extends ArrayBase {
|
962
|
-
constructor() {
|
963
|
-
super('palettes');
|
964
|
-
}
|
965
|
-
}
|
966
|
-
PalettesDirective.decorators = [
|
967
|
-
{ type: Directive, args: [{
|
968
|
-
selector: 'ejs-symbolpalette>e-palettes',
|
969
|
-
queries: {
|
970
|
-
children: new ContentChildren(PaletteDirective)
|
971
|
-
},
|
972
|
-
},] },
|
973
|
-
];
|
974
|
-
/**
|
975
|
-
* @nocollapse
|
976
|
-
*/
|
977
|
-
PalettesDirective.ctorParameters = () => [];
|
978
|
-
|
979
|
-
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
980
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
981
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
982
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
983
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
984
|
-
};
|
985
|
-
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
986
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
987
|
-
};
|
988
|
-
const inputs$1 = ['accessKey', 'allowDrag', 'connectorDefaults', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSearch', 'expandMode', 'filterSymbols', 'getConnectorDefaults', 'getNodeDefaults', 'getSymbolInfo', 'getSymbolTemplate', 'height', 'ignoreSymbolsOnSearch', 'locale', 'nodeDefaults', 'palettes', 'symbolDragSize', 'symbolHeight', 'symbolInfo', 'symbolMargin', 'symbolPreview', 'symbolWidth', 'width'];
|
989
|
-
const outputs$11 = ['paletteExpanding', 'paletteSelectionChange'];
|
990
|
-
const twoWays$1 = [''];
|
991
|
-
/**
|
992
|
-
* SymbolPalette Component
|
993
|
-
* ```html
|
994
|
-
* <ej-symbol-palette></ej-symbol-palette>
|
995
|
-
* ```
|
996
|
-
*/
|
997
|
-
let SymbolPaletteComponent = class SymbolPaletteComponent extends SymbolPalette {
|
998
|
-
/**
|
999
|
-
* @param {?} ngEle
|
1000
|
-
* @param {?} srenderer
|
1001
|
-
* @param {?} viewContainerRef
|
1002
|
-
* @param {?} injector
|
1003
|
-
*/
|
1004
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
1005
|
-
super();
|
1006
|
-
this.ngEle = ngEle;
|
1007
|
-
this.srenderer = srenderer;
|
1008
|
-
this.viewContainerRef = viewContainerRef;
|
1009
|
-
this.injector = injector;
|
1010
|
-
this.tags = ['palettes'];
|
1011
|
-
this.element = this.ngEle.nativeElement;
|
1012
|
-
this.injectedModules = this.injectedModules || [];
|
1013
|
-
try {
|
1014
|
-
let mod = this.injector.get('DiagramsBpmnDiagrams');
|
1015
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
1016
|
-
this.injectedModules.push(mod);
|
1017
|
-
}
|
1018
|
-
}
|
1019
|
-
catch (_a) { }
|
1020
|
-
this.registerEvents(outputs$11);
|
1021
|
-
this.addTwoWay.call(this, twoWays$1);
|
1022
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
1023
|
-
this.context = new ComponentBase();
|
1024
|
-
}
|
1025
|
-
/**
|
1026
|
-
* @return {?}
|
1027
|
-
*/
|
1028
|
-
ngOnInit() {
|
1029
|
-
this.context.ngOnInit(this);
|
1030
|
-
}
|
1031
|
-
/**
|
1032
|
-
* @return {?}
|
1033
|
-
*/
|
1034
|
-
ngAfterViewInit() {
|
1035
|
-
this.context.ngAfterViewInit(this);
|
1036
|
-
}
|
1037
|
-
/**
|
1038
|
-
* @return {?}
|
1039
|
-
*/
|
1040
|
-
ngOnDestroy() {
|
1041
|
-
this.context.ngOnDestroy(this);
|
1042
|
-
}
|
1043
|
-
/**
|
1044
|
-
* @return {?}
|
1045
|
-
*/
|
1046
|
-
ngAfterContentChecked() {
|
1047
|
-
this.tagObjects[0].instance = this.childPalettes;
|
1048
|
-
this.context.ngAfterContentChecked(this);
|
1049
|
-
}
|
1050
|
-
};
|
1051
|
-
SymbolPaletteComponent.decorators = [
|
1052
|
-
{ type: Component, args: [{
|
1053
|
-
selector: 'ejs-symbolpalette',
|
1054
|
-
inputs: inputs$1,
|
1055
|
-
outputs: outputs$11,
|
1056
|
-
template: '',
|
1057
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
1058
|
-
queries: {
|
1059
|
-
childPalettes: new ContentChild(PalettesDirective)
|
1060
|
-
}
|
1061
|
-
},] },
|
1062
|
-
];
|
1063
|
-
/**
|
1064
|
-
* @nocollapse
|
1065
|
-
*/
|
1066
|
-
SymbolPaletteComponent.ctorParameters = () => [
|
1067
|
-
{ type: ElementRef, },
|
1068
|
-
{ type: Renderer2, },
|
1069
|
-
{ type: ViewContainerRef, },
|
1070
|
-
{ type: Injector, },
|
1071
|
-
];
|
1072
|
-
SymbolPaletteComponent = __decorate$1([
|
1073
|
-
ComponentMixins([ComponentBase]),
|
1074
|
-
__metadata$1("design:paramtypes", [ElementRef,
|
1075
|
-
Renderer2,
|
1076
|
-
ViewContainerRef,
|
1077
|
-
Injector])
|
1078
|
-
], SymbolPaletteComponent);
|
1079
|
-
|
1080
|
-
/**
|
1081
|
-
* NgModule definition for the SymbolPalette component.
|
1082
|
-
*/
|
1083
|
-
class SymbolPaletteModule {
|
1084
|
-
}
|
1085
|
-
SymbolPaletteModule.decorators = [
|
1086
|
-
{ type: NgModule, args: [{
|
1087
|
-
imports: [CommonModule],
|
1088
|
-
declarations: [
|
1089
|
-
SymbolPaletteComponent,
|
1090
|
-
PaletteDirective,
|
1091
|
-
PalettesDirective
|
1092
|
-
],
|
1093
|
-
exports: [
|
1094
|
-
SymbolPaletteComponent,
|
1095
|
-
PaletteDirective,
|
1096
|
-
PalettesDirective
|
1097
|
-
]
|
1098
|
-
},] },
|
1099
|
-
];
|
1100
|
-
/**
|
1101
|
-
* @nocollapse
|
1102
|
-
*/
|
1103
|
-
SymbolPaletteModule.ctorParameters = () => [];
|
1104
|
-
|
1105
|
-
/**
|
1106
|
-
* NgModule definition for the SymbolPalette component with providers.
|
1107
|
-
*/
|
1108
|
-
class SymbolPaletteAllModule {
|
1109
|
-
}
|
1110
|
-
SymbolPaletteAllModule.decorators = [
|
1111
|
-
{ type: NgModule, args: [{
|
1112
|
-
imports: [CommonModule, SymbolPaletteModule],
|
1113
|
-
exports: [
|
1114
|
-
SymbolPaletteModule
|
1115
|
-
],
|
1116
|
-
providers: []
|
1117
|
-
},] },
|
1118
|
-
];
|
1119
|
-
/**
|
1120
|
-
* @nocollapse
|
1121
|
-
*/
|
1122
|
-
SymbolPaletteAllModule.ctorParameters = () => [];
|
1123
|
-
|
1124
|
-
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
1125
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
1126
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
1127
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
1128
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
1129
|
-
};
|
1130
|
-
var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
1131
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
1132
|
-
};
|
1133
|
-
const inputs$2 = ['enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width'];
|
1134
|
-
const outputs$12 = ['created'];
|
1135
|
-
const twoWays$2 = [''];
|
1136
|
-
/**
|
1137
|
-
* Overview Component
|
1138
|
-
* ```html
|
1139
|
-
* <ej-overview></ej-overview>
|
1140
|
-
* ```
|
1141
|
-
*/
|
1142
|
-
let OverviewComponent = class OverviewComponent extends Overview {
|
1143
|
-
/**
|
1144
|
-
* @param {?} ngEle
|
1145
|
-
* @param {?} srenderer
|
1146
|
-
* @param {?} viewContainerRef
|
1147
|
-
* @param {?} injector
|
1148
|
-
*/
|
1149
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
1150
|
-
super();
|
1151
|
-
this.ngEle = ngEle;
|
1152
|
-
this.srenderer = srenderer;
|
1153
|
-
this.viewContainerRef = viewContainerRef;
|
1154
|
-
this.injector = injector;
|
1155
|
-
this.tags = [''];
|
1156
|
-
this.element = this.ngEle.nativeElement;
|
1157
|
-
this.injectedModules = this.injectedModules || [];
|
1158
|
-
this.registerEvents(outputs$12);
|
1159
|
-
this.addTwoWay.call(this, twoWays$2);
|
1160
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
1161
|
-
this.context = new ComponentBase();
|
1162
|
-
}
|
1163
|
-
/**
|
1164
|
-
* @return {?}
|
1165
|
-
*/
|
1166
|
-
ngOnInit() {
|
1167
|
-
this.context.ngOnInit(this);
|
1168
|
-
}
|
1169
|
-
/**
|
1170
|
-
* @return {?}
|
1171
|
-
*/
|
1172
|
-
ngAfterViewInit() {
|
1173
|
-
this.context.ngAfterViewInit(this);
|
1174
|
-
}
|
1175
|
-
/**
|
1176
|
-
* @return {?}
|
1177
|
-
*/
|
1178
|
-
ngOnDestroy() {
|
1179
|
-
this.context.ngOnDestroy(this);
|
1180
|
-
}
|
1181
|
-
/**
|
1182
|
-
* @return {?}
|
1183
|
-
*/
|
1184
|
-
ngAfterContentChecked() {
|
1185
|
-
this.context.ngAfterContentChecked(this);
|
1186
|
-
}
|
1187
|
-
};
|
1188
|
-
OverviewComponent.decorators = [
|
1189
|
-
{ type: Component, args: [{
|
1190
|
-
selector: 'ejs-overview',
|
1191
|
-
inputs: inputs$2,
|
1192
|
-
outputs: outputs$12,
|
1193
|
-
template: '',
|
1194
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
1195
|
-
queries: {}
|
1196
|
-
},] },
|
1197
|
-
];
|
1198
|
-
/**
|
1199
|
-
* @nocollapse
|
1200
|
-
*/
|
1201
|
-
OverviewComponent.ctorParameters = () => [
|
1202
|
-
{ type: ElementRef, },
|
1203
|
-
{ type: Renderer2, },
|
1204
|
-
{ type: ViewContainerRef, },
|
1205
|
-
{ type: Injector, },
|
1206
|
-
];
|
1207
|
-
OverviewComponent = __decorate$2([
|
1208
|
-
ComponentMixins([ComponentBase]),
|
1209
|
-
__metadata$2("design:paramtypes", [ElementRef,
|
1210
|
-
Renderer2,
|
1211
|
-
ViewContainerRef,
|
1212
|
-
Injector])
|
1213
|
-
], OverviewComponent);
|
1214
|
-
|
1215
|
-
/**
|
1216
|
-
* NgModule definition for the Overview component.
|
1217
|
-
*/
|
1218
|
-
class OverviewModule {
|
1219
|
-
}
|
1220
|
-
OverviewModule.decorators = [
|
1221
|
-
{ type: NgModule, args: [{
|
1222
|
-
imports: [CommonModule],
|
1223
|
-
declarations: [
|
1224
|
-
OverviewComponent
|
1225
|
-
],
|
1226
|
-
exports: [
|
1227
|
-
OverviewComponent
|
1228
|
-
]
|
1229
|
-
},] },
|
1230
|
-
];
|
1231
|
-
/**
|
1232
|
-
* @nocollapse
|
1233
|
-
*/
|
1234
|
-
OverviewModule.ctorParameters = () => [];
|
1235
|
-
|
1236
|
-
/**
|
1237
|
-
* NgModule definition for the Overview component with providers.
|
1238
|
-
*/
|
1239
|
-
class OverviewAllModule {
|
1240
|
-
}
|
1241
|
-
OverviewAllModule.decorators = [
|
1242
|
-
{ type: NgModule, args: [{
|
1243
|
-
imports: [CommonModule, OverviewModule],
|
1244
|
-
exports: [
|
1245
|
-
OverviewModule
|
1246
|
-
],
|
1247
|
-
providers: []
|
1248
|
-
},] },
|
1249
|
-
];
|
1250
|
-
/**
|
1251
|
-
* @nocollapse
|
1252
|
-
*/
|
1253
|
-
OverviewAllModule.ctorParameters = () => [];
|
1254
|
-
|
1255
|
-
/**
|
1256
|
-
* Generated bundle index. Do not edit.
|
1257
|
-
*/
|
1258
|
-
|
1259
|
-
export { LayerDirective, LayersDirective, CustomCursorDirective, CustomCursorsDirective, ConnectorFixedUserHandleDirective, ConnectorFixedUserHandlesDirective, ConnectorAnnotationDirective, ConnectorAnnotationsDirective, ConnectorDirective, ConnectorsDirective, NodeFixedUserHandleDirective, NodeFixedUserHandlesDirective, NodeAnnotationDirective, NodeAnnotationsDirective, PortDirective, PortsDirective, NodeDirective, NodesDirective, DiagramComponent, DiagramModule, DiagramAllModule, HierarchicalTreeService, MindMapService, RadialTreeService, ComplexHierarchicalTreeService, DataBindingService, SnappingService, PrintAndExportService, BpmnDiagramsService, SymmetricLayoutService, ConnectorBridgingService, UndoRedoService, LayoutAnimationService, DiagramContextMenuService, LineRoutingService, AvoidLineOverlappingService, ConnectorEditingService, LineDistributionService, Ej1SerializationService, FlowchartLayoutService, PaletteDirective, PalettesDirective, SymbolPaletteComponent, SymbolPaletteModule, SymbolPaletteAllModule, OverviewComponent, OverviewModule, OverviewAllModule, inputs as ɵa, outputs$9 as ɵb, inputs$2 as ɵe, outputs$12 as ɵf, inputs$1 as ɵc, outputs$11 as ɵd };
|
1260
|
-
export { Diagram, PrintAndExport, Size, Rect, MatrixTypes, Matrix, identityMatrix, transformPointByMatrix, transformPointsByMatrix, rotateMatrix, scaleMatrix, translateMatrix, multiplyMatrix, Point, BlazorAction, FlipDirection, PortVisibility, SnapConstraints, SelectorConstraints, ConnectionPointOrigin, ChildArrangement, ConnectorConstraints, AnnotationConstraints, NodeConstraints, ElementAction, ThumbsConstraints, DiagramConstraints, DiagramTools, Transform, RenderMode, KeyModifiers, Keys, DiagramAction, RendererAction, RealAction, ScrollActions, NoOfSegments, DiagramEvent, PortConstraints, contextMenuClick, contextMenuOpen, contextMenuBeforeItemRender, ControlPointsVisibility, BezierSmoothness, Thickness, Margin, Shadow, Stop, Gradient, DiagramGradient, LinearGradient, RadialGradient, ShapeStyle, StrokeStyle, TextStyle, DiagramShapeStyle, DiagramElement, PathElement, ImageElement, TextElement, GroupableView, Canvas, GridPanel, RowDefinition, ColumnDefinition, GridRow, GridCell, StackPanel, findConnectorPoints, swapBounds, findMargin, findAngle, findPoint, getIntersection, getIntersectionPoints, orthoConnection2Segment, getPortDirection, getOuterBounds, getOppositeDirection, processPathData, parsePathData, getRectanglePath, getPolygonPath, getFreeHandPath, pathSegmentCollection, transformPath, updatedSegment, scalePathData, splitArrayCollection, getPathString, getString, randomId, getIndex, templateCompiler, cornersPointsBeforeRotation, getBounds, cloneObject, getInternalProperties, cloneArray, extendObject, extendArray, textAlignToString, wordBreakToString, bBoxText, middleElement, overFlow, whiteSpaceToString, rotateSize, rotatePoint, getOffset, getFunction, completeRegion, findNodeByName, findObjectType, setSwimLaneDefaults, getSpaceValue, getInterval, setPortsEdges, setUMLActivityDefaults, setConnectorDefaults, findNearestPoint, isDiagramChild, groupHasType, updateDefaultValues, updateLayoutValue, isPointOverConnector, intersect3, intersect2, getLineSegment, getPoints, getTooltipOffset, initFixedUserHandlesSymbol, sort, getAnnotationPosition, getPortsPosition, getOffsetOfPorts, getAlignedPositionForPorts, getOffsetOfConnector, getAlignedPosition, alignLabelOnSegments, getBezierDirection, removeChildNodes, getChild, serialize, deserialize, changeOldFlipDirectionType, upgrade, updateStyle, updateHyperlink, updateShapeContent, updateShape, updateContent, updateUmlActivityNode, getUMLFinalNode, getUMLActivityShapes, removeGradient, removeItem, updateConnector, getUserHandlePosition, canResizeCorner, canShowCorner, canShowControlPoints, checkPortRestriction, findAnnotation, findPort, getInOutConnectPorts, findObjectIndex, findPortIndex, getObjectFromCollection, scaleElement, arrangeChild, sortNodeCollection, insertObject, getElement, getCollectionChangeEventArguements, getDropEventArguements, getPoint, getObjectType, flipConnector, updatePortEdges, alignElement, cloneSelectedObjects, updatePathElement, getPathOffset, checkPort, findPath, getConnectorDirection, findDistance, cloneBlazorObject, checkBrowserInfo, canMeasureDecoratorPath, getPreviewSize, getSymbolSize, findParentInSwimlane, selectionHasConnector, getConnectorArrowType, alignChildBasedOnaPoint, getFlippedPoint, isLabelFlipped, containsBounds, CanvasRenderer, DiagramRenderer, DataBinding, getBasicShape, getPortShape, getDecoratorShape, getSegmentThumbShapeHorizontal, getSegmentThumbShapeVertical, getIconShape, getFlowShape, Hyperlink, Annotation, ShapeAnnotation, PathAnnotation, Port, PointPort, PathPort, menuClass, DiagramContextMenu, Shape, Path, Native, Html, Image, Text, BasicShape, FlowShape, BpmnGateway, BpmnDataObject, BpmnTask, BpmnEvent, BpmnSubEvent, BpmnTransactionSubProcess, BpmnSubProcess, BpmnActivity, BpmnAnnotation, BpmnTextAnnotation, BpmnShape, UmlActivityShape, MethodArguments, UmlClassAttribute, UmlClassMethod, UmlClass, UmlInterface, UmlEnumerationMember, UmlEnumeration, UmlClassifierShape, DiagramShape, Node, Header, Lane, Phase, SwimLane, Container, ChildContainer, Selector, BpmnDiagrams, getBpmnShapePathData, getBpmnTriggerShapePathData, getBpmnGatewayShapePathData, getBpmnTaskShapePathData, getBpmnLoopShapePathData, Decorator, Vector, BezierSettings, ConnectorShape, ActivityFlow, BpmnFlow, ConnectorSegment, StraightSegment, BezierSegment, OrthogonalSegment, DiagramConnectorSegment, getDirection, isEmptyVector, getBezierPoints, getBezierBounds, bezierPoints, MultiplicityLabel, ClassifierMultiplicity, RelationShip, DiagramConnectorShape, Connector, ConnectorBridging, Snapping, UndoRedo, DiagramTooltip, initTooltip, updateTooltip, LayoutAnimation, SymbolSize, SymbolPaletteInfo, FixedUserHandle, NodeFixedUserHandle, ConnectorFixedUserHandle, UserHandle, ToolBase, SelectTool, FixedUserHandleTool, ConnectTool, MoveTool, RotateTool, ResizeTool, NodeDrawingTool, ConnectorDrawingTool, TextDrawingTool, ZoomPanTool, ExpandTool, LabelTool, PolygonDrawingTool, PolyLineDrawingTool, LabelDragTool, LabelResizeTool, LabelRotateTool, FreeHandTool, DiagramEventHandler, CommandHandler, findToolToActivate, findPortToolToActivate, contains, hasSelection, hasSingleConnection, isSelected, getCursor, ConnectorEditing, updateCanvasBounds, removeChildInContainer, findBounds, createHelper, renderContainerHelper, checkParentAsContainer, checkChildNodeInContainer, updateZindex, addChildToContainer, updateLaneBoundsWithSelector, updateLaneBoundsAfterAddChild, renderStackHighlighter, moveChildInStack, LineRouting, AvoidLineOverlapping, LineDistribution, CrudAction, ConnectionDataSource, DataSource, Gridlines, SnapSettings, KeyGesture, Command, CommandManager, ContextMenuSettings, CustomCursorAction, DataMappingItems, UmlSequenceMessageType, UmlSequenceFragmentType, UmlSequenceActivationBox, UmlSequenceParticipant, UmlSequenceMessage, UmlSequenceFragmentCondition, UmlSequenceFragment, UmlSequenceDiagram, FlowchartLayoutSettings, Layout, MindMap, HierarchicalTree, RadialTree, GraphForceNode, SymmetricLayout, GraphLayoutManager, ComplexHierarchicalTree, FlowchartLayout, ConnectorProperties, LabelProperties, Ej1Serialization, NodeProperties, PortProperties, Palette, SymbolDragSize, SymbolPreview, SymbolPalette, Ruler, Overview } from '@syncfusion/ej2-diagrams';
|
1261
|
-
//# sourceMappingURL=ej2-angular-diagrams.js.map
|