easy-drag-and-drop 1.2.51 → 1.2.54
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/example.js +1479 -1470
- package/lib/constants.js +1 -1
- package/lib/element/drag.js +7 -7
- package/lib/element/drop.js +9 -9
- package/lib/example/div/drag.js +4 -4
- package/lib/example/div/drop.js +7 -7
- package/lib/example/view.js +9 -9
- package/package.json +3 -3
package/lib/constants.js
CHANGED
|
@@ -6,4 +6,4 @@ exports.START_DRAGGING_DELAY = void 0;
|
|
|
6
6
|
var START_DRAGGING_DELAY = 175;
|
|
7
7
|
exports.START_DRAGGING_DELAY = START_DRAGGING_DELAY;
|
|
8
8
|
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9jb25zdGFudHMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmV4cG9ydCBjb25zdCBTVEFSVF9EUkFHR0lOR19ERUxBWSA9IDE3NTtcbiJdLCJuYW1lcyI6WyJTVEFSVF9EUkFHR0lOR19ERUxBWSJdLCJtYXBwaW5ncyI6IllBQVksQ0FBQzs7Ozs7QUFFTixJQUFNQSxvQkFBb0IsR0FBRyxHQUFHLEFBQUM7UUFBM0JBLG9CQUFvQixHQUFwQkEsb0JBQW9CIn0=
|
package/lib/element/drag.js
CHANGED
|
@@ -28,7 +28,7 @@ function isNativeReflectConstruct() {
|
|
|
28
28
|
return false;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
function _construct(
|
|
31
|
+
function _construct(Parent1, args1, Class1) {
|
|
32
32
|
if (isNativeReflectConstruct()) {
|
|
33
33
|
_construct = Reflect.construct;
|
|
34
34
|
} else {
|
|
@@ -72,11 +72,11 @@ function _defineProperty(obj, key, value) {
|
|
|
72
72
|
}
|
|
73
73
|
return obj;
|
|
74
74
|
}
|
|
75
|
-
function _getPrototypeOf(
|
|
75
|
+
function _getPrototypeOf(o1) {
|
|
76
76
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
77
77
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
78
78
|
};
|
|
79
|
-
return _getPrototypeOf(
|
|
79
|
+
return _getPrototypeOf(o1);
|
|
80
80
|
}
|
|
81
81
|
function _inherits(subClass, superClass) {
|
|
82
82
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -105,12 +105,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
105
105
|
}
|
|
106
106
|
return _assertThisInitialized(self);
|
|
107
107
|
}
|
|
108
|
-
function _setPrototypeOf(
|
|
108
|
+
function _setPrototypeOf(o2, p1) {
|
|
109
109
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
110
110
|
o.__proto__ = p;
|
|
111
111
|
return o;
|
|
112
112
|
};
|
|
113
|
-
return _setPrototypeOf(
|
|
113
|
+
return _setPrototypeOf(o2, p1);
|
|
114
114
|
}
|
|
115
115
|
function _taggedTemplateLiteral(strings, raw) {
|
|
116
116
|
if (!raw) {
|
|
@@ -126,7 +126,7 @@ var _typeof = function(obj) {
|
|
|
126
126
|
"@swc/helpers - typeof";
|
|
127
127
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
128
128
|
};
|
|
129
|
-
function _wrapNativeSuper(
|
|
129
|
+
function _wrapNativeSuper(Class2) {
|
|
130
130
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
131
131
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
132
132
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -150,7 +150,7 @@ function _wrapNativeSuper(Class) {
|
|
|
150
150
|
});
|
|
151
151
|
return _setPrototypeOf(Wrapper, Class);
|
|
152
152
|
};
|
|
153
|
-
return _wrapNativeSuper(
|
|
153
|
+
return _wrapNativeSuper(Class2);
|
|
154
154
|
}
|
|
155
155
|
function _isNativeReflectConstruct() {
|
|
156
156
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/lib/element/drop.js
CHANGED
|
@@ -27,7 +27,7 @@ function isNativeReflectConstruct() {
|
|
|
27
27
|
return false;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function _construct(
|
|
30
|
+
function _construct(Parent1, args1, Class1) {
|
|
31
31
|
if (isNativeReflectConstruct()) {
|
|
32
32
|
_construct = Reflect.construct;
|
|
33
33
|
} else {
|
|
@@ -71,11 +71,11 @@ function _defineProperty(obj, key, value) {
|
|
|
71
71
|
}
|
|
72
72
|
return obj;
|
|
73
73
|
}
|
|
74
|
-
function _getPrototypeOf(
|
|
74
|
+
function _getPrototypeOf(o1) {
|
|
75
75
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
76
76
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
77
77
|
};
|
|
78
|
-
return _getPrototypeOf(
|
|
78
|
+
return _getPrototypeOf(o1);
|
|
79
79
|
}
|
|
80
80
|
function _inherits(subClass, superClass) {
|
|
81
81
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -104,18 +104,18 @@ function _possibleConstructorReturn(self, call) {
|
|
|
104
104
|
}
|
|
105
105
|
return _assertThisInitialized(self);
|
|
106
106
|
}
|
|
107
|
-
function _setPrototypeOf(
|
|
107
|
+
function _setPrototypeOf(o2, p1) {
|
|
108
108
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
109
109
|
o.__proto__ = p;
|
|
110
110
|
return o;
|
|
111
111
|
};
|
|
112
|
-
return _setPrototypeOf(
|
|
112
|
+
return _setPrototypeOf(o2, p1);
|
|
113
113
|
}
|
|
114
114
|
var _typeof = function(obj) {
|
|
115
115
|
"@swc/helpers - typeof";
|
|
116
116
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
117
117
|
};
|
|
118
|
-
function _wrapNativeSuper(
|
|
118
|
+
function _wrapNativeSuper(Class2) {
|
|
119
119
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
120
120
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
121
121
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -139,7 +139,7 @@ function _wrapNativeSuper(Class) {
|
|
|
139
139
|
});
|
|
140
140
|
return _setPrototypeOf(Wrapper, Class);
|
|
141
141
|
};
|
|
142
|
-
return _wrapNativeSuper(
|
|
142
|
+
return _wrapNativeSuper(Class2);
|
|
143
143
|
}
|
|
144
144
|
function _isNativeReflectConstruct() {
|
|
145
145
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
@@ -188,12 +188,12 @@ var DropElement = /*#__PURE__*/ function(Element) {
|
|
|
188
188
|
]);
|
|
189
189
|
return DropElement;
|
|
190
190
|
}(_wrapNativeSuper(_easy.Element));
|
|
191
|
-
exports.default = DropElement;
|
|
192
191
|
_defineProperty(DropElement, "ignoredProperties", [
|
|
193
192
|
"onDrop",
|
|
194
193
|
"onDragOut",
|
|
195
194
|
"onDragOver"
|
|
196
195
|
]);
|
|
197
196
|
Object.assign(DropElement.prototype, _drop.default);
|
|
197
|
+
exports.default = DropElement;
|
|
198
198
|
|
|
199
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
199
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9lbGVtZW50L2Ryb3AuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB7IEVsZW1lbnQgfSBmcm9tIFwiZWFzeVwiO1xuXG5pbXBvcnQgZHJvcE1peGlucyBmcm9tIFwiLi4vbWl4aW5zL2Ryb3BcIjtcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgRHJvcEVsZW1lbnQgZXh0ZW5kcyBFbGVtZW50IHtcbiAgZGlkTW91bnQoKSB7XG4gICAgdGhpcy5lbmFibGVEcm9wKCk7XG4gIH1cblxuICB3aWxsVW5tb3VudCgpIHtcbiAgICB0aGlzLmRpc2FibGVEcm9wKCk7XG4gIH1cblxuICBzdGF0aWMgaWdub3JlZFByb3BlcnRpZXMgPSBbXG4gICAgXCJvbkRyb3BcIixcbiAgICBcIm9uRHJhZ091dFwiLFxuICAgIFwib25EcmFnT3ZlclwiXG4gIF07XG59XG5cbk9iamVjdC5hc3NpZ24oRHJvcEVsZW1lbnQucHJvdG90eXBlLCBkcm9wTWl4aW5zKTtcbiJdLCJuYW1lcyI6WyJEcm9wRWxlbWVudCIsImRpZE1vdW50IiwiZW5hYmxlRHJvcCIsIndpbGxVbm1vdW50IiwiZGlzYWJsZURyb3AiLCJFbGVtZW50IiwiaWdub3JlZFByb3BlcnRpZXMiLCJPYmplY3QiLCJhc3NpZ24iLCJwcm90b3R5cGUiLCJkcm9wTWl4aW5zIl0sIm1hcHBpbmdzIjoiQUFBQSxZQUFZLENBQUM7Ozs7O0FBRVcsSUFBQSxLQUFNLFdBQU4sTUFBTSxDQUFBO0FBRVAsSUFBQSxLQUFnQixrQ0FBaEIsZ0JBQWdCLEVBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXhCLElBQUEsQUFBTUEsV0FBVyxpQkFnQjdCLEFBaEJZOzs7YUFBTUEsV0FBVzs7Ozs7O1lBQzlCQyxHQUFRLEVBQVJBLFVBQVE7bUJBQVJBLFNBQUFBLFFBQVEsR0FBRztnQkFDVCxJQUFJLENBQUNDLFVBQVUsRUFBRSxDQUFDO2FBQ25COzs7WUFFREMsR0FBVyxFQUFYQSxhQUFXO21CQUFYQSxTQUFBQSxXQUFXLEdBQUc7Z0JBQ1osSUFBSSxDQUFDQyxXQUFXLEVBQUUsQ0FBQzthQUNwQjs7OztDQU9GLGtCQWR3Q0MsS0FBTyxRQUFBLEVBYy9DO0FBTEMsZ0JBVG1CTCxXQUFXLEVBU3ZCTSxtQkFBaUIsRUFBRztJQUN6QixRQUFRO0lBQ1IsV0FBVztJQUNYLFlBQVk7Q0FDYixDQUFDO0FBR0pDLE1BQU0sQ0FBQ0MsTUFBTSxDQUFDUixXQUFXLENBQUNTLFNBQVMsRUFBRUMsS0FBVSxRQUFBLENBQUMsQ0FBQztrQkFoQjVCVixXQUFXIn0=
|
package/lib/example/div/drag.js
CHANGED
|
@@ -45,11 +45,11 @@ function _defineProperty(obj, key, value) {
|
|
|
45
45
|
}
|
|
46
46
|
return obj;
|
|
47
47
|
}
|
|
48
|
-
function _getPrototypeOf(
|
|
48
|
+
function _getPrototypeOf(o1) {
|
|
49
49
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
50
50
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
51
51
|
};
|
|
52
|
-
return _getPrototypeOf(
|
|
52
|
+
return _getPrototypeOf(o1);
|
|
53
53
|
}
|
|
54
54
|
function _inherits(subClass, superClass) {
|
|
55
55
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -75,12 +75,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
75
75
|
}
|
|
76
76
|
return _assertThisInitialized(self);
|
|
77
77
|
}
|
|
78
|
-
function _setPrototypeOf(
|
|
78
|
+
function _setPrototypeOf(o2, p1) {
|
|
79
79
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
80
80
|
o.__proto__ = p;
|
|
81
81
|
return o;
|
|
82
82
|
};
|
|
83
|
-
return _setPrototypeOf(
|
|
83
|
+
return _setPrototypeOf(o2, p1);
|
|
84
84
|
}
|
|
85
85
|
function _taggedTemplateLiteral(strings, raw) {
|
|
86
86
|
if (!raw) {
|
package/lib/example/div/drop.js
CHANGED
|
@@ -29,7 +29,7 @@ function isNativeReflectConstruct() {
|
|
|
29
29
|
return false;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
function _construct(
|
|
32
|
+
function _construct(Parent1, args1, Class1) {
|
|
33
33
|
if (isNativeReflectConstruct()) {
|
|
34
34
|
_construct = Reflect.construct;
|
|
35
35
|
} else {
|
|
@@ -73,11 +73,11 @@ function _defineProperty(obj, key, value) {
|
|
|
73
73
|
}
|
|
74
74
|
return obj;
|
|
75
75
|
}
|
|
76
|
-
function _getPrototypeOf(
|
|
76
|
+
function _getPrototypeOf(o1) {
|
|
77
77
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
78
78
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
79
79
|
};
|
|
80
|
-
return _getPrototypeOf(
|
|
80
|
+
return _getPrototypeOf(o1);
|
|
81
81
|
}
|
|
82
82
|
function _inherits(subClass, superClass) {
|
|
83
83
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -106,12 +106,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
106
106
|
}
|
|
107
107
|
return _assertThisInitialized(self);
|
|
108
108
|
}
|
|
109
|
-
function _setPrototypeOf(
|
|
109
|
+
function _setPrototypeOf(o2, p1) {
|
|
110
110
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
111
111
|
o.__proto__ = p;
|
|
112
112
|
return o;
|
|
113
113
|
};
|
|
114
|
-
return _setPrototypeOf(
|
|
114
|
+
return _setPrototypeOf(o2, p1);
|
|
115
115
|
}
|
|
116
116
|
function _taggedTemplateLiteral(strings, raw) {
|
|
117
117
|
if (!raw) {
|
|
@@ -127,7 +127,7 @@ var _typeof = function(obj) {
|
|
|
127
127
|
"@swc/helpers - typeof";
|
|
128
128
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
129
129
|
};
|
|
130
|
-
function _wrapNativeSuper(
|
|
130
|
+
function _wrapNativeSuper(Class2) {
|
|
131
131
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
132
132
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
133
133
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -151,7 +151,7 @@ function _wrapNativeSuper(Class) {
|
|
|
151
151
|
});
|
|
152
152
|
return _setPrototypeOf(Wrapper, Class);
|
|
153
153
|
};
|
|
154
|
-
return _wrapNativeSuper(
|
|
154
|
+
return _wrapNativeSuper(Class2);
|
|
155
155
|
}
|
|
156
156
|
function _isNativeReflectConstruct() {
|
|
157
157
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/lib/example/view.js
CHANGED
|
@@ -28,7 +28,7 @@ function isNativeReflectConstruct() {
|
|
|
28
28
|
return false;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
function _construct(
|
|
31
|
+
function _construct(Parent1, args1, Class1) {
|
|
32
32
|
if (isNativeReflectConstruct()) {
|
|
33
33
|
_construct = Reflect.construct;
|
|
34
34
|
} else {
|
|
@@ -72,11 +72,11 @@ function _defineProperty(obj, key, value) {
|
|
|
72
72
|
}
|
|
73
73
|
return obj;
|
|
74
74
|
}
|
|
75
|
-
function _getPrototypeOf(
|
|
75
|
+
function _getPrototypeOf(o1) {
|
|
76
76
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
77
77
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
78
78
|
};
|
|
79
|
-
return _getPrototypeOf(
|
|
79
|
+
return _getPrototypeOf(o1);
|
|
80
80
|
}
|
|
81
81
|
function _inherits(subClass, superClass) {
|
|
82
82
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -105,18 +105,18 @@ function _possibleConstructorReturn(self, call) {
|
|
|
105
105
|
}
|
|
106
106
|
return _assertThisInitialized(self);
|
|
107
107
|
}
|
|
108
|
-
function _setPrototypeOf(
|
|
108
|
+
function _setPrototypeOf(o2, p1) {
|
|
109
109
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
110
110
|
o.__proto__ = p;
|
|
111
111
|
return o;
|
|
112
112
|
};
|
|
113
|
-
return _setPrototypeOf(
|
|
113
|
+
return _setPrototypeOf(o2, p1);
|
|
114
114
|
}
|
|
115
115
|
var _typeof = function(obj) {
|
|
116
116
|
"@swc/helpers - typeof";
|
|
117
117
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
118
118
|
};
|
|
119
|
-
function _wrapNativeSuper(
|
|
119
|
+
function _wrapNativeSuper(Class2) {
|
|
120
120
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
121
121
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
122
122
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -140,7 +140,7 @@ function _wrapNativeSuper(Class) {
|
|
|
140
140
|
});
|
|
141
141
|
return _setPrototypeOf(Wrapper, Class);
|
|
142
142
|
};
|
|
143
|
-
return _wrapNativeSuper(
|
|
143
|
+
return _wrapNativeSuper(Class2);
|
|
144
144
|
}
|
|
145
145
|
function _isNativeReflectConstruct() {
|
|
146
146
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
@@ -190,7 +190,6 @@ var View = /*#__PURE__*/ function(Element) {
|
|
|
190
190
|
]);
|
|
191
191
|
return View;
|
|
192
192
|
}(_wrapNativeSuper(_easy.Element));
|
|
193
|
-
exports.default = View;
|
|
194
193
|
_defineProperty(View, "tagName", "div");
|
|
195
194
|
_defineProperty(View, "defaultProperties", {
|
|
196
195
|
className: "view"
|
|
@@ -205,5 +204,6 @@ function stopDragHandler(dropElement, aborted, element, done) {
|
|
|
205
204
|
function startDragHandler(element) {
|
|
206
205
|
console.log("start drag...");
|
|
207
206
|
}
|
|
207
|
+
exports.default = View;
|
|
208
208
|
|
|
209
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leGFtcGxlL3ZpZXcuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB7IEVsZW1lbnQgfSBmcm9tIFwiZWFzeVwiO1xuXG5pbXBvcnQgRHJhZ0RpdiBmcm9tIFwiLi9kaXYvZHJhZ1wiO1xuaW1wb3J0IERyb3BEaXYgZnJvbSBcIi4vZGl2L2Ryb3BcIjtcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgVmlldyBleHRlbmRzIEVsZW1lbnQge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoW1xuXG4gICAgICA8RHJvcERpdi8+
|
|
209
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leGFtcGxlL3ZpZXcuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB7IEVsZW1lbnQgfSBmcm9tIFwiZWFzeVwiO1xuXG5pbXBvcnQgRHJhZ0RpdiBmcm9tIFwiLi9kaXYvZHJhZ1wiO1xuaW1wb3J0IERyb3BEaXYgZnJvbSBcIi4vZGl2L2Ryb3BcIjtcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgVmlldyBleHRlbmRzIEVsZW1lbnQge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoW1xuXG4gICAgICA8RHJvcERpdi8+LFxuICAgICAgPERyYWdEaXYgb25EcmFnPXtkcmFnSGFuZGxlcn0gb25TdG9wRHJhZz17c3RvcERyYWdIYW5kbGVyfSBvblN0YXJ0RHJhZz17c3RhcnREcmFnSGFuZGxlcn0gLz5cblxuICAgIF0pO1xuICB9XG5cbiAgc3RhdGljIHRhZ05hbWUgPSBcImRpdlwiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwidmlld1wiXG4gIH07XG59XG5cbmZ1bmN0aW9uIGRyYWdIYW5kbGVyKGVsZW1lbnQpIHtcbiAgY29uc29sZS5sb2coXCJkcmFnXCIpXG59XG5cbmZ1bmN0aW9uIHN0b3BEcmFnSGFuZGxlcihkcm9wRWxlbWVudCwgYWJvcnRlZCwgZWxlbWVudCwgZG9uZSkge1xuICBjb25zb2xlLmxvZyhgLi4uc3RvcCBkcmFnICR7YWJvcnRlZH1gKVxuXG4gIGRvbmUoKTtcbn1cblxuZnVuY3Rpb24gc3RhcnREcmFnSGFuZGxlcihlbGVtZW50KSB7XG4gIGNvbnNvbGUubG9nKFwic3RhcnQgZHJhZy4uLlwiKVxufVxuIl0sIm5hbWVzIjpbIlZpZXciLCJjaGlsZEVsZW1lbnRzIiwiRHJvcERpdiIsIkRyYWdEaXYiLCJvbkRyYWciLCJkcmFnSGFuZGxlciIsIm9uU3RvcERyYWciLCJzdG9wRHJhZ0hhbmRsZXIiLCJvblN0YXJ0RHJhZyIsInN0YXJ0RHJhZ0hhbmRsZXIiLCJFbGVtZW50IiwidGFnTmFtZSIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwiZWxlbWVudCIsImNvbnNvbGUiLCJsb2ciLCJkcm9wRWxlbWVudCIsImFib3J0ZWQiLCJkb25lIl0sIm1hcHBpbmdzIjoiQUFBQSxZQUFZLENBQUM7Ozs7O0FBRVcsSUFBQSxLQUFNLFdBQU4sTUFBTSxDQUFBO0FBRVYsSUFBQSxLQUFZLGtDQUFaLFlBQVksRUFBQTtBQUNaLElBQUEsS0FBWSxrQ0FBWixZQUFZLEVBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRWpCLElBQUEsQUFBTUEsSUFBSSxpQkFpQnRCLEFBakJZOzs7YUFBTUEsSUFBSTs7Ozs7O1lBQ3ZCQyxHQUFhLEVBQWJBLGVBQWE7bUJBQWJBLFNBQUFBLGFBQWEsR0FBRztnQkFDZCxPQUFRO2tDQUVOLG9CQUFDQyxLQUFPLFFBQUEsT0FBRTtrQ0FDVixvQkFBQ0MsS0FBTyxRQUFBO3dCQUFDQyxNQUFNLEVBQUVDLFdBQVc7d0JBQUVDLFVBQVUsRUFBRUMsZUFBZTt3QkFBRUMsV0FBVyxFQUFFQyxnQkFBZ0I7c0JBQUk7aUJBRTdGLENBQUU7YUFDSjs7OztDQU9GLGtCQWZpQ0MsS0FBTyxRQUFBLEVBZXhDO0FBTEMsZ0JBVm1CVixJQUFJLEVBVWhCVyxTQUFPLEVBQUcsS0FBSyxDQUFDO0FBRXZCLGdCQVptQlgsSUFBSSxFQVloQlksbUJBQWlCLEVBQUc7SUFDekJDLFNBQVMsRUFBRSxNQUFNO0NBQ2xCLENBQUM7QUFHSixTQUFTUixXQUFXLENBQUNTLE9BQU8sRUFBRTtJQUM1QkMsT0FBTyxDQUFDQyxHQUFHLENBQUMsTUFBTSxDQUFDO0NBQ3BCO0FBRUQsU0FBU1QsZUFBZSxDQUFDVSxXQUFXLEVBQUVDLE9BQU8sRUFBRUosT0FBTyxFQUFFSyxJQUFJLEVBQUU7SUFDNURKLE9BQU8sQ0FBQ0MsR0FBRyxDQUFDLEFBQUMsZUFBYSxDQUFVLE1BQUEsQ0FBUkUsT0FBTyxDQUFFLENBQUM7SUFFdENDLElBQUksRUFBRSxDQUFDO0NBQ1I7QUFFRCxTQUFTVixnQkFBZ0IsQ0FBQ0ssT0FBTyxFQUFFO0lBQ2pDQyxPQUFPLENBQUNDLEdBQUcsQ0FBQyxlQUFlLENBQUM7Q0FDN0I7a0JBN0JvQmhCLElBQUkifQ==
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-drag-and-drop",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.54",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/easy-drag-and-drop",
|
|
7
7
|
"description": "Drag and drop functionality for Easy elements.",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"url": "https://github.com/djalbat/easy-drag-and-drop"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"easy": "^13.0.
|
|
14
|
-
"easy-with-style": "^3.0.
|
|
13
|
+
"easy": "^13.0.41",
|
|
14
|
+
"easy-with-style": "^3.0.132",
|
|
15
15
|
"necessary": "^11.0.40"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|