@syncfusion/ej2-vue-diagrams 20.2.38 → 20.2.43
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 +15 -0
- package/dist/ej2-vue-diagrams.umd.min.js +2 -20
- package/dist/ej2-vue-diagrams.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-diagrams.es2015.js +5 -5
- package/dist/es6/ej2-vue-diagrams.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-diagrams.es5.js +5 -5
- 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.d.ts +1 -1
- package/src/diagram/diagram.component.js +3 -3
- package/src/overview/overview.component.js +1 -1
- package/src/symbol-palette/symbolpalette.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-diagrams@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-diagrams@20.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-diagrams@20.2.40",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-rNS4lmWfcOgGjKa1LzP59bAQ+F5uk/oBs9O/NALAcB7QoOvzsljz38EtYHzWvv4Jz4LH0rZgJsE2VV5BzpVuqg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-diagrams",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-diagrams/-/ej2-vue-diagrams-20.2.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-diagrams/-/ej2-vue-diagrams-20.2.40.tgz",
|
|
23
|
+
"_shasum": "92234d2064f98408dac9fc2eb594918e3ccc53e1",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-diagrams@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~20.2.
|
|
35
|
-
"@syncfusion/ej2-diagrams": "20.2.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.2.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.2.43",
|
|
35
|
+
"@syncfusion/ej2-diagrams": "20.2.43",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.2.43"
|
|
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 Vue",
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
"type": "git",
|
|
58
58
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
59
59
|
},
|
|
60
|
-
"version": "20.2.
|
|
60
|
+
"version": "20.2.43",
|
|
61
61
|
"sideEffects": false
|
|
62
62
|
}
|
|
@@ -89,7 +89,7 @@ export declare class DiagramComponent extends ComponentBase {
|
|
|
89
89
|
moveObjects(objects: string[], targetLayer?: string): void;
|
|
90
90
|
moveObjectsUp(node: Object | Object, currentLayer: Object): void;
|
|
91
91
|
nudge(direction: Object, x?: number, y?: number): void;
|
|
92
|
-
pan(horizontalOffset: number, verticalOffset: number, focusedPoint?: Object): void;
|
|
92
|
+
pan(horizontalOffset: number, verticalOffset: number, focusedPoint?: Object, isInteractiveZoomPan?: boolean): void;
|
|
93
93
|
paste(obj?: undefined[]): void;
|
|
94
94
|
print(options: Object): void;
|
|
95
95
|
printImage(image: string, options: Object): void;
|
|
@@ -36,7 +36,7 @@ export var testProp = getProps({ props: properties });
|
|
|
36
36
|
export var props = testProp[0];
|
|
37
37
|
export var watch = testProp[1];
|
|
38
38
|
export var emitProbs = Object.keys(watch);
|
|
39
|
-
emitProbs.push('modelchanged');
|
|
39
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
40
40
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
41
41
|
var props_1 = modelProps_1[_i];
|
|
42
42
|
emitProbs.push('update:' + props_1);
|
|
@@ -306,8 +306,8 @@ var DiagramComponent = /** @class */ (function (_super) {
|
|
|
306
306
|
DiagramComponent.prototype.nudge = function (direction, x, y) {
|
|
307
307
|
return this.ej2Instances.nudge(direction, x, y);
|
|
308
308
|
};
|
|
309
|
-
DiagramComponent.prototype.pan = function (horizontalOffset, verticalOffset, focusedPoint) {
|
|
310
|
-
return this.ej2Instances.pan(horizontalOffset, verticalOffset, focusedPoint);
|
|
309
|
+
DiagramComponent.prototype.pan = function (horizontalOffset, verticalOffset, focusedPoint, isInteractiveZoomPan) {
|
|
310
|
+
return this.ej2Instances.pan(horizontalOffset, verticalOffset, focusedPoint, isInteractiveZoomPan);
|
|
311
311
|
};
|
|
312
312
|
DiagramComponent.prototype.paste = function (obj) {
|
|
313
313
|
return this.ej2Instances.paste(obj);
|
|
@@ -27,7 +27,7 @@ export var testProp = getProps({ props: properties });
|
|
|
27
27
|
export var props = testProp[0];
|
|
28
28
|
export var watch = testProp[1];
|
|
29
29
|
export var emitProbs = Object.keys(watch);
|
|
30
|
-
emitProbs.push('modelchanged');
|
|
30
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
31
31
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
32
32
|
var props_1 = modelProps_1[_i];
|
|
33
33
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|