@syncfusion/ej2-angular-diagrams 25.2.3-ngcc → 25.2.4-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.
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,16 @@
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
+
### Diagram
|
6
|
+
|
7
|
+
#### Bug Fixes
|
8
|
+
|
9
|
+
- `#I579409` - Now, the connectors updated properly in complex hierarchical tree while performing expand and collapse.
|
10
|
+
- `#I582187` - Now, the order commands working properly when we set zIndex at initial rendering.
|
11
|
+
- `#I585972` - Now, the overview rectangle updated properly while double clicking the overview canvas.
|
12
|
+
- `#F186044` - Now, the fill color for phases applied properly while adding phases at runtime.
|
13
|
+
- `#I52018` - Now, While SwimLane dragged from palette and deletion does not throw console exception.
|
14
|
+
|
5
15
|
## 25.1.42 (2024-04-30)
|
6
16
|
|
7
17
|
### Diagram
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-angular-diagrams.umd.js
|
3
|
-
* version : 25.2.
|
3
|
+
* version : 25.2.4
|
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,19 +25,10 @@ var __extends = (this && this.__extends) || (function () {
|
|
25
25
|
})();
|
26
26
|
var input = ['addInfo', 'id', 'lock', 'objects', 'visible', 'zIndex'];
|
27
27
|
var outputs = [];
|
28
|
-
|
29
|
-
|
30
|
-
* ```html
|
31
|
-
* <e-layers>
|
32
|
-
* <e-layer></e-layer>
|
33
|
-
* </e-layers>
|
34
|
-
* ```
|
35
|
-
*/
|
36
|
-
var LayerDirective = /** @class */ (function (_super) {
|
28
|
+
|
29
|
+
var LayerDirective = (function (_super) {
|
37
30
|
__extends(LayerDirective, _super);
|
38
|
-
|
39
|
-
* @param {?} viewContainerRef
|
40
|
-
*/
|
31
|
+
|
41
32
|
function LayerDirective(viewContainerRef) {
|
42
33
|
var _this = _super.call(this) || this;
|
43
34
|
_this.viewContainerRef = viewContainerRef;
|
@@ -56,16 +47,12 @@ LayerDirective.decorators = [
|
|
56
47
|
queries: {}
|
57
48
|
},] },
|
58
49
|
];
|
59
|
-
|
60
|
-
* @nocollapse
|
61
|
-
*/
|
50
|
+
|
62
51
|
LayerDirective.ctorParameters = function () { return [
|
63
52
|
{ type: core.ViewContainerRef, },
|
64
53
|
]; };
|
65
|
-
|
66
|
-
|
67
|
-
*/
|
68
|
-
var LayersDirective = /** @class */ (function (_super) {
|
54
|
+
|
55
|
+
var LayersDirective = (function (_super) {
|
69
56
|
__extends(LayersDirective, _super);
|
70
57
|
function LayersDirective() {
|
71
58
|
return _super.call(this, 'layers') || this;
|
@@ -80,25 +67,14 @@ LayersDirective.decorators = [
|
|
80
67
|
},
|
81
68
|
},] },
|
82
69
|
];
|
83
|
-
|
84
|
-
* @nocollapse
|
85
|
-
*/
|
70
|
+
|
86
71
|
LayersDirective.ctorParameters = function () { return []; };
|
87
72
|
var input$1 = ['action', 'cursor'];
|
88
73
|
var outputs$1 = [];
|
89
|
-
|
90
|
-
|
91
|
-
* ```html
|
92
|
-
* <e-cusrsormaps>
|
93
|
-
* <e-cursormap></e-cursormap>
|
94
|
-
* </e-cursormaps>
|
95
|
-
* ```
|
96
|
-
*/
|
97
|
-
var CustomCursorDirective = /** @class */ (function (_super) {
|
74
|
+
|
75
|
+
var CustomCursorDirective = (function (_super) {
|
98
76
|
__extends(CustomCursorDirective, _super);
|
99
|
-
|
100
|
-
* @param {?} viewContainerRef
|
101
|
-
*/
|
77
|
+
|
102
78
|
function CustomCursorDirective(viewContainerRef) {
|
103
79
|
var _this = _super.call(this) || this;
|
104
80
|
_this.viewContainerRef = viewContainerRef;
|
@@ -117,16 +93,12 @@ CustomCursorDirective.decorators = [
|
|
117
93
|
queries: {}
|
118
94
|
},] },
|
119
95
|
];
|
120
|
-
|
121
|
-
* @nocollapse
|
122
|
-
*/
|
96
|
+
|
123
97
|
CustomCursorDirective.ctorParameters = function () { return [
|
124
98
|
{ type: core.ViewContainerRef, },
|
125
99
|
]; };
|
126
|
-
|
127
|
-
|
128
|
-
*/
|
129
|
-
var CustomCursorsDirective = /** @class */ (function (_super) {
|
100
|
+
|
101
|
+
var CustomCursorsDirective = (function (_super) {
|
130
102
|
__extends(CustomCursorsDirective, _super);
|
131
103
|
function CustomCursorsDirective() {
|
132
104
|
return _super.call(this, 'customcursor') || this;
|
@@ -141,30 +113,14 @@ CustomCursorsDirective.decorators = [
|
|
141
113
|
},
|
142
114
|
},] },
|
143
115
|
];
|
144
|
-
|
145
|
-
* @nocollapse
|
146
|
-
*/
|
116
|
+
|
147
117
|
CustomCursorsDirective.ctorParameters = function () { return []; };
|
148
118
|
var input$2 = ['alignment', 'cornerRadius', 'displacement', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'offset', 'padding', 'pathData', 'visibility', 'width'];
|
149
119
|
var outputs$2 = [];
|
150
|
-
|
151
|
-
|
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) {
|
120
|
+
|
121
|
+
var ConnectorFixedUserHandleDirective = (function (_super) {
|
164
122
|
__extends(ConnectorFixedUserHandleDirective, _super);
|
165
|
-
|
166
|
-
* @param {?} viewContainerRef
|
167
|
-
*/
|
123
|
+
|
168
124
|
function ConnectorFixedUserHandleDirective(viewContainerRef) {
|
169
125
|
var _this = _super.call(this) || this;
|
170
126
|
_this.viewContainerRef = viewContainerRef;
|
@@ -183,16 +139,12 @@ ConnectorFixedUserHandleDirective.decorators = [
|
|
183
139
|
queries: {}
|
184
140
|
},] },
|
185
141
|
];
|
186
|
-
|
187
|
-
* @nocollapse
|
188
|
-
*/
|
142
|
+
|
189
143
|
ConnectorFixedUserHandleDirective.ctorParameters = function () { return [
|
190
144
|
{ type: core.ViewContainerRef, },
|
191
145
|
]; };
|
192
|
-
|
193
|
-
|
194
|
-
*/
|
195
|
-
var ConnectorFixedUserHandlesDirective = /** @class */ (function (_super) {
|
146
|
+
|
147
|
+
var ConnectorFixedUserHandlesDirective = (function (_super) {
|
196
148
|
__extends(ConnectorFixedUserHandlesDirective, _super);
|
197
149
|
function ConnectorFixedUserHandlesDirective() {
|
198
150
|
return _super.call(this, 'fixeduserhandles') || this;
|
@@ -207,30 +159,14 @@ ConnectorFixedUserHandlesDirective.decorators = [
|
|
207
159
|
},
|
208
160
|
},] },
|
209
161
|
];
|
210
|
-
|
211
|
-
* @nocollapse
|
212
|
-
*/
|
162
|
+
|
213
163
|
ConnectorFixedUserHandlesDirective.ctorParameters = function () { return []; };
|
214
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'];
|
215
165
|
var outputs$3 = [];
|
216
|
-
|
217
|
-
|
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) {
|
166
|
+
|
167
|
+
var ConnectorAnnotationDirective = (function (_super) {
|
230
168
|
__extends(ConnectorAnnotationDirective, _super);
|
231
|
-
|
232
|
-
* @param {?} viewContainerRef
|
233
|
-
*/
|
169
|
+
|
234
170
|
function ConnectorAnnotationDirective(viewContainerRef) {
|
235
171
|
var _this = _super.call(this) || this;
|
236
172
|
_this.viewContainerRef = viewContainerRef;
|
@@ -249,16 +185,12 @@ ConnectorAnnotationDirective.decorators = [
|
|
249
185
|
queries: {}
|
250
186
|
},] },
|
251
187
|
];
|
252
|
-
|
253
|
-
* @nocollapse
|
254
|
-
*/
|
188
|
+
|
255
189
|
ConnectorAnnotationDirective.ctorParameters = function () { return [
|
256
190
|
{ type: core.ViewContainerRef, },
|
257
191
|
]; };
|
258
|
-
|
259
|
-
|
260
|
-
*/
|
261
|
-
var ConnectorAnnotationsDirective = /** @class */ (function (_super) {
|
192
|
+
|
193
|
+
var ConnectorAnnotationsDirective = (function (_super) {
|
262
194
|
__extends(ConnectorAnnotationsDirective, _super);
|
263
195
|
function ConnectorAnnotationsDirective() {
|
264
196
|
return _super.call(this, 'annotations') || this;
|
@@ -273,25 +205,14 @@ ConnectorAnnotationsDirective.decorators = [
|
|
273
205
|
},
|
274
206
|
},] },
|
275
207
|
];
|
276
|
-
|
277
|
-
* @nocollapse
|
278
|
-
*/
|
208
|
+
|
279
209
|
ConnectorAnnotationsDirective.ctorParameters = function () { return []; };
|
280
210
|
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'];
|
281
211
|
var outputs$4 = [];
|
282
|
-
|
283
|
-
|
284
|
-
* ```html
|
285
|
-
* <e-connectors>
|
286
|
-
* <e-connector></e-connector>
|
287
|
-
* </e-connectors>
|
288
|
-
* ```
|
289
|
-
*/
|
290
|
-
var ConnectorDirective = /** @class */ (function (_super) {
|
212
|
+
|
213
|
+
var ConnectorDirective = (function (_super) {
|
291
214
|
__extends(ConnectorDirective, _super);
|
292
|
-
|
293
|
-
* @param {?} viewContainerRef
|
294
|
-
*/
|
215
|
+
|
295
216
|
function ConnectorDirective(viewContainerRef) {
|
296
217
|
var _this = _super.call(this) || this;
|
297
218
|
_this.viewContainerRef = viewContainerRef;
|
@@ -314,16 +235,12 @@ ConnectorDirective.decorators = [
|
|
314
235
|
}
|
315
236
|
},] },
|
316
237
|
];
|
317
|
-
|
318
|
-
* @nocollapse
|
319
|
-
*/
|
238
|
+
|
320
239
|
ConnectorDirective.ctorParameters = function () { return [
|
321
240
|
{ type: core.ViewContainerRef, },
|
322
241
|
]; };
|
323
|
-
|
324
|
-
|
325
|
-
*/
|
326
|
-
var ConnectorsDirective = /** @class */ (function (_super) {
|
242
|
+
|
243
|
+
var ConnectorsDirective = (function (_super) {
|
327
244
|
__extends(ConnectorsDirective, _super);
|
328
245
|
function ConnectorsDirective() {
|
329
246
|
return _super.call(this, 'connectors') || this;
|
@@ -338,30 +255,14 @@ ConnectorsDirective.decorators = [
|
|
338
255
|
},
|
339
256
|
},] },
|
340
257
|
];
|
341
|
-
|
342
|
-
* @nocollapse
|
343
|
-
*/
|
258
|
+
|
344
259
|
ConnectorsDirective.ctorParameters = function () { return []; };
|
345
260
|
var input$5 = ['cornerRadius', 'fill', 'handleStrokeColor', 'handleStrokeWidth', 'height', 'iconStrokeColor', 'iconStrokeWidth', 'id', 'margin', 'offset', 'padding', 'pathData', 'visibility', 'width'];
|
346
261
|
var outputs$5 = [];
|
347
|
-
|
348
|
-
|
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) {
|
262
|
+
|
263
|
+
var NodeFixedUserHandleDirective = (function (_super) {
|
361
264
|
__extends(NodeFixedUserHandleDirective, _super);
|
362
|
-
|
363
|
-
* @param {?} viewContainerRef
|
364
|
-
*/
|
265
|
+
|
365
266
|
function NodeFixedUserHandleDirective(viewContainerRef) {
|
366
267
|
var _this = _super.call(this) || this;
|
367
268
|
_this.viewContainerRef = viewContainerRef;
|
@@ -380,16 +281,12 @@ NodeFixedUserHandleDirective.decorators = [
|
|
380
281
|
queries: {}
|
381
282
|
},] },
|
382
283
|
];
|
383
|
-
|
384
|
-
* @nocollapse
|
385
|
-
*/
|
284
|
+
|
386
285
|
NodeFixedUserHandleDirective.ctorParameters = function () { return [
|
387
286
|
{ type: core.ViewContainerRef, },
|
388
287
|
]; };
|
389
|
-
|
390
|
-
|
391
|
-
*/
|
392
|
-
var NodeFixedUserHandlesDirective = /** @class */ (function (_super) {
|
288
|
+
|
289
|
+
var NodeFixedUserHandlesDirective = (function (_super) {
|
393
290
|
__extends(NodeFixedUserHandlesDirective, _super);
|
394
291
|
function NodeFixedUserHandlesDirective() {
|
395
292
|
return _super.call(this, 'fixeduserhandles') || this;
|
@@ -404,30 +301,14 @@ NodeFixedUserHandlesDirective.decorators = [
|
|
404
301
|
},
|
405
302
|
},] },
|
406
303
|
];
|
407
|
-
|
408
|
-
* @nocollapse
|
409
|
-
*/
|
304
|
+
|
410
305
|
NodeFixedUserHandlesDirective.ctorParameters = function () { return []; };
|
411
306
|
var input$6 = ['addInfo', 'annotationType', 'constraints', 'content', 'dragLimit', 'height', 'horizontalAlignment', 'hyperlink', 'id', 'margin', 'offset', 'rotateAngle', 'style', 'template', 'type', 'verticalAlignment', 'visibility', 'width'];
|
412
307
|
var outputs$6 = [];
|
413
|
-
|
414
|
-
|
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) {
|
308
|
+
|
309
|
+
var NodeAnnotationDirective = (function (_super) {
|
427
310
|
__extends(NodeAnnotationDirective, _super);
|
428
|
-
|
429
|
-
* @param {?} viewContainerRef
|
430
|
-
*/
|
311
|
+
|
431
312
|
function NodeAnnotationDirective(viewContainerRef) {
|
432
313
|
var _this = _super.call(this) || this;
|
433
314
|
_this.viewContainerRef = viewContainerRef;
|
@@ -446,16 +327,12 @@ NodeAnnotationDirective.decorators = [
|
|
446
327
|
queries: {}
|
447
328
|
},] },
|
448
329
|
];
|
449
|
-
|
450
|
-
* @nocollapse
|
451
|
-
*/
|
330
|
+
|
452
331
|
NodeAnnotationDirective.ctorParameters = function () { return [
|
453
332
|
{ type: core.ViewContainerRef, },
|
454
333
|
]; };
|
455
|
-
|
456
|
-
|
457
|
-
*/
|
458
|
-
var NodeAnnotationsDirective = /** @class */ (function (_super) {
|
334
|
+
|
335
|
+
var NodeAnnotationsDirective = (function (_super) {
|
459
336
|
__extends(NodeAnnotationsDirective, _super);
|
460
337
|
function NodeAnnotationsDirective() {
|
461
338
|
return _super.call(this, 'annotations') || this;
|
@@ -470,30 +347,14 @@ NodeAnnotationsDirective.decorators = [
|
|
470
347
|
},
|
471
348
|
},] },
|
472
349
|
];
|
473
|
-
|
474
|
-
* @nocollapse
|
475
|
-
*/
|
350
|
+
|
476
351
|
NodeAnnotationsDirective.ctorParameters = function () { return []; };
|
477
352
|
var input$7 = ['addInfo', 'constraints', 'height', 'horizontalAlignment', 'id', 'inEdges', 'margin', 'offset', 'outEdges', 'pathData', 'shape', 'style', 'tooltip', 'verticalAlignment', 'visibility', 'width'];
|
478
353
|
var outputs$7 = [];
|
479
|
-
|
480
|
-
|
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) {
|
354
|
+
|
355
|
+
var PortDirective = (function (_super) {
|
493
356
|
__extends(PortDirective, _super);
|
494
|
-
|
495
|
-
* @param {?} viewContainerRef
|
496
|
-
*/
|
357
|
+
|
497
358
|
function PortDirective(viewContainerRef) {
|
498
359
|
var _this = _super.call(this) || this;
|
499
360
|
_this.viewContainerRef = viewContainerRef;
|
@@ -512,16 +373,12 @@ PortDirective.decorators = [
|
|
512
373
|
queries: {}
|
513
374
|
},] },
|
514
375
|
];
|
515
|
-
|
516
|
-
* @nocollapse
|
517
|
-
*/
|
376
|
+
|
518
377
|
PortDirective.ctorParameters = function () { return [
|
519
378
|
{ type: core.ViewContainerRef, },
|
520
379
|
]; };
|
521
|
-
|
522
|
-
|
523
|
-
*/
|
524
|
-
var PortsDirective = /** @class */ (function (_super) {
|
380
|
+
|
381
|
+
var PortsDirective = (function (_super) {
|
525
382
|
__extends(PortsDirective, _super);
|
526
383
|
function PortsDirective() {
|
527
384
|
return _super.call(this, 'ports') || this;
|
@@ -536,25 +393,14 @@ PortsDirective.decorators = [
|
|
536
393
|
},
|
537
394
|
},] },
|
538
395
|
];
|
539
|
-
|
540
|
-
* @nocollapse
|
541
|
-
*/
|
396
|
+
|
542
397
|
PortsDirective.ctorParameters = function () { return []; };
|
543
398
|
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'];
|
544
399
|
var outputs$8 = [];
|
545
|
-
|
546
|
-
|
547
|
-
* ```html
|
548
|
-
* <e-nodes>
|
549
|
-
* <e-node></e-node>
|
550
|
-
* </e-nodes>
|
551
|
-
* ```
|
552
|
-
*/
|
553
|
-
var NodeDirective = /** @class */ (function (_super) {
|
400
|
+
|
401
|
+
var NodeDirective = (function (_super) {
|
554
402
|
__extends(NodeDirective, _super);
|
555
|
-
|
556
|
-
* @param {?} viewContainerRef
|
557
|
-
*/
|
403
|
+
|
558
404
|
function NodeDirective(viewContainerRef) {
|
559
405
|
var _this = _super.call(this) || this;
|
560
406
|
_this.viewContainerRef = viewContainerRef;
|
@@ -578,16 +424,12 @@ NodeDirective.decorators = [
|
|
578
424
|
}
|
579
425
|
},] },
|
580
426
|
];
|
581
|
-
|
582
|
-
* @nocollapse
|
583
|
-
*/
|
427
|
+
|
584
428
|
NodeDirective.ctorParameters = function () { return [
|
585
429
|
{ type: core.ViewContainerRef, },
|
586
430
|
]; };
|
587
|
-
|
588
|
-
|
589
|
-
*/
|
590
|
-
var NodesDirective = /** @class */ (function (_super) {
|
431
|
+
|
432
|
+
var NodesDirective = (function (_super) {
|
591
433
|
__extends(NodesDirective, _super);
|
592
434
|
function NodesDirective() {
|
593
435
|
return _super.call(this, 'nodes') || this;
|
@@ -602,9 +444,7 @@ NodesDirective.decorators = [
|
|
602
444
|
},
|
603
445
|
},] },
|
604
446
|
];
|
605
|
-
|
606
|
-
* @nocollapse
|
607
|
-
*/
|
447
|
+
|
608
448
|
NodesDirective.ctorParameters = function () { return []; };
|
609
449
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
610
450
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
@@ -623,20 +463,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
623
463
|
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'];
|
624
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'];
|
625
465
|
var twoWays = [''];
|
626
|
-
|
627
|
-
|
628
|
-
* ```html
|
629
|
-
* <ej-diagram></ej-diagram>
|
630
|
-
* ```
|
631
|
-
*/
|
632
|
-
exports.DiagramComponent = /** @class */ (function (_super) {
|
466
|
+
|
467
|
+
exports.DiagramComponent = (function (_super) {
|
633
468
|
__extends(DiagramComponent, _super);
|
634
|
-
|
635
|
-
* @param {?} ngEle
|
636
|
-
* @param {?} srenderer
|
637
|
-
* @param {?} viewContainerRef
|
638
|
-
* @param {?} injector
|
639
|
-
*/
|
469
|
+
|
640
470
|
function DiagramComponent(ngEle, srenderer, viewContainerRef, injector) {
|
641
471
|
var _this = _super.call(this) || this;
|
642
472
|
_this.ngEle = ngEle;
|
@@ -778,27 +608,19 @@ exports.DiagramComponent = /** @class */ (function (_super) {
|
|
778
608
|
_this.context = new ej2AngularBase.ComponentBase();
|
779
609
|
return _this;
|
780
610
|
}
|
781
|
-
|
782
|
-
* @return {?}
|
783
|
-
*/
|
611
|
+
|
784
612
|
DiagramComponent.prototype.ngOnInit = function () {
|
785
613
|
this.context.ngOnInit(this);
|
786
614
|
};
|
787
|
-
|
788
|
-
* @return {?}
|
789
|
-
*/
|
615
|
+
|
790
616
|
DiagramComponent.prototype.ngAfterViewInit = function () {
|
791
617
|
this.context.ngAfterViewInit(this);
|
792
618
|
};
|
793
|
-
|
794
|
-
* @return {?}
|
795
|
-
*/
|
619
|
+
|
796
620
|
DiagramComponent.prototype.ngOnDestroy = function () {
|
797
621
|
this.context.ngOnDestroy(this);
|
798
622
|
};
|
799
|
-
|
800
|
-
* @return {?}
|
801
|
-
*/
|
623
|
+
|
802
624
|
DiagramComponent.prototype.ngAfterContentChecked = function () {
|
803
625
|
this.tagObjects[0].instance = this.childLayers;
|
804
626
|
if (this.childCustomCursor) {
|
@@ -829,9 +651,7 @@ exports.DiagramComponent.decorators = [
|
|
829
651
|
}
|
830
652
|
},] },
|
831
653
|
];
|
832
|
-
|
833
|
-
* @nocollapse
|
834
|
-
*/
|
654
|
+
|
835
655
|
exports.DiagramComponent.ctorParameters = function () { return [
|
836
656
|
{ type: core.ElementRef, },
|
837
657
|
{ type: core.Renderer2, },
|
@@ -862,10 +682,8 @@ exports.DiagramComponent = __decorate([
|
|
862
682
|
core.ViewContainerRef,
|
863
683
|
core.Injector])
|
864
684
|
], exports.DiagramComponent);
|
865
|
-
|
866
|
-
|
867
|
-
*/
|
868
|
-
var DiagramModule = /** @class */ (function () {
|
685
|
+
|
686
|
+
var DiagramModule = (function () {
|
869
687
|
function DiagramModule() {
|
870
688
|
}
|
871
689
|
return DiagramModule;
|
@@ -917,9 +735,7 @@ DiagramModule.decorators = [
|
|
917
735
|
]
|
918
736
|
},] },
|
919
737
|
];
|
920
|
-
|
921
|
-
* @nocollapse
|
922
|
-
*/
|
738
|
+
|
923
739
|
DiagramModule.ctorParameters = function () { return []; };
|
924
740
|
var HierarchicalTreeService = { provide: 'DiagramsHierarchicalTree', useValue: ej2Diagrams.HierarchicalTree };
|
925
741
|
var MindMapService = { provide: 'DiagramsMindMap', useValue: ej2Diagrams.MindMap };
|
@@ -939,10 +755,8 @@ var ConnectorEditingService = { provide: 'DiagramsConnectorEditing', useValue: e
|
|
939
755
|
var BlazorTooltipService = { provide: 'DiagramsBlazorTooltip', useValue: ej2Diagrams.BlazorTooltip };
|
940
756
|
var LineDistributionService = { provide: 'DiagramsLineDistribution', useValue: ej2Diagrams.LineDistribution };
|
941
757
|
var Ej1SerializationService = { provide: 'DiagramsEj1Serialization', useValue: ej2Diagrams.Ej1Serialization };
|
942
|
-
|
943
|
-
|
944
|
-
*/
|
945
|
-
var DiagramAllModule = /** @class */ (function () {
|
758
|
+
|
759
|
+
var DiagramAllModule = (function () {
|
946
760
|
function DiagramAllModule() {
|
947
761
|
}
|
948
762
|
return DiagramAllModule;
|
@@ -975,23 +789,14 @@ DiagramAllModule.decorators = [
|
|
975
789
|
]
|
976
790
|
},] },
|
977
791
|
];
|
978
|
-
|
979
|
-
* @nocollapse
|
980
|
-
*/
|
792
|
+
|
981
793
|
DiagramAllModule.ctorParameters = function () { return []; };
|
982
794
|
var input$9 = ['expanded', 'height', 'iconCss', 'id', 'symbols', 'title'];
|
983
795
|
var outputs$10 = [];
|
984
|
-
|
985
|
-
|
986
|
-
* ```html
|
987
|
-
* <e-palettes><e-palette></e-palette><e-palettes>
|
988
|
-
* ```
|
989
|
-
*/
|
990
|
-
var PaletteDirective = /** @class */ (function (_super) {
|
796
|
+
|
797
|
+
var PaletteDirective = (function (_super) {
|
991
798
|
__extends(PaletteDirective, _super);
|
992
|
-
|
993
|
-
* @param {?} viewContainerRef
|
994
|
-
*/
|
799
|
+
|
995
800
|
function PaletteDirective(viewContainerRef) {
|
996
801
|
var _this = _super.call(this) || this;
|
997
802
|
_this.viewContainerRef = viewContainerRef;
|
@@ -1010,16 +815,12 @@ PaletteDirective.decorators = [
|
|
1010
815
|
queries: {}
|
1011
816
|
},] },
|
1012
817
|
];
|
1013
|
-
|
1014
|
-
* @nocollapse
|
1015
|
-
*/
|
818
|
+
|
1016
819
|
PaletteDirective.ctorParameters = function () { return [
|
1017
820
|
{ type: core.ViewContainerRef, },
|
1018
821
|
]; };
|
1019
|
-
|
1020
|
-
|
1021
|
-
*/
|
1022
|
-
var PalettesDirective = /** @class */ (function (_super) {
|
822
|
+
|
823
|
+
var PalettesDirective = (function (_super) {
|
1023
824
|
__extends(PalettesDirective, _super);
|
1024
825
|
function PalettesDirective() {
|
1025
826
|
return _super.call(this, 'palettes') || this;
|
@@ -1034,9 +835,7 @@ PalettesDirective.decorators = [
|
|
1034
835
|
},
|
1035
836
|
},] },
|
1036
837
|
];
|
1037
|
-
|
1038
|
-
* @nocollapse
|
1039
|
-
*/
|
838
|
+
|
1040
839
|
PalettesDirective.ctorParameters = function () { return []; };
|
1041
840
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
1042
841
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
@@ -1055,20 +854,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
1055
854
|
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'];
|
1056
855
|
var outputs$11 = ['paletteExpanding', 'paletteSelectionChange'];
|
1057
856
|
var twoWays$1 = [''];
|
1058
|
-
|
1059
|
-
|
1060
|
-
* ```html
|
1061
|
-
* <ej-symbol-palette></ej-symbol-palette>
|
1062
|
-
* ```
|
1063
|
-
*/
|
1064
|
-
exports.SymbolPaletteComponent = /** @class */ (function (_super) {
|
857
|
+
|
858
|
+
exports.SymbolPaletteComponent = (function (_super) {
|
1065
859
|
__extends(SymbolPaletteComponent, _super);
|
1066
|
-
|
1067
|
-
* @param {?} ngEle
|
1068
|
-
* @param {?} srenderer
|
1069
|
-
* @param {?} viewContainerRef
|
1070
|
-
* @param {?} injector
|
1071
|
-
*/
|
860
|
+
|
1072
861
|
function SymbolPaletteComponent(ngEle, srenderer, viewContainerRef, injector) {
|
1073
862
|
var _this = _super.call(this) || this;
|
1074
863
|
_this.ngEle = ngEle;
|
@@ -1091,27 +880,19 @@ exports.SymbolPaletteComponent = /** @class */ (function (_super) {
|
|
1091
880
|
_this.context = new ej2AngularBase.ComponentBase();
|
1092
881
|
return _this;
|
1093
882
|
}
|
1094
|
-
|
1095
|
-
* @return {?}
|
1096
|
-
*/
|
883
|
+
|
1097
884
|
SymbolPaletteComponent.prototype.ngOnInit = function () {
|
1098
885
|
this.context.ngOnInit(this);
|
1099
886
|
};
|
1100
|
-
|
1101
|
-
* @return {?}
|
1102
|
-
*/
|
887
|
+
|
1103
888
|
SymbolPaletteComponent.prototype.ngAfterViewInit = function () {
|
1104
889
|
this.context.ngAfterViewInit(this);
|
1105
890
|
};
|
1106
|
-
|
1107
|
-
* @return {?}
|
1108
|
-
*/
|
891
|
+
|
1109
892
|
SymbolPaletteComponent.prototype.ngOnDestroy = function () {
|
1110
893
|
this.context.ngOnDestroy(this);
|
1111
894
|
};
|
1112
|
-
|
1113
|
-
* @return {?}
|
1114
|
-
*/
|
895
|
+
|
1115
896
|
SymbolPaletteComponent.prototype.ngAfterContentChecked = function () {
|
1116
897
|
this.tagObjects[0].instance = this.childPalettes;
|
1117
898
|
this.context.ngAfterContentChecked(this);
|
@@ -1130,9 +911,7 @@ exports.SymbolPaletteComponent.decorators = [
|
|
1130
911
|
}
|
1131
912
|
},] },
|
1132
913
|
];
|
1133
|
-
|
1134
|
-
* @nocollapse
|
1135
|
-
*/
|
914
|
+
|
1136
915
|
exports.SymbolPaletteComponent.ctorParameters = function () { return [
|
1137
916
|
{ type: core.ElementRef, },
|
1138
917
|
{ type: core.Renderer2, },
|
@@ -1146,10 +925,8 @@ exports.SymbolPaletteComponent = __decorate$1([
|
|
1146
925
|
core.ViewContainerRef,
|
1147
926
|
core.Injector])
|
1148
927
|
], exports.SymbolPaletteComponent);
|
1149
|
-
|
1150
|
-
|
1151
|
-
*/
|
1152
|
-
var SymbolPaletteModule = /** @class */ (function () {
|
928
|
+
|
929
|
+
var SymbolPaletteModule = (function () {
|
1153
930
|
function SymbolPaletteModule() {
|
1154
931
|
}
|
1155
932
|
return SymbolPaletteModule;
|
@@ -1169,14 +946,10 @@ SymbolPaletteModule.decorators = [
|
|
1169
946
|
]
|
1170
947
|
},] },
|
1171
948
|
];
|
1172
|
-
|
1173
|
-
* @nocollapse
|
1174
|
-
*/
|
949
|
+
|
1175
950
|
SymbolPaletteModule.ctorParameters = function () { return []; };
|
1176
|
-
|
1177
|
-
|
1178
|
-
*/
|
1179
|
-
var SymbolPaletteAllModule = /** @class */ (function () {
|
951
|
+
|
952
|
+
var SymbolPaletteAllModule = (function () {
|
1180
953
|
function SymbolPaletteAllModule() {
|
1181
954
|
}
|
1182
955
|
return SymbolPaletteAllModule;
|
@@ -1190,9 +963,7 @@ SymbolPaletteAllModule.decorators = [
|
|
1190
963
|
providers: []
|
1191
964
|
},] },
|
1192
965
|
];
|
1193
|
-
|
1194
|
-
* @nocollapse
|
1195
|
-
*/
|
966
|
+
|
1196
967
|
SymbolPaletteAllModule.ctorParameters = function () { return []; };
|
1197
968
|
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
1198
969
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
@@ -1211,20 +982,10 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
1211
982
|
var inputs$2 = ['enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width'];
|
1212
983
|
var outputs$12 = ['created'];
|
1213
984
|
var twoWays$2 = [''];
|
1214
|
-
|
1215
|
-
|
1216
|
-
* ```html
|
1217
|
-
* <ej-overview></ej-overview>
|
1218
|
-
* ```
|
1219
|
-
*/
|
1220
|
-
exports.OverviewComponent = /** @class */ (function (_super) {
|
985
|
+
|
986
|
+
exports.OverviewComponent = (function (_super) {
|
1221
987
|
__extends(OverviewComponent, _super);
|
1222
|
-
|
1223
|
-
* @param {?} ngEle
|
1224
|
-
* @param {?} srenderer
|
1225
|
-
* @param {?} viewContainerRef
|
1226
|
-
* @param {?} injector
|
1227
|
-
*/
|
988
|
+
|
1228
989
|
function OverviewComponent(ngEle, srenderer, viewContainerRef, injector) {
|
1229
990
|
var _this = _super.call(this) || this;
|
1230
991
|
_this.ngEle = ngEle;
|
@@ -1240,27 +1001,19 @@ exports.OverviewComponent = /** @class */ (function (_super) {
|
|
1240
1001
|
_this.context = new ej2AngularBase.ComponentBase();
|
1241
1002
|
return _this;
|
1242
1003
|
}
|
1243
|
-
|
1244
|
-
* @return {?}
|
1245
|
-
*/
|
1004
|
+
|
1246
1005
|
OverviewComponent.prototype.ngOnInit = function () {
|
1247
1006
|
this.context.ngOnInit(this);
|
1248
1007
|
};
|
1249
|
-
|
1250
|
-
* @return {?}
|
1251
|
-
*/
|
1008
|
+
|
1252
1009
|
OverviewComponent.prototype.ngAfterViewInit = function () {
|
1253
1010
|
this.context.ngAfterViewInit(this);
|
1254
1011
|
};
|
1255
|
-
|
1256
|
-
* @return {?}
|
1257
|
-
*/
|
1012
|
+
|
1258
1013
|
OverviewComponent.prototype.ngOnDestroy = function () {
|
1259
1014
|
this.context.ngOnDestroy(this);
|
1260
1015
|
};
|
1261
|
-
|
1262
|
-
* @return {?}
|
1263
|
-
*/
|
1016
|
+
|
1264
1017
|
OverviewComponent.prototype.ngAfterContentChecked = function () {
|
1265
1018
|
this.context.ngAfterContentChecked(this);
|
1266
1019
|
};
|
@@ -1276,9 +1029,7 @@ exports.OverviewComponent.decorators = [
|
|
1276
1029
|
queries: {}
|
1277
1030
|
},] },
|
1278
1031
|
];
|
1279
|
-
|
1280
|
-
* @nocollapse
|
1281
|
-
*/
|
1032
|
+
|
1282
1033
|
exports.OverviewComponent.ctorParameters = function () { return [
|
1283
1034
|
{ type: core.ElementRef, },
|
1284
1035
|
{ type: core.Renderer2, },
|
@@ -1292,10 +1043,8 @@ exports.OverviewComponent = __decorate$2([
|
|
1292
1043
|
core.ViewContainerRef,
|
1293
1044
|
core.Injector])
|
1294
1045
|
], exports.OverviewComponent);
|
1295
|
-
|
1296
|
-
|
1297
|
-
*/
|
1298
|
-
var OverviewModule = /** @class */ (function () {
|
1046
|
+
|
1047
|
+
var OverviewModule = (function () {
|
1299
1048
|
function OverviewModule() {
|
1300
1049
|
}
|
1301
1050
|
return OverviewModule;
|
@@ -1311,14 +1060,10 @@ OverviewModule.decorators = [
|
|
1311
1060
|
]
|
1312
1061
|
},] },
|
1313
1062
|
];
|
1314
|
-
|
1315
|
-
* @nocollapse
|
1316
|
-
*/
|
1063
|
+
|
1317
1064
|
OverviewModule.ctorParameters = function () { return []; };
|
1318
|
-
|
1319
|
-
|
1320
|
-
*/
|
1321
|
-
var OverviewAllModule = /** @class */ (function () {
|
1065
|
+
|
1066
|
+
var OverviewAllModule = (function () {
|
1322
1067
|
function OverviewAllModule() {
|
1323
1068
|
}
|
1324
1069
|
return OverviewAllModule;
|
@@ -1332,9 +1077,7 @@ OverviewAllModule.decorators = [
|
|
1332
1077
|
providers: []
|
1333
1078
|
},] },
|
1334
1079
|
];
|
1335
|
-
|
1336
|
-
* @nocollapse
|
1337
|
-
*/
|
1080
|
+
|
1338
1081
|
OverviewAllModule.ctorParameters = function () { return []; };
|
1339
1082
|
|
1340
1083
|
exports.LayerDirective = LayerDirective;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-angular-diagrams.umd.min.js
|
3
|
-
* version : 25.2.
|
3
|
+
* version : 25.2.4
|
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
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"_from": "@syncfusion/ej2-angular-diagrams@*",
|
3
|
-
"_id": "@syncfusion/ej2-angular-diagrams@25.
|
3
|
+
"_id": "@syncfusion/ej2-angular-diagrams@25.2.3",
|
4
4
|
"_inBundle": false,
|
5
|
-
"_integrity": "sha512
|
5
|
+
"_integrity": "sha512-ybyr3oiyqjwE0/LySNMvuwzGqnlw7FN8XI9VlBezxCILJaqlN4jKCjgRmqMNB7R78Cm9PXeqlu5qjpd3of3hkA==",
|
6
6
|
"_location": "/@syncfusion/ej2-angular-diagrams",
|
7
7
|
"_phantomChildren": {},
|
8
8
|
"_requested": {
|
@@ -19,8 +19,8 @@
|
|
19
19
|
"_requiredBy": [
|
20
20
|
"/"
|
21
21
|
],
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-diagrams/-/ej2-angular-diagrams-25.
|
23
|
-
"_shasum": "
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-diagrams/-/ej2-angular-diagrams-25.2.3.tgz",
|
23
|
+
"_shasum": "36f8258cb2f37ee057e65d7848a9fcf58461fdb5",
|
24
24
|
"_spec": "@syncfusion/ej2-angular-diagrams@*",
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
26
26
|
"author": {
|
@@ -31,9 +31,9 @@
|
|
31
31
|
},
|
32
32
|
"bundleDependencies": false,
|
33
33
|
"dependencies": {
|
34
|
-
"@syncfusion/ej2-angular-base": "~25.2.
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.4",
|
35
35
|
"@syncfusion/ej2-base": "~25.2.3",
|
36
|
-
"@syncfusion/ej2-diagrams": "25.2.
|
36
|
+
"@syncfusion/ej2-diagrams": "25.2.4"
|
37
37
|
},
|
38
38
|
"deprecated": false,
|
39
39
|
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Angular",
|
@@ -58,5 +58,5 @@
|
|
58
58
|
"schematics": "./schematics/collection.json",
|
59
59
|
"sideEffects": false,
|
60
60
|
"typings": "ej2-angular-diagrams.d.ts",
|
61
|
-
"version": "25.2.
|
61
|
+
"version": "25.2.4-ngcc"
|
62
62
|
}
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-diagrams";
|
2
|
-
export declare const pkgVer = "^25.
|
2
|
+
export declare const pkgVer = "^25.2.3";
|
3
3
|
export declare const moduleName = "DiagramModule, SymbolPaletteModule, OverviewModule";
|
4
|
-
export declare const themeVer = "~25.
|
4
|
+
export declare const themeVer = "~25.2.3";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-diagrams';
|
4
|
-
exports.pkgVer = '^25.2.
|
4
|
+
exports.pkgVer = '^25.2.4';
|
5
5
|
exports.moduleName = 'DiagramModule, SymbolPaletteModule, OverviewModule';
|
6
|
-
exports.themeVer = '~25.2.
|
6
|
+
exports.themeVer = '~25.2.4';
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-diagrams';
|
2
|
-
export const pkgVer = '^25.2.
|
2
|
+
export const pkgVer = '^25.2.4';
|
3
3
|
export const moduleName = 'DiagramModule, SymbolPaletteModule, OverviewModule';
|
4
|
-
export const themeVer = '~25.2.
|
4
|
+
export const themeVer = '~25.2.4';
|