devexpress-diagram 2.2.9 → 2.2.10
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/dist/dx-diagram.css +2 -2
- package/dist/dx-diagram.js +5 -5
- package/dist/dx-diagram.min.css +2 -2
- package/dist/dx-diagram.min.js +1 -1
- package/dist/dx-diagram.min.js.LICENSE.txt +2 -2
- package/dist/lib/package.json +1 -1
- package/dist/lib/src/Commands/Clipboard/PasteSelectionCommandBase.ts +3 -3
- package/package.json +1 -1
package/dist/dx-diagram.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* DevExpress Diagram (dx-diagram)
|
|
3
|
-
* Version: 2.2.
|
|
4
|
-
* Build date:
|
|
3
|
+
* Version: 2.2.10
|
|
4
|
+
* Build date: Fri Jul 12 2024
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
|
|
7
7
|
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs
|
package/dist/dx-diagram.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* DevExpress Diagram (dx-diagram)
|
|
3
|
-
* Version: 2.2.
|
|
4
|
-
* Build date:
|
|
3
|
+
* Version: 2.2.10
|
|
4
|
+
* Build date: Fri Jul 12 2024
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
|
|
7
7
|
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs
|
|
@@ -4958,12 +4958,12 @@ var PasteSelectionCommandBase = (function (_super) {
|
|
|
4958
4958
|
PasteSelectionCommandBase.prototype.executeCore = function (state, parameter) {
|
|
4959
4959
|
var _this = this;
|
|
4960
4960
|
var ret = true;
|
|
4961
|
-
if (parameter)
|
|
4962
|
-
this.performPaste(parameter);
|
|
4963
|
-
else
|
|
4961
|
+
if (parameter === undefined)
|
|
4964
4962
|
this.getClipboardData(function (data) {
|
|
4965
4963
|
ret = _this.execute(data);
|
|
4966
4964
|
});
|
|
4965
|
+
else
|
|
4966
|
+
this.performPaste(parameter);
|
|
4967
4967
|
return ret;
|
|
4968
4968
|
};
|
|
4969
4969
|
PasteSelectionCommandBase.prototype.addItemForSortingRecursive = function (itemsHashtable, item) {
|
package/dist/dx-diagram.min.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* DevExpress Diagram (dx-diagram.min)
|
|
3
|
-
* Version: 2.2.
|
|
4
|
-
* Build date:
|
|
3
|
+
* Version: 2.2.10
|
|
4
|
+
* Build date: Fri Jul 12 2024
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
|
|
7
7
|
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs
|