jqtree 1.6.3 → 1.7.1
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/.github/workflows/ci.yml +15 -21
- package/.github/workflows/codeql-analysis.yml +2 -2
- package/README.md +1 -1
- package/bower.json +10 -3
- package/config/production +2 -2
- package/config/{rollup.config.js → rollup.config.mjs} +3 -8
- package/docs/Gemfile.lock +34 -37
- package/docs/_config.yml +1 -1
- package/docs/_entries/10_changelog.md +13 -0
- package/docs/_entries/93_getnextnode.md +4 -1
- package/docs/_entries/{95_getpreviousnode.md → 95_getnextvisiblenode.md} +1 -1
- package/docs/_entries/96_getpreviousnode.md +0 -0
- package/docs/_entries/98_getpreviousvisiblenode.md +14 -0
- package/docs/package.json +7 -7
- package/docs/pnpm-lock.yaml +413 -265
- package/docs/static/bower.json +2 -2
- package/docs/static/bower_components/fontawesome/css/all.min.css +6 -2
- package/docs/static/bower_components/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/docs/static/bower_components/jquery/dist/jquery.js +944 -1121
- package/docs/static/bower_components/jquery/dist/jquery.min.js +2 -2
- package/docs/static/documentation.css +181 -159
- package/docs/static/example.css +0 -1
- package/docs/tree.jquery.js +3 -3
- package/lib/dataLoader.js +5 -31
- package/lib/dragAndDropHandler.js +40 -142
- package/lib/elementsRenderer.js +52 -72
- package/lib/keyHandler.js +8 -32
- package/lib/mouse.widget.js +24 -74
- package/lib/node.js +72 -134
- package/lib/nodeElement.js +24 -84
- package/lib/playwright/coverage.js +58 -97
- package/lib/playwright/playwright.test.js +148 -210
- package/lib/playwright/testUtils.js +116 -182
- package/lib/saveStateHandler.js +13 -62
- package/lib/scrollHandler.js +24 -77
- package/lib/selectNodeHandler.js +6 -25
- package/lib/simple.widget.js +20 -53
- package/lib/test/jqTree/accessibility.test.js +37 -0
- package/lib/test/jqTree/create.test.js +0 -4
- package/lib/test/jqTree/events.test.js +73 -84
- package/lib/test/jqTree/keyboard.test.js +0 -6
- package/lib/test/jqTree/loadOnDemand.test.js +84 -121
- package/lib/test/jqTree/methods.test.js +107 -150
- package/lib/test/jqTree/options.test.js +32 -54
- package/lib/test/node.test.js +134 -76
- package/lib/test/nodeUtil.test.js +0 -1
- package/lib/test/support/jqTreeMatchers.js +4 -9
- package/lib/test/support/setupTests.js +0 -4
- package/lib/test/support/testUtil.js +2 -11
- package/lib/test/support/treeStructure.js +0 -6
- package/lib/test/util.test.js +0 -1
- package/lib/tree.jquery.js +28 -239
- package/lib/util.js +0 -6
- package/lib/version.js +1 -1
- package/package.json +44 -47
- package/src/dragAndDropHandler.ts +24 -10
- package/src/elementsRenderer.ts +49 -42
- package/src/jqtreeOptions.ts +3 -3
- package/src/keyHandler.ts +3 -3
- package/src/mouse.widget.ts +12 -0
- package/src/node.ts +52 -16
- package/src/nodeElement.ts +27 -21
- package/src/saveStateHandler.ts +1 -1
- package/src/scrollHandler.ts +6 -2
- package/src/selectNodeHandler.ts +1 -1
- package/src/simple.widget.ts +2 -0
- package/src/test/.eslintrc +3 -1
- package/src/test/jqTree/accessibility.test.ts +25 -0
- package/src/test/jqTree/events.test.ts +79 -93
- package/src/test/jqTree/methods.test.ts +1 -1
- package/src/test/node.test.ts +152 -58
- package/src/test/nodeUtil.test.ts +1 -1
- package/src/tree.jquery.ts +7 -6
- package/src/version.ts +1 -1
- package/tree.jquery.debug.js +297 -904
- package/tree.jquery.debug.js.map +1 -1
- package/tree.jquery.js +3 -3
- package/tree.jquery.js.map +1 -1
- package/tsconfig.json +1 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-brands-400.eot +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-brands-400.svg +0 -3717
- package/docs/static/bower_components/fontawesome/webfonts/fa-brands-400.woff +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-regular-400.eot +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-regular-400.svg +0 -801
- package/docs/static/bower_components/fontawesome/webfonts/fa-regular-400.woff +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-solid-900.eot +0 -0
- package/docs/static/bower_components/fontawesome/webfonts/fa-solid-900.svg +0 -5028
- package/docs/static/bower_components/fontawesome/webfonts/fa-solid-900.woff +0 -0
- /package/docs/_entries/{96_getprevioussibling.md → 97_getprevioussibling.md} +0 -0
- /package/docs/_entries/{97_parent.md → 99_parent.md} +0 -0
package/lib/mouse.widget.js
CHANGED
|
@@ -1,38 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
8
6
|
exports["default"] = void 0;
|
|
9
|
-
|
|
10
7
|
var _simple = _interopRequireDefault(require("./simple.widget"));
|
|
11
|
-
|
|
12
8
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
-
|
|
9
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
14
10
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
-
|
|
16
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
-
|
|
11
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
18
12
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
-
|
|
20
13
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
|
-
|
|
22
14
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
|
-
|
|
24
15
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
25
|
-
|
|
26
16
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
27
|
-
|
|
28
17
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
29
|
-
|
|
30
18
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
31
|
-
|
|
32
19
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
33
|
-
|
|
34
|
-
function
|
|
35
|
-
|
|
20
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
21
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
22
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /*
|
|
23
|
+
This widget does the same a the mouse widget in jqueryui.
|
|
24
|
+
*/
|
|
36
25
|
var getPositionInfoFromMouseEvent = function getPositionInfoFromMouseEvent(e) {
|
|
37
26
|
return {
|
|
38
27
|
pageX: e.pageX,
|
|
@@ -41,7 +30,6 @@ var getPositionInfoFromMouseEvent = function getPositionInfoFromMouseEvent(e) {
|
|
|
41
30
|
originalEvent: e
|
|
42
31
|
};
|
|
43
32
|
};
|
|
44
|
-
|
|
45
33
|
var getPositionInfoFromTouch = function getPositionInfoFromTouch(touch, e) {
|
|
46
34
|
return {
|
|
47
35
|
pageX: touch.pageX,
|
|
@@ -50,102 +38,81 @@ var getPositionInfoFromTouch = function getPositionInfoFromTouch(touch, e) {
|
|
|
50
38
|
originalEvent: e
|
|
51
39
|
};
|
|
52
40
|
};
|
|
53
|
-
|
|
54
41
|
var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
55
42
|
_inherits(MouseWidget, _SimpleWidget);
|
|
56
|
-
|
|
57
43
|
var _super = _createSuper(MouseWidget);
|
|
58
|
-
|
|
59
44
|
function MouseWidget() {
|
|
60
45
|
var _this;
|
|
61
|
-
|
|
62
46
|
_classCallCheck(this, MouseWidget);
|
|
63
|
-
|
|
64
47
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
65
48
|
args[_key] = arguments[_key];
|
|
66
49
|
}
|
|
67
|
-
|
|
68
50
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
69
|
-
|
|
70
51
|
_defineProperty(_assertThisInitialized(_this), "isMouseStarted", void 0);
|
|
71
|
-
|
|
72
52
|
_defineProperty(_assertThisInitialized(_this), "mouseDownInfo", void 0);
|
|
73
|
-
|
|
74
53
|
_defineProperty(_assertThisInitialized(_this), "mouseDelayTimer", void 0);
|
|
75
|
-
|
|
76
54
|
_defineProperty(_assertThisInitialized(_this), "isMouseDelayMet", void 0);
|
|
77
|
-
|
|
78
55
|
_defineProperty(_assertThisInitialized(_this), "mouseDown", function (e) {
|
|
79
56
|
// Left mouse button?
|
|
80
57
|
if (e.button !== 0) {
|
|
81
58
|
return;
|
|
82
59
|
}
|
|
83
|
-
|
|
84
60
|
var result = _this.handleMouseDown(getPositionInfoFromMouseEvent(e));
|
|
85
|
-
|
|
86
61
|
if (result && e.cancelable) {
|
|
87
62
|
e.preventDefault();
|
|
88
63
|
}
|
|
89
64
|
});
|
|
90
|
-
|
|
91
65
|
_defineProperty(_assertThisInitialized(_this), "mouseMove", function (e) {
|
|
92
66
|
_this.handleMouseMove(e, getPositionInfoFromMouseEvent(e));
|
|
93
67
|
});
|
|
94
|
-
|
|
95
68
|
_defineProperty(_assertThisInitialized(_this), "mouseUp", function (e) {
|
|
96
69
|
_this.handleMouseUp(getPositionInfoFromMouseEvent(e));
|
|
97
70
|
});
|
|
98
|
-
|
|
99
71
|
_defineProperty(_assertThisInitialized(_this), "touchStart", function (e) {
|
|
100
72
|
if (!e) {
|
|
101
73
|
return;
|
|
102
74
|
}
|
|
103
|
-
|
|
104
75
|
if (e.touches.length > 1) {
|
|
105
76
|
return;
|
|
106
77
|
}
|
|
107
|
-
|
|
108
78
|
var touch = e.changedTouches[0];
|
|
109
|
-
|
|
79
|
+
if (!touch) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
110
82
|
_this.handleMouseDown(getPositionInfoFromTouch(touch, e));
|
|
111
83
|
});
|
|
112
|
-
|
|
113
84
|
_defineProperty(_assertThisInitialized(_this), "touchMove", function (e) {
|
|
114
85
|
if (!e) {
|
|
115
86
|
return;
|
|
116
87
|
}
|
|
117
|
-
|
|
118
88
|
if (e.touches.length > 1) {
|
|
119
89
|
return;
|
|
120
90
|
}
|
|
121
|
-
|
|
122
91
|
var touch = e.changedTouches[0];
|
|
123
|
-
|
|
92
|
+
if (!touch) {
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
124
95
|
_this.handleMouseMove(e, getPositionInfoFromTouch(touch, e));
|
|
125
96
|
});
|
|
126
|
-
|
|
127
97
|
_defineProperty(_assertThisInitialized(_this), "touchEnd", function (e) {
|
|
128
98
|
if (!e) {
|
|
129
99
|
return;
|
|
130
100
|
}
|
|
131
|
-
|
|
132
101
|
if (e.touches.length > 1) {
|
|
133
102
|
return;
|
|
134
103
|
}
|
|
135
|
-
|
|
136
104
|
var touch = e.changedTouches[0];
|
|
137
|
-
|
|
105
|
+
if (!touch) {
|
|
106
|
+
return;
|
|
107
|
+
}
|
|
138
108
|
_this.handleMouseUp(getPositionInfoFromTouch(touch, e));
|
|
139
109
|
});
|
|
140
|
-
|
|
141
110
|
return _this;
|
|
142
111
|
}
|
|
143
|
-
|
|
144
112
|
_createClass(MouseWidget, [{
|
|
145
113
|
key: "init",
|
|
146
114
|
value: function init() {
|
|
147
115
|
var element = this.$el.get(0);
|
|
148
|
-
|
|
149
116
|
if (element) {
|
|
150
117
|
element.addEventListener("mousedown", this.mouseDown, {
|
|
151
118
|
passive: false
|
|
@@ -154,7 +121,6 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
154
121
|
passive: false
|
|
155
122
|
});
|
|
156
123
|
}
|
|
157
|
-
|
|
158
124
|
this.isMouseStarted = false;
|
|
159
125
|
this.mouseDelayTimer = null;
|
|
160
126
|
this.isMouseDelayMet = false;
|
|
@@ -164,18 +130,17 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
164
130
|
key: "deinit",
|
|
165
131
|
value: function deinit() {
|
|
166
132
|
var el = this.$el.get(0);
|
|
167
|
-
|
|
168
133
|
if (el) {
|
|
169
134
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
170
135
|
el.removeEventListener("mousedown", this.mouseDown, {
|
|
171
136
|
passive: false
|
|
172
|
-
});
|
|
137
|
+
});
|
|
173
138
|
|
|
139
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
174
140
|
el.removeEventListener("touchstart", this.touchStart, {
|
|
175
141
|
passive: false
|
|
176
142
|
});
|
|
177
143
|
}
|
|
178
|
-
|
|
179
144
|
this.removeMouseMoveEventListeners();
|
|
180
145
|
}
|
|
181
146
|
}, {
|
|
@@ -185,13 +150,10 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
185
150
|
if (this.isMouseStarted) {
|
|
186
151
|
this.handleMouseUp(positionInfo);
|
|
187
152
|
}
|
|
188
|
-
|
|
189
153
|
this.mouseDownInfo = positionInfo;
|
|
190
|
-
|
|
191
154
|
if (!this.mouseCapture(positionInfo)) {
|
|
192
155
|
return false;
|
|
193
156
|
}
|
|
194
|
-
|
|
195
157
|
this.handleStartMouse();
|
|
196
158
|
return true;
|
|
197
159
|
}
|
|
@@ -211,7 +173,6 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
211
173
|
passive: false
|
|
212
174
|
});
|
|
213
175
|
var mouseDelay = this.getMouseDelay();
|
|
214
|
-
|
|
215
176
|
if (mouseDelay) {
|
|
216
177
|
this.startMouseDelayTimer(mouseDelay);
|
|
217
178
|
} else {
|
|
@@ -222,11 +183,9 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
222
183
|
key: "startMouseDelayTimer",
|
|
223
184
|
value: function startMouseDelayTimer(mouseDelay) {
|
|
224
185
|
var _this2 = this;
|
|
225
|
-
|
|
226
186
|
if (this.mouseDelayTimer) {
|
|
227
187
|
clearTimeout(this.mouseDelayTimer);
|
|
228
188
|
}
|
|
229
|
-
|
|
230
189
|
this.mouseDelayTimer = window.setTimeout(function () {
|
|
231
190
|
if (_this2.mouseDownInfo) {
|
|
232
191
|
_this2.isMouseDelayMet = true;
|
|
@@ -239,25 +198,19 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
239
198
|
value: function handleMouseMove(e, positionInfo) {
|
|
240
199
|
if (this.isMouseStarted) {
|
|
241
200
|
this.mouseDrag(positionInfo);
|
|
242
|
-
|
|
243
201
|
if (e.cancelable) {
|
|
244
202
|
e.preventDefault();
|
|
245
203
|
}
|
|
246
|
-
|
|
247
204
|
return;
|
|
248
205
|
}
|
|
249
|
-
|
|
250
206
|
if (!this.isMouseDelayMet) {
|
|
251
207
|
return;
|
|
252
208
|
}
|
|
253
|
-
|
|
254
209
|
if (this.mouseDownInfo) {
|
|
255
210
|
this.isMouseStarted = this.mouseStart(this.mouseDownInfo) !== false;
|
|
256
211
|
}
|
|
257
|
-
|
|
258
212
|
if (this.isMouseStarted) {
|
|
259
213
|
this.mouseDrag(positionInfo);
|
|
260
|
-
|
|
261
214
|
if (e.cancelable) {
|
|
262
215
|
e.preventDefault();
|
|
263
216
|
}
|
|
@@ -271,7 +224,6 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
271
224
|
this.removeMouseMoveEventListeners();
|
|
272
225
|
this.isMouseDelayMet = false;
|
|
273
226
|
this.mouseDownInfo = null;
|
|
274
|
-
|
|
275
227
|
if (this.isMouseStarted) {
|
|
276
228
|
this.isMouseStarted = false;
|
|
277
229
|
this.mouseStop(positionInfo);
|
|
@@ -283,24 +235,22 @@ var MouseWidget = /*#__PURE__*/function (_SimpleWidget) {
|
|
|
283
235
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
284
236
|
document.removeEventListener("mousemove", this.mouseMove, {
|
|
285
237
|
passive: false
|
|
286
|
-
});
|
|
287
|
-
|
|
238
|
+
});
|
|
239
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
288
240
|
document.removeEventListener("touchmove", this.touchMove, {
|
|
289
241
|
passive: false
|
|
290
|
-
});
|
|
291
|
-
|
|
242
|
+
});
|
|
243
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
292
244
|
document.removeEventListener("mouseup", this.mouseUp, {
|
|
293
245
|
passive: false
|
|
294
|
-
});
|
|
295
|
-
|
|
246
|
+
});
|
|
247
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
296
248
|
document.removeEventListener("touchend", this.touchEnd, {
|
|
297
249
|
passive: false
|
|
298
250
|
});
|
|
299
251
|
}
|
|
300
252
|
}]);
|
|
301
|
-
|
|
302
253
|
return MouseWidget;
|
|
303
254
|
}(_simple["default"]);
|
|
304
|
-
|
|
305
255
|
var _default = MouseWidget;
|
|
306
256
|
exports["default"] = _default;
|