@syncfusion/ej2-angular-diagrams 25.2.5-ngcc → 26.1.35-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 (58) hide show
  1. package/@syncfusion/ej2-angular-diagrams.es5.js +6 -6
  2. package/@syncfusion/ej2-angular-diagrams.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-diagrams.js +6 -6
  4. package/@syncfusion/ej2-angular-diagrams.js.map +1 -1
  5. package/dist/ej2-angular-diagrams.umd.js +376 -119
  6. package/dist/ej2-angular-diagrams.umd.js.map +1 -1
  7. package/dist/ej2-angular-diagrams.umd.min.js +2 -2
  8. package/dist/ej2-angular-diagrams.umd.min.js.map +1 -1
  9. package/ej2-angular-diagrams.metadata.json +1 -1
  10. package/package.json +9 -9
  11. package/schematics/utils/lib-details.js +2 -2
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/diagram/connector-annotation.directive.d.ts +5 -0
  14. package/src/diagram/connector-fixeduserhandle.directive.d.ts +5 -0
  15. package/src/diagram/diagram.component.d.ts +5 -1
  16. package/src/diagram/node-annotation.directive.d.ts +5 -0
  17. package/src/diagram/node-fixeduserhandle.directive.d.ts +5 -0
  18. package/src/diagram/ports.directive.d.ts +10 -0
  19. package/styles/bootstrap-dark.css +368 -1
  20. package/styles/bootstrap.css +368 -1
  21. package/styles/bootstrap4.css +368 -1
  22. package/styles/bootstrap5-dark.css +369 -1
  23. package/styles/bootstrap5.css +369 -1
  24. package/styles/diagram/bootstrap-dark.css +368 -1
  25. package/styles/diagram/bootstrap.css +368 -1
  26. package/styles/diagram/bootstrap4.css +368 -1
  27. package/styles/diagram/bootstrap5-dark.css +369 -1
  28. package/styles/diagram/bootstrap5.css +369 -1
  29. package/styles/diagram/fabric-dark.css +368 -1
  30. package/styles/diagram/fabric.css +368 -1
  31. package/styles/diagram/fluent-dark.css +369 -1
  32. package/styles/diagram/fluent.css +369 -1
  33. package/styles/diagram/fluent2.css +1402 -0
  34. package/styles/diagram/fluent2.scss +1 -0
  35. package/styles/diagram/highcontrast-light.css +367 -1
  36. package/styles/diagram/highcontrast.css +369 -1
  37. package/styles/diagram/material-dark.css +368 -1
  38. package/styles/diagram/material.css +368 -1
  39. package/styles/diagram/material3-dark.css +479 -1
  40. package/styles/diagram/material3.css +591 -1
  41. package/styles/diagram/tailwind-dark.css +369 -1
  42. package/styles/diagram/tailwind.css +369 -1
  43. package/styles/fabric-dark.css +368 -1
  44. package/styles/fabric.css +368 -1
  45. package/styles/fluent-dark.css +369 -1
  46. package/styles/fluent.css +369 -1
  47. package/styles/fluent2.css +1402 -0
  48. package/styles/fluent2.scss +1 -0
  49. package/styles/highcontrast-light.css +367 -1
  50. package/styles/highcontrast.css +369 -1
  51. package/styles/material-dark.css +368 -1
  52. package/styles/material.css +368 -1
  53. package/styles/material3-dark.css +479 -1
  54. package/styles/material3.css +591 -1
  55. package/styles/tailwind-dark.css +369 -1
  56. package/styles/tailwind.css +369 -1
  57. package/CHANGELOG.md +0 -2095
  58. package/postinstall/tagchange.js +0 -18
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-diagrams.umd.js
3
- * version : 25.2.5
3
+ * version : 26.1.35
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -25,10 +25,19 @@ var __extends = (this && this.__extends) || (function () {
25
25
  })();
26
26
  var input = ['addInfo', 'id', 'lock', 'objects', 'visible', 'zIndex'];
27
27
  var outputs = [];
28
-
29
- var LayerDirective = (function (_super) {
28
+ /**
29
+ * Layers Directive
30
+ * ```html
31
+ * <e-layers>
32
+ * <e-layer></e-layer>
33
+ * </e-layers>
34
+ * ```
35
+ */
36
+ var LayerDirective = /** @class */ (function (_super) {
30
37
  __extends(LayerDirective, _super);
31
-
38
+ /**
39
+ * @param {?} viewContainerRef
40
+ */
32
41
  function LayerDirective(viewContainerRef) {
33
42
  var _this = _super.call(this) || this;
34
43
  _this.viewContainerRef = viewContainerRef;
@@ -47,12 +56,16 @@ LayerDirective.decorators = [
47
56
  queries: {}
48
57
  },] },
49
58
  ];
50
-
59
+ /**
60
+ * @nocollapse
61
+ */
51
62
  LayerDirective.ctorParameters = function () { return [
52
63
  { type: core.ViewContainerRef, },
53
64
  ]; };
54
-
55
- var LayersDirective = (function (_super) {
65
+ /**
66
+ * Layer Array Directive
67
+ */
68
+ var LayersDirective = /** @class */ (function (_super) {
56
69
  __extends(LayersDirective, _super);
57
70
  function LayersDirective() {
58
71
  return _super.call(this, 'layers') || this;
@@ -67,14 +80,25 @@ LayersDirective.decorators = [
67
80
  },
68
81
  },] },
69
82
  ];
70
-
83
+ /**
84
+ * @nocollapse
85
+ */
71
86
  LayersDirective.ctorParameters = function () { return []; };
72
87
  var input$1 = ['action', 'cursor'];
73
88
  var outputs$1 = [];
74
-
75
- var CustomCursorDirective = (function (_super) {
89
+ /**
90
+ * Cursor Maps Directive
91
+ * ```html
92
+ * <e-cusrsormaps>
93
+ * <e-cursormap></e-cursormap>
94
+ * </e-cursormaps>
95
+ * ```
96
+ */
97
+ var CustomCursorDirective = /** @class */ (function (_super) {
76
98
  __extends(CustomCursorDirective, _super);
77
-
99
+ /**
100
+ * @param {?} viewContainerRef
101
+ */
78
102
  function CustomCursorDirective(viewContainerRef) {
79
103
  var _this = _super.call(this) || this;
80
104
  _this.viewContainerRef = viewContainerRef;
@@ -93,12 +117,16 @@ CustomCursorDirective.decorators = [
93
117
  queries: {}
94
118
  },] },
95
119
  ];
96
-
120
+ /**
121
+ * @nocollapse
122
+ */
97
123
  CustomCursorDirective.ctorParameters = function () { return [
98
124
  { type: core.ViewContainerRef, },
99
125
  ]; };
100
-
101
- var CustomCursorsDirective = (function (_super) {
126
+ /**
127
+ * CustomCursor Array Directive
128
+ */
129
+ var CustomCursorsDirective = /** @class */ (function (_super) {
102
130
  __extends(CustomCursorsDirective, _super);
103
131
  function CustomCursorsDirective() {
104
132
  return _super.call(this, 'customcursor') || this;
@@ -113,14 +141,30 @@ CustomCursorsDirective.decorators = [
113
141
  },
114
142
  },] },
115
143
  ];
116
-
144
+ /**
145
+ * @nocollapse
146
+ */
117
147
  CustomCursorsDirective.ctorParameters = function () { return []; };
118
- var input$2 = ['alignment', 'cornerRadius', 'displacement', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'offset', 'padding', 'pathData', 'visibility', 'width'];
148
+ var input$2 = ['alignment', 'cornerRadius', 'displacement', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'offset', 'padding', 'pathData', 'tooltip', 'visibility', 'width'];
119
149
  var outputs$2 = [];
120
-
121
- var ConnectorFixedUserHandleDirective = (function (_super) {
150
+ /**
151
+ * Connectors Directive
152
+ * ```html
153
+ * <e-connectors>
154
+ * <e-connector>
155
+ * <e-connector-fixeduserhandles>
156
+ * <e-connector-fixeduserhandle>
157
+ * </e-connector-fixeduserhandle>
158
+ * </e-connector-fixeduserhandles>
159
+ * </e-connector>
160
+ * </e-connectors>
161
+ * ```
162
+ */
163
+ var ConnectorFixedUserHandleDirective = /** @class */ (function (_super) {
122
164
  __extends(ConnectorFixedUserHandleDirective, _super);
123
-
165
+ /**
166
+ * @param {?} viewContainerRef
167
+ */
124
168
  function ConnectorFixedUserHandleDirective(viewContainerRef) {
125
169
  var _this = _super.call(this) || this;
126
170
  _this.viewContainerRef = viewContainerRef;
@@ -139,12 +183,16 @@ ConnectorFixedUserHandleDirective.decorators = [
139
183
  queries: {}
140
184
  },] },
141
185
  ];
142
-
186
+ /**
187
+ * @nocollapse
188
+ */
143
189
  ConnectorFixedUserHandleDirective.ctorParameters = function () { return [
144
190
  { type: core.ViewContainerRef, },
145
191
  ]; };
146
-
147
- var ConnectorFixedUserHandlesDirective = (function (_super) {
192
+ /**
193
+ * ConnectorFixedUserHandle Array Directive
194
+ */
195
+ var ConnectorFixedUserHandlesDirective = /** @class */ (function (_super) {
148
196
  __extends(ConnectorFixedUserHandlesDirective, _super);
149
197
  function ConnectorFixedUserHandlesDirective() {
150
198
  return _super.call(this, 'fixeduserhandles') || this;
@@ -159,14 +207,30 @@ ConnectorFixedUserHandlesDirective.decorators = [
159
207
  },
160
208
  },] },
161
209
  ];
162
-
210
+ /**
211
+ * @nocollapse
212
+ */
163
213
  ConnectorFixedUserHandlesDirective.ctorParameters = function () { return []; };
164
- var input$3 = ['addInfo', 'alignment', 'annotationType', 'constraints', 'content', 'displacement', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'segmentAngle', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
214
+ var input$3 = ['addInfo', 'alignment', 'annotationType', 'constraints', 'content', 'displacement', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'rotationReference', 'segmentAngle', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
165
215
  var outputs$3 = [];
166
-
167
- var ConnectorAnnotationDirective = (function (_super) {
216
+ /**
217
+ * Connectors Directive
218
+ * ```html
219
+ * <e-connectors>
220
+ * <e-connector>
221
+ * <e-connector-annotations>
222
+ * <e-connector-annotation>
223
+ * </e-connector-annotation>
224
+ * </e-connector-annotations>
225
+ * </e-connector>
226
+ * </e-connectors>
227
+ * ```
228
+ */
229
+ var ConnectorAnnotationDirective = /** @class */ (function (_super) {
168
230
  __extends(ConnectorAnnotationDirective, _super);
169
-
231
+ /**
232
+ * @param {?} viewContainerRef
233
+ */
170
234
  function ConnectorAnnotationDirective(viewContainerRef) {
171
235
  var _this = _super.call(this) || this;
172
236
  _this.viewContainerRef = viewContainerRef;
@@ -185,12 +249,16 @@ ConnectorAnnotationDirective.decorators = [
185
249
  queries: {}
186
250
  },] },
187
251
  ];
188
-
252
+ /**
253
+ * @nocollapse
254
+ */
189
255
  ConnectorAnnotationDirective.ctorParameters = function () { return [
190
256
  { type: core.ViewContainerRef, },
191
257
  ]; };
192
-
193
- var ConnectorAnnotationsDirective = (function (_super) {
258
+ /**
259
+ * ConnectorAnnotation Array Directive
260
+ */
261
+ var ConnectorAnnotationsDirective = /** @class */ (function (_super) {
194
262
  __extends(ConnectorAnnotationsDirective, _super);
195
263
  function ConnectorAnnotationsDirective() {
196
264
  return _super.call(this, 'annotations') || this;
@@ -205,14 +273,25 @@ ConnectorAnnotationsDirective.decorators = [
205
273
  },
206
274
  },] },
207
275
  ];
208
-
276
+ /**
277
+ * @nocollapse
278
+ */
209
279
  ConnectorAnnotationsDirective.ctorParameters = function () { return []; };
210
280
  var input$4 = ['addInfo', 'allowNodeOverlap', 'annotations', 'bezierSettings', 'bridgeSpace', 'connectionPadding', 'connectorSpacing', 'constraints', 'cornerRadius', 'dragSize', 'excludeFromLayout', 'fixedUserHandles', 'flip', 'flipMode', 'hitPadding', 'id', 'margin', 'maxSegmentThumb', 'ports', 'previewSize', 'segmentThumbShape', 'segments', 'shape', 'sourceDecorator', 'sourceID', 'sourcePadding', 'sourcePoint', 'sourcePortID', 'style', 'symbolInfo', 'targetDecorator', 'targetID', 'targetPadding', 'targetPoint', 'targetPortID', 'tooltip', 'type', 'visible', 'wrapper', 'zIndex'];
211
281
  var outputs$4 = [];
212
-
213
- var ConnectorDirective = (function (_super) {
282
+ /**
283
+ * Connectors Directive
284
+ * ```html
285
+ * <e-connectors>
286
+ * <e-connector></e-connector>
287
+ * </e-connectors>
288
+ * ```
289
+ */
290
+ var ConnectorDirective = /** @class */ (function (_super) {
214
291
  __extends(ConnectorDirective, _super);
215
-
292
+ /**
293
+ * @param {?} viewContainerRef
294
+ */
216
295
  function ConnectorDirective(viewContainerRef) {
217
296
  var _this = _super.call(this) || this;
218
297
  _this.viewContainerRef = viewContainerRef;
@@ -235,12 +314,16 @@ ConnectorDirective.decorators = [
235
314
  }
236
315
  },] },
237
316
  ];
238
-
317
+ /**
318
+ * @nocollapse
319
+ */
239
320
  ConnectorDirective.ctorParameters = function () { return [
240
321
  { type: core.ViewContainerRef, },
241
322
  ]; };
242
-
243
- var ConnectorsDirective = (function (_super) {
323
+ /**
324
+ * Connector Array Directive
325
+ */
326
+ var ConnectorsDirective = /** @class */ (function (_super) {
244
327
  __extends(ConnectorsDirective, _super);
245
328
  function ConnectorsDirective() {
246
329
  return _super.call(this, 'connectors') || this;
@@ -255,14 +338,30 @@ ConnectorsDirective.decorators = [
255
338
  },
256
339
  },] },
257
340
  ];
258
-
341
+ /**
342
+ * @nocollapse
343
+ */
259
344
  ConnectorsDirective.ctorParameters = function () { return []; };
260
- var input$5 = ['cornerRadius', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'margin', 'offset', 'padding', 'pathData', 'visibility', 'width'];
345
+ var input$5 = ['cornerRadius', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'margin', 'offset', 'padding', 'pathData', 'tooltip', 'visibility', 'width'];
261
346
  var outputs$5 = [];
262
-
263
- var NodeFixedUserHandleDirective = (function (_super) {
347
+ /**
348
+ * Nodes Directive
349
+ * ```html
350
+ * <e-nodes>
351
+ * <e-node>
352
+ * <e-node-fixeduserhandles>
353
+ * <e-node-fixeduserhandle>
354
+ * </e-node-fixeduserhandle>
355
+ * </e-node-fixeduserhandles>
356
+ * </e-node>
357
+ * </e-nodes>
358
+ * ```
359
+ */
360
+ var NodeFixedUserHandleDirective = /** @class */ (function (_super) {
264
361
  __extends(NodeFixedUserHandleDirective, _super);
265
-
362
+ /**
363
+ * @param {?} viewContainerRef
364
+ */
266
365
  function NodeFixedUserHandleDirective(viewContainerRef) {
267
366
  var _this = _super.call(this) || this;
268
367
  _this.viewContainerRef = viewContainerRef;
@@ -281,12 +380,16 @@ NodeFixedUserHandleDirective.decorators = [
281
380
  queries: {}
282
381
  },] },
283
382
  ];
284
-
383
+ /**
384
+ * @nocollapse
385
+ */
285
386
  NodeFixedUserHandleDirective.ctorParameters = function () { return [
286
387
  { type: core.ViewContainerRef, },
287
388
  ]; };
288
-
289
- var NodeFixedUserHandlesDirective = (function (_super) {
389
+ /**
390
+ * NodeFixedUserHandle Array Directive
391
+ */
392
+ var NodeFixedUserHandlesDirective = /** @class */ (function (_super) {
290
393
  __extends(NodeFixedUserHandlesDirective, _super);
291
394
  function NodeFixedUserHandlesDirective() {
292
395
  return _super.call(this, 'fixeduserhandles') || this;
@@ -301,14 +404,30 @@ NodeFixedUserHandlesDirective.decorators = [
301
404
  },
302
405
  },] },
303
406
  ];
304
-
407
+ /**
408
+ * @nocollapse
409
+ */
305
410
  NodeFixedUserHandlesDirective.ctorParameters = function () { return []; };
306
- var input$6 = ['addInfo', 'annotationType', 'constraints', 'content', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
411
+ var input$6 = ['addInfo', 'annotationType', 'constraints', 'content', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'rotationReference', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
307
412
  var outputs$6 = [];
308
-
309
- var NodeAnnotationDirective = (function (_super) {
413
+ /**
414
+ * Nodes Directive
415
+ * ```html
416
+ * <e-nodes>
417
+ * <e-node>
418
+ * <e-node-annotations>
419
+ * <e-node-annotation>
420
+ * </e-node-annotation>
421
+ * </e-node-annotations>
422
+ * </e-node>
423
+ * </e-nodes>
424
+ * ```
425
+ */
426
+ var NodeAnnotationDirective = /** @class */ (function (_super) {
310
427
  __extends(NodeAnnotationDirective, _super);
311
-
428
+ /**
429
+ * @param {?} viewContainerRef
430
+ */
312
431
  function NodeAnnotationDirective(viewContainerRef) {
313
432
  var _this = _super.call(this) || this;
314
433
  _this.viewContainerRef = viewContainerRef;
@@ -327,12 +446,16 @@ NodeAnnotationDirective.decorators = [
327
446
  queries: {}
328
447
  },] },
329
448
  ];
330
-
449
+ /**
450
+ * @nocollapse
451
+ */
331
452
  NodeAnnotationDirective.ctorParameters = function () { return [
332
453
  { type: core.ViewContainerRef, },
333
454
  ]; };
334
-
335
- var NodeAnnotationsDirective = (function (_super) {
455
+ /**
456
+ * NodeAnnotation Array Directive
457
+ */
458
+ var NodeAnnotationsDirective = /** @class */ (function (_super) {
336
459
  __extends(NodeAnnotationsDirective, _super);
337
460
  function NodeAnnotationsDirective() {
338
461
  return _super.call(this, 'annotations') || this;
@@ -347,14 +470,30 @@ NodeAnnotationsDirective.decorators = [
347
470
  },
348
471
  },] },
349
472
  ];
350
-
473
+ /**
474
+ * @nocollapse
475
+ */
351
476
  NodeAnnotationsDirective.ctorParameters = function () { return []; };
352
- var input$7 = ['addInfo', 'constraints', 'height', 'horizontalAlignment', 'id', 'inEdges', 'margin', 'offset', 'outEdges', 'pathData', 'shape', 'style', 'tooltip', 'verticalAlignment', 'visibility', 'width'];
477
+ var input$7 = ['addInfo', 'connectionDirection', 'constraints', 'height', 'horizontalAlignment', 'id', 'inEdges', 'margin', 'offset', 'outEdges', 'pathData', 'shape', 'style', 'tooltip', 'verticalAlignment', 'visibility', 'width'];
353
478
  var outputs$7 = [];
354
-
355
- var PortDirective = (function (_super) {
479
+ /**
480
+ * Nodes Directive
481
+ * ```html
482
+ * <e-nodes>
483
+ * <e-node>
484
+ * <e-node-ports>
485
+ * <e-node-port>
486
+ * </e-node-port>
487
+ * </e-node-ports>
488
+ * </e-node>
489
+ * </e-nodes>
490
+ * ```
491
+ */
492
+ var PortDirective = /** @class */ (function (_super) {
356
493
  __extends(PortDirective, _super);
357
-
494
+ /**
495
+ * @param {?} viewContainerRef
496
+ */
358
497
  function PortDirective(viewContainerRef) {
359
498
  var _this = _super.call(this) || this;
360
499
  _this.viewContainerRef = viewContainerRef;
@@ -373,12 +512,16 @@ PortDirective.decorators = [
373
512
  queries: {}
374
513
  },] },
375
514
  ];
376
-
515
+ /**
516
+ * @nocollapse
517
+ */
377
518
  PortDirective.ctorParameters = function () { return [
378
519
  { type: core.ViewContainerRef, },
379
520
  ]; };
380
-
381
- var PortsDirective = (function (_super) {
521
+ /**
522
+ * Port Array Directive
523
+ */
524
+ var PortsDirective = /** @class */ (function (_super) {
382
525
  __extends(PortsDirective, _super);
383
526
  function PortsDirective() {
384
527
  return _super.call(this, 'ports') || this;
@@ -393,14 +536,25 @@ PortsDirective.decorators = [
393
536
  },
394
537
  },] },
395
538
  ];
396
-
539
+ /**
540
+ * @nocollapse
541
+ */
397
542
  PortsDirective.ctorParameters = function () { return []; };
398
543
  var 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'];
399
544
  var outputs$8 = [];
400
-
401
- var NodeDirective = (function (_super) {
545
+ /**
546
+ * Nodes Directive
547
+ * ```html
548
+ * <e-nodes>
549
+ * <e-node></e-node>
550
+ * </e-nodes>
551
+ * ```
552
+ */
553
+ var NodeDirective = /** @class */ (function (_super) {
402
554
  __extends(NodeDirective, _super);
403
-
555
+ /**
556
+ * @param {?} viewContainerRef
557
+ */
404
558
  function NodeDirective(viewContainerRef) {
405
559
  var _this = _super.call(this) || this;
406
560
  _this.viewContainerRef = viewContainerRef;
@@ -424,12 +578,16 @@ NodeDirective.decorators = [
424
578
  }
425
579
  },] },
426
580
  ];
427
-
581
+ /**
582
+ * @nocollapse
583
+ */
428
584
  NodeDirective.ctorParameters = function () { return [
429
585
  { type: core.ViewContainerRef, },
430
586
  ]; };
431
-
432
- var NodesDirective = (function (_super) {
587
+ /**
588
+ * Node Array Directive
589
+ */
590
+ var NodesDirective = /** @class */ (function (_super) {
433
591
  __extends(NodesDirective, _super);
434
592
  function NodesDirective() {
435
593
  return _super.call(this, 'nodes') || this;
@@ -444,7 +602,9 @@ NodesDirective.decorators = [
444
602
  },
445
603
  },] },
446
604
  ];
447
-
605
+ /**
606
+ * @nocollapse
607
+ */
448
608
  NodesDirective.ctorParameters = function () { return []; };
449
609
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
450
610
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -461,12 +621,22 @@ var __metadata = (this && this.__metadata) || function (k, v) {
461
621
  return Reflect.metadata(k, v);
462
622
  };
463
623
  var inputs = ['addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'diagramSettings', 'drawingObject', 'enableConnectorSplit', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'segmentThumbShape', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'userHandleTemplate', 'width'];
464
- var outputs$9 = ['animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'load', 'mouseEnter', 'mouseLeave', 'mouseOver', 'mouseWheel', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit', 'elementDraw'];
624
+ var outputs$9 = ['animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'elementDraw', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'load', 'mouseEnter', 'mouseLeave', 'mouseOver', 'mouseWheel', 'onFixedUserHandleMouseDown', 'onFixedUserHandleMouseEnter', 'onFixedUserHandleMouseLeave', 'onFixedUserHandleMouseUp', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
465
625
  var twoWays = [''];
466
-
467
- exports.DiagramComponent = (function (_super) {
626
+ /**
627
+ * Diagram Component
628
+ * ```html
629
+ * <ej-diagram></ej-diagram>
630
+ * ```
631
+ */
632
+ exports.DiagramComponent = /** @class */ (function (_super) {
468
633
  __extends(DiagramComponent, _super);
469
-
634
+ /**
635
+ * @param {?} ngEle
636
+ * @param {?} srenderer
637
+ * @param {?} viewContainerRef
638
+ * @param {?} injector
639
+ */
470
640
  function DiagramComponent(ngEle, srenderer, viewContainerRef, injector) {
471
641
  var _this = _super.call(this) || this;
472
642
  _this.ngEle = ngEle;
@@ -608,19 +778,27 @@ exports.DiagramComponent = (function (_super) {
608
778
  _this.context = new ej2AngularBase.ComponentBase();
609
779
  return _this;
610
780
  }
611
-
781
+ /**
782
+ * @return {?}
783
+ */
612
784
  DiagramComponent.prototype.ngOnInit = function () {
613
785
  this.context.ngOnInit(this);
614
786
  };
615
-
787
+ /**
788
+ * @return {?}
789
+ */
616
790
  DiagramComponent.prototype.ngAfterViewInit = function () {
617
791
  this.context.ngAfterViewInit(this);
618
792
  };
619
-
793
+ /**
794
+ * @return {?}
795
+ */
620
796
  DiagramComponent.prototype.ngOnDestroy = function () {
621
797
  this.context.ngOnDestroy(this);
622
798
  };
623
-
799
+ /**
800
+ * @return {?}
801
+ */
624
802
  DiagramComponent.prototype.ngAfterContentChecked = function () {
625
803
  this.tagObjects[0].instance = this.childLayers;
626
804
  if (this.childCustomCursor) {
@@ -651,7 +829,9 @@ exports.DiagramComponent.decorators = [
651
829
  }
652
830
  },] },
653
831
  ];
654
-
832
+ /**
833
+ * @nocollapse
834
+ */
655
835
  exports.DiagramComponent.ctorParameters = function () { return [
656
836
  { type: core.ElementRef, },
657
837
  { type: core.Renderer2, },
@@ -682,8 +862,10 @@ exports.DiagramComponent = __decorate([
682
862
  core.ViewContainerRef,
683
863
  core.Injector])
684
864
  ], exports.DiagramComponent);
685
-
686
- var DiagramModule = (function () {
865
+ /**
866
+ * NgModule definition for the Diagram component.
867
+ */
868
+ var DiagramModule = /** @class */ (function () {
687
869
  function DiagramModule() {
688
870
  }
689
871
  return DiagramModule;
@@ -735,7 +917,9 @@ DiagramModule.decorators = [
735
917
  ]
736
918
  },] },
737
919
  ];
738
-
920
+ /**
921
+ * @nocollapse
922
+ */
739
923
  DiagramModule.ctorParameters = function () { return []; };
740
924
  var HierarchicalTreeService = { provide: 'DiagramsHierarchicalTree', useValue: ej2Diagrams.HierarchicalTree };
741
925
  var MindMapService = { provide: 'DiagramsMindMap', useValue: ej2Diagrams.MindMap };
@@ -755,8 +939,10 @@ var ConnectorEditingService = { provide: 'DiagramsConnectorEditing', useValue: e
755
939
  var BlazorTooltipService = { provide: 'DiagramsBlazorTooltip', useValue: ej2Diagrams.BlazorTooltip };
756
940
  var LineDistributionService = { provide: 'DiagramsLineDistribution', useValue: ej2Diagrams.LineDistribution };
757
941
  var Ej1SerializationService = { provide: 'DiagramsEj1Serialization', useValue: ej2Diagrams.Ej1Serialization };
758
-
759
- var DiagramAllModule = (function () {
942
+ /**
943
+ * NgModule definition for the Diagram component with providers.
944
+ */
945
+ var DiagramAllModule = /** @class */ (function () {
760
946
  function DiagramAllModule() {
761
947
  }
762
948
  return DiagramAllModule;
@@ -789,14 +975,23 @@ DiagramAllModule.decorators = [
789
975
  ]
790
976
  },] },
791
977
  ];
792
-
978
+ /**
979
+ * @nocollapse
980
+ */
793
981
  DiagramAllModule.ctorParameters = function () { return []; };
794
982
  var input$9 = ['expanded', 'height', 'iconCss', 'id', 'symbols', 'title'];
795
983
  var outputs$10 = [];
796
-
797
- var PaletteDirective = (function (_super) {
984
+ /**
985
+ * Palette Directive
986
+ * ```html
987
+ * <e-palettes><e-palette></e-palette><e-palettes>
988
+ * ```
989
+ */
990
+ var PaletteDirective = /** @class */ (function (_super) {
798
991
  __extends(PaletteDirective, _super);
799
-
992
+ /**
993
+ * @param {?} viewContainerRef
994
+ */
800
995
  function PaletteDirective(viewContainerRef) {
801
996
  var _this = _super.call(this) || this;
802
997
  _this.viewContainerRef = viewContainerRef;
@@ -815,12 +1010,16 @@ PaletteDirective.decorators = [
815
1010
  queries: {}
816
1011
  },] },
817
1012
  ];
818
-
1013
+ /**
1014
+ * @nocollapse
1015
+ */
819
1016
  PaletteDirective.ctorParameters = function () { return [
820
1017
  { type: core.ViewContainerRef, },
821
1018
  ]; };
822
-
823
- var PalettesDirective = (function (_super) {
1019
+ /**
1020
+ * Palette Array Directive
1021
+ */
1022
+ var PalettesDirective = /** @class */ (function (_super) {
824
1023
  __extends(PalettesDirective, _super);
825
1024
  function PalettesDirective() {
826
1025
  return _super.call(this, 'palettes') || this;
@@ -835,7 +1034,9 @@ PalettesDirective.decorators = [
835
1034
  },
836
1035
  },] },
837
1036
  ];
838
-
1037
+ /**
1038
+ * @nocollapse
1039
+ */
839
1040
  PalettesDirective.ctorParameters = function () { return []; };
840
1041
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
841
1042
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -854,10 +1055,20 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
854
1055
  var 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'];
855
1056
  var outputs$11 = ['paletteExpanding', 'paletteSelectionChange'];
856
1057
  var twoWays$1 = [''];
857
-
858
- exports.SymbolPaletteComponent = (function (_super) {
1058
+ /**
1059
+ * SymbolPalette Component
1060
+ * ```html
1061
+ * <ej-symbol-palette></ej-symbol-palette>
1062
+ * ```
1063
+ */
1064
+ exports.SymbolPaletteComponent = /** @class */ (function (_super) {
859
1065
  __extends(SymbolPaletteComponent, _super);
860
-
1066
+ /**
1067
+ * @param {?} ngEle
1068
+ * @param {?} srenderer
1069
+ * @param {?} viewContainerRef
1070
+ * @param {?} injector
1071
+ */
861
1072
  function SymbolPaletteComponent(ngEle, srenderer, viewContainerRef, injector) {
862
1073
  var _this = _super.call(this) || this;
863
1074
  _this.ngEle = ngEle;
@@ -880,19 +1091,27 @@ exports.SymbolPaletteComponent = (function (_super) {
880
1091
  _this.context = new ej2AngularBase.ComponentBase();
881
1092
  return _this;
882
1093
  }
883
-
1094
+ /**
1095
+ * @return {?}
1096
+ */
884
1097
  SymbolPaletteComponent.prototype.ngOnInit = function () {
885
1098
  this.context.ngOnInit(this);
886
1099
  };
887
-
1100
+ /**
1101
+ * @return {?}
1102
+ */
888
1103
  SymbolPaletteComponent.prototype.ngAfterViewInit = function () {
889
1104
  this.context.ngAfterViewInit(this);
890
1105
  };
891
-
1106
+ /**
1107
+ * @return {?}
1108
+ */
892
1109
  SymbolPaletteComponent.prototype.ngOnDestroy = function () {
893
1110
  this.context.ngOnDestroy(this);
894
1111
  };
895
-
1112
+ /**
1113
+ * @return {?}
1114
+ */
896
1115
  SymbolPaletteComponent.prototype.ngAfterContentChecked = function () {
897
1116
  this.tagObjects[0].instance = this.childPalettes;
898
1117
  this.context.ngAfterContentChecked(this);
@@ -911,7 +1130,9 @@ exports.SymbolPaletteComponent.decorators = [
911
1130
  }
912
1131
  },] },
913
1132
  ];
914
-
1133
+ /**
1134
+ * @nocollapse
1135
+ */
915
1136
  exports.SymbolPaletteComponent.ctorParameters = function () { return [
916
1137
  { type: core.ElementRef, },
917
1138
  { type: core.Renderer2, },
@@ -925,8 +1146,10 @@ exports.SymbolPaletteComponent = __decorate$1([
925
1146
  core.ViewContainerRef,
926
1147
  core.Injector])
927
1148
  ], exports.SymbolPaletteComponent);
928
-
929
- var SymbolPaletteModule = (function () {
1149
+ /**
1150
+ * NgModule definition for the SymbolPalette component.
1151
+ */
1152
+ var SymbolPaletteModule = /** @class */ (function () {
930
1153
  function SymbolPaletteModule() {
931
1154
  }
932
1155
  return SymbolPaletteModule;
@@ -946,10 +1169,14 @@ SymbolPaletteModule.decorators = [
946
1169
  ]
947
1170
  },] },
948
1171
  ];
949
-
1172
+ /**
1173
+ * @nocollapse
1174
+ */
950
1175
  SymbolPaletteModule.ctorParameters = function () { return []; };
951
-
952
- var SymbolPaletteAllModule = (function () {
1176
+ /**
1177
+ * NgModule definition for the SymbolPalette component with providers.
1178
+ */
1179
+ var SymbolPaletteAllModule = /** @class */ (function () {
953
1180
  function SymbolPaletteAllModule() {
954
1181
  }
955
1182
  return SymbolPaletteAllModule;
@@ -963,7 +1190,9 @@ SymbolPaletteAllModule.decorators = [
963
1190
  providers: []
964
1191
  },] },
965
1192
  ];
966
-
1193
+ /**
1194
+ * @nocollapse
1195
+ */
967
1196
  SymbolPaletteAllModule.ctorParameters = function () { return []; };
968
1197
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
969
1198
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -982,10 +1211,20 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
982
1211
  var inputs$2 = ['enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width'];
983
1212
  var outputs$12 = ['created'];
984
1213
  var twoWays$2 = [''];
985
-
986
- exports.OverviewComponent = (function (_super) {
1214
+ /**
1215
+ * Overview Component
1216
+ * ```html
1217
+ * <ej-overview></ej-overview>
1218
+ * ```
1219
+ */
1220
+ exports.OverviewComponent = /** @class */ (function (_super) {
987
1221
  __extends(OverviewComponent, _super);
988
-
1222
+ /**
1223
+ * @param {?} ngEle
1224
+ * @param {?} srenderer
1225
+ * @param {?} viewContainerRef
1226
+ * @param {?} injector
1227
+ */
989
1228
  function OverviewComponent(ngEle, srenderer, viewContainerRef, injector) {
990
1229
  var _this = _super.call(this) || this;
991
1230
  _this.ngEle = ngEle;
@@ -1001,19 +1240,27 @@ exports.OverviewComponent = (function (_super) {
1001
1240
  _this.context = new ej2AngularBase.ComponentBase();
1002
1241
  return _this;
1003
1242
  }
1004
-
1243
+ /**
1244
+ * @return {?}
1245
+ */
1005
1246
  OverviewComponent.prototype.ngOnInit = function () {
1006
1247
  this.context.ngOnInit(this);
1007
1248
  };
1008
-
1249
+ /**
1250
+ * @return {?}
1251
+ */
1009
1252
  OverviewComponent.prototype.ngAfterViewInit = function () {
1010
1253
  this.context.ngAfterViewInit(this);
1011
1254
  };
1012
-
1255
+ /**
1256
+ * @return {?}
1257
+ */
1013
1258
  OverviewComponent.prototype.ngOnDestroy = function () {
1014
1259
  this.context.ngOnDestroy(this);
1015
1260
  };
1016
-
1261
+ /**
1262
+ * @return {?}
1263
+ */
1017
1264
  OverviewComponent.prototype.ngAfterContentChecked = function () {
1018
1265
  this.context.ngAfterContentChecked(this);
1019
1266
  };
@@ -1029,7 +1276,9 @@ exports.OverviewComponent.decorators = [
1029
1276
  queries: {}
1030
1277
  },] },
1031
1278
  ];
1032
-
1279
+ /**
1280
+ * @nocollapse
1281
+ */
1033
1282
  exports.OverviewComponent.ctorParameters = function () { return [
1034
1283
  { type: core.ElementRef, },
1035
1284
  { type: core.Renderer2, },
@@ -1043,8 +1292,10 @@ exports.OverviewComponent = __decorate$2([
1043
1292
  core.ViewContainerRef,
1044
1293
  core.Injector])
1045
1294
  ], exports.OverviewComponent);
1046
-
1047
- var OverviewModule = (function () {
1295
+ /**
1296
+ * NgModule definition for the Overview component.
1297
+ */
1298
+ var OverviewModule = /** @class */ (function () {
1048
1299
  function OverviewModule() {
1049
1300
  }
1050
1301
  return OverviewModule;
@@ -1060,10 +1311,14 @@ OverviewModule.decorators = [
1060
1311
  ]
1061
1312
  },] },
1062
1313
  ];
1063
-
1314
+ /**
1315
+ * @nocollapse
1316
+ */
1064
1317
  OverviewModule.ctorParameters = function () { return []; };
1065
-
1066
- var OverviewAllModule = (function () {
1318
+ /**
1319
+ * NgModule definition for the Overview component with providers.
1320
+ */
1321
+ var OverviewAllModule = /** @class */ (function () {
1067
1322
  function OverviewAllModule() {
1068
1323
  }
1069
1324
  return OverviewAllModule;
@@ -1077,7 +1332,9 @@ OverviewAllModule.decorators = [
1077
1332
  providers: []
1078
1333
  },] },
1079
1334
  ];
1080
-
1335
+ /**
1336
+ * @nocollapse
1337
+ */
1081
1338
  OverviewAllModule.ctorParameters = function () { return []; };
1082
1339
 
1083
1340
  exports.LayerDirective = LayerDirective;