@syncfusion/ej2-vue-diagrams 20.1.60 → 20.2.38
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 +36 -0
- package/dist/ej2-vue-diagrams.umd.min.js +2 -11
- package/dist/es6/ej2-vue-diagrams.es2015.js +6 -3
- package/dist/es6/ej2-vue-diagrams.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-diagrams.es5.js +6 -3
- package/dist/es6/ej2-vue-diagrams.es5.js.map +1 -1
- package/dist/global/ej2-vue-diagrams.min.js +2 -2
- package/package.json +8 -8
- package/src/diagram/diagram.component.js +1 -1
- package/src/overview/overview.component.js +1 -1
- package/src/symbol-palette/symbolpalette.component.d.ts +1 -0
- package/src/symbol-palette/symbolpalette.component.js +4 -1
- package/styles/bootstrap-dark.css +8 -0
- package/styles/bootstrap.css +8 -0
- package/styles/bootstrap4.css +8 -0
- package/styles/bootstrap5-dark.css +8 -0
- package/styles/bootstrap5.css +8 -0
- package/styles/diagram/bootstrap-dark.css +8 -0
- package/styles/diagram/bootstrap.css +8 -0
- package/styles/diagram/bootstrap4.css +8 -0
- package/styles/diagram/bootstrap5-dark.css +8 -0
- package/styles/diagram/bootstrap5.css +8 -0
- package/styles/diagram/fabric-dark.css +8 -0
- package/styles/diagram/fabric.css +8 -0
- package/styles/diagram/fluent-dark.css +10 -2
- package/styles/diagram/fluent.css +8 -0
- package/styles/diagram/highcontrast-light.css +8 -0
- package/styles/diagram/highcontrast.css +8 -0
- package/styles/diagram/material-dark.css +8 -0
- package/styles/diagram/material.css +8 -0
- package/styles/diagram/tailwind-dark.css +8 -0
- package/styles/diagram/tailwind.css +8 -0
- package/styles/fabric-dark.css +8 -0
- package/styles/fabric.css +8 -0
- package/styles/fluent-dark.css +10 -2
- package/styles/fluent.css +8 -0
- package/styles/highcontrast-light.css +8 -0
- package/styles/highcontrast.css +8 -0
- package/styles/material-dark.css +8 -0
- package/styles/material.css +8 -0
- package/styles/tailwind-dark.css +8 -0
- package/styles/tailwind.css +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,42 @@
|
|
|
4
4
|
|
|
5
5
|
### Diagram
|
|
6
6
|
|
|
7
|
+
#### Bug fixes
|
|
8
|
+
|
|
9
|
+
- `#I387297` - Now, the Expand & Collapse work properly for layout.
|
|
10
|
+
- `#I389174` - The undefined exception will no longer thrown while drag and drop the node from treeview to diagram.
|
|
11
|
+
- `#I384522` - Now, connector gets rendered properly in the complex hierarchical tree layout.
|
|
12
|
+
- `#I383401` - BPMN task type symbols are updated as per BPMN 2.0 standard.
|
|
13
|
+
- `#FB35907` - Localization support for symbol palette search box placeholder has been added.
|
|
14
|
+
|
|
15
|
+
## 20.2.36 (2022-06-30)
|
|
16
|
+
|
|
17
|
+
### Diagram
|
|
18
|
+
|
|
19
|
+
#### Bug fixes
|
|
20
|
+
|
|
21
|
+
- `#I382500` - Now, the BPMN shape is changed properly at runtime.
|
|
22
|
+
- `#I382496` - BPMN gateway sub type is working properly while changing it during runtime.
|
|
23
|
+
- `#I383411` - Now, fill color is applied properly when changing the BPMN event at runtime.
|
|
24
|
+
|
|
25
|
+
#### Features
|
|
26
|
+
|
|
27
|
+
- `#I362749` - Provided option to adjust the distance between the source node and the target node of the orthogonal connection has been added.
|
|
28
|
+
- `#I347713` - Support to modify connector segments thumb icon shape and style has been added.
|
|
29
|
+
- `#FB31535` - Support for splitting and joining connectors has been added.
|
|
30
|
+
- `#I362796` - Support to highlight selected diagram elements on multiple selections has been added
|
|
31
|
+
- `#I362829` - Support to limit the connector segments while draw at run time has been added.
|
|
32
|
+
- `#I362755` - Support to edit multiple bezier segments with multiple control points has been added.
|
|
33
|
+
|
|
34
|
+
#### Behaviour changes
|
|
35
|
+
|
|
36
|
+
- In the Bezier connector, by default, the multiple segments will be created automatically if a user doesn't define segment collections in the application.
|
|
37
|
+
- In the Bezier connector, based on segment count, multiple control points will be displayed to control the smoothness of the curve
|
|
38
|
+
|
|
39
|
+
## 20.1.60 (2022-06-14)
|
|
40
|
+
|
|
41
|
+
### Diagram
|
|
42
|
+
|
|
7
43
|
#### Bug Fixes
|
|
8
44
|
|
|
9
45
|
- `#I381671` - Bpmn task type is working properly while changing from type Send to Receive.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-diagrams.umd.min.js
|
|
3
|
-
* version : 20.
|
|
3
|
+
* version : 20.2.38
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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
|
|
@@ -9,16 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
/*!
|
|
11
11
|
* filename: ej2-vue-diagrams.umd.min.js
|
|
12
|
-
* version :
|
|
13
|
-
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
14
|
-
* Use of this code is subject to the terms of our license.
|
|
15
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
|
16
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
17
|
-
* applicable laws.
|
|
18
|
-
*/
|
|
19
|
-
/*!
|
|
20
|
-
* filename: ej2-vue-diagrams.umd.min.js
|
|
21
|
-
* version : 19.4.38
|
|
12
|
+
* version : 19.2.55
|
|
22
13
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
23
14
|
* Use of this code is subject to the terms of our license.
|
|
24
15
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -866,7 +866,7 @@ var __decorate$9 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
866
866
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
867
867
|
};
|
|
868
868
|
// {{VueImport}}
|
|
869
|
-
const properties = ['isLazyUpdate', 'addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'diagramSettings', 'drawingObject', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'userHandleTemplate', 'width', 'animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
|
|
869
|
+
const properties = ['isLazyUpdate', 'plugins', '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', 'animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
|
|
870
870
|
const modelProps = [];
|
|
871
871
|
const testProp = getProps({ props: properties });
|
|
872
872
|
const props = testProp[0];
|
|
@@ -1394,7 +1394,7 @@ var __decorate$11 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
1394
1394
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1395
1395
|
};
|
|
1396
1396
|
// {{VueImport}}
|
|
1397
|
-
const properties$1 = ['isLazyUpdate', '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', 'paletteExpanding', 'paletteSelectionChange'];
|
|
1397
|
+
const properties$1 = ['isLazyUpdate', 'plugins', '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', 'paletteExpanding', 'paletteSelectionChange'];
|
|
1398
1398
|
const modelProps$1 = [];
|
|
1399
1399
|
const testProp$1 = getProps({ props: properties$1 });
|
|
1400
1400
|
const props$1 = testProp$1[0];
|
|
@@ -1501,6 +1501,9 @@ class SymbolPaletteComponent extends ComponentBase {
|
|
|
1501
1501
|
addPalettes(palettes) {
|
|
1502
1502
|
return this.ej2Instances.addPalettes(palettes);
|
|
1503
1503
|
}
|
|
1504
|
+
defaultLocale() {
|
|
1505
|
+
return this.ej2Instances.defaultLocale();
|
|
1506
|
+
}
|
|
1504
1507
|
removePaletteItem(paletteName, symbolId) {
|
|
1505
1508
|
return this.ej2Instances.removePaletteItem(paletteName, symbolId);
|
|
1506
1509
|
}
|
|
@@ -1539,7 +1542,7 @@ var __decorate$12 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
1539
1542
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1540
1543
|
};
|
|
1541
1544
|
// {{VueImport}}
|
|
1542
|
-
const properties$2 = ['isLazyUpdate', 'enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width', 'created'];
|
|
1545
|
+
const properties$2 = ['isLazyUpdate', 'plugins', 'enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width', 'created'];
|
|
1543
1546
|
const modelProps$2 = [];
|
|
1544
1547
|
const testProp$2 = getProps({ props: properties$2 });
|
|
1545
1548
|
const props$2 = testProp$2[0];
|