evui 3.4.54 → 3.4.56
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/evui.common.js +17 -4
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +17 -4
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/grid/uses.js +1 -1
- package/src/components/window/uses.js +10 -1
package/dist/evui.common.js
CHANGED
|
@@ -11135,7 +11135,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
11135
11135
|
/***/ "9224":
|
|
11136
11136
|
/***/ (function(module) {
|
|
11137
11137
|
|
|
11138
|
-
module.exports = JSON.parse("{\"a\":\"3.4.
|
|
11138
|
+
module.exports = JSON.parse("{\"a\":\"3.4.56\"}");
|
|
11139
11139
|
|
|
11140
11140
|
/***/ }),
|
|
11141
11141
|
|
|
@@ -28540,6 +28540,17 @@ var uses_useMouseEvent = function useMouseEvent(param) {
|
|
|
28540
28540
|
}
|
|
28541
28541
|
|
|
28542
28542
|
if (!pressedSpot || !props.draggable && pressedSpot === 'header' || !props.resizable && pressedSpot === 'border') {
|
|
28543
|
+
clickedInfo.state = 'mousedown';
|
|
28544
|
+
clickedInfo.pressedSpot = '';
|
|
28545
|
+
clickedInfo.top = windowRef.value.offsetTop;
|
|
28546
|
+
clickedInfo.left = windowRef.value.offsetLeft;
|
|
28547
|
+
clickedInfo.width = windowRef.value.offsetWidth;
|
|
28548
|
+
clickedInfo.height = windowRef.value.offsetHeight;
|
|
28549
|
+
clickedInfo.clientX = e.clientX;
|
|
28550
|
+
clickedInfo.clientY = e.clientY;
|
|
28551
|
+
emit('mousedown', _objectSpread2(_objectSpread2({}, clickedInfo), {}, {
|
|
28552
|
+
ref: windowRef.value
|
|
28553
|
+
}));
|
|
28543
28554
|
return;
|
|
28544
28555
|
}
|
|
28545
28556
|
|
|
@@ -28551,7 +28562,9 @@ var uses_useMouseEvent = function useMouseEvent(param) {
|
|
|
28551
28562
|
clickedInfo.height = windowRef.value.offsetHeight;
|
|
28552
28563
|
clickedInfo.clientX = e.clientX;
|
|
28553
28564
|
clickedInfo.clientY = e.clientY;
|
|
28554
|
-
emit('mousedown', _objectSpread2({}, clickedInfo)
|
|
28565
|
+
emit('mousedown', _objectSpread2(_objectSpread2({}, clickedInfo), {}, {
|
|
28566
|
+
ref: windowRef.value
|
|
28567
|
+
}));
|
|
28555
28568
|
window.addEventListener('mousemove', dragging);
|
|
28556
28569
|
window.addEventListener('mouseup', endDrag);
|
|
28557
28570
|
};
|
|
@@ -35967,10 +35980,10 @@ var uses_filterEvent = function filterEvent(params) {
|
|
|
35967
35980
|
}) : row[uses_ROW_DATA_INDEX];
|
|
35968
35981
|
|
|
35969
35982
|
for (var ix = 0; ix < stores.orderedColumns.length; ix++) {
|
|
35970
|
-
var _rowData$
|
|
35983
|
+
var _rowData$column$index;
|
|
35971
35984
|
|
|
35972
35985
|
var column = stores.orderedColumns[ix] || {};
|
|
35973
|
-
var columnValue = (_rowData$
|
|
35986
|
+
var columnValue = (_rowData$column$index = rowData[column.index]) !== null && _rowData$column$index !== void 0 ? _rowData$column$index : null;
|
|
35974
35987
|
column.type = column.type || 'string';
|
|
35975
35988
|
|
|
35976
35989
|
if (columnValue !== null) {
|