@jbrowse/plugin-linear-genome-view 1.5.2 → 1.5.6
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/plugin-linear-genome-view.cjs.development.js +31 -42
- package/dist/plugin-linear-genome-view.cjs.development.js.map +1 -1
- package/dist/plugin-linear-genome-view.cjs.production.min.js +1 -1
- package/dist/plugin-linear-genome-view.cjs.production.min.js.map +1 -1
- package/dist/plugin-linear-genome-view.esm.js +32 -43
- package/dist/plugin-linear-genome-view.esm.js.map +1 -1
- package/package.json +4 -4
- package/src/BaseLinearDisplay/components/BaseLinearDisplay.tsx +0 -1
- package/src/LinearGenomeView/components/RefNameAutocomplete.tsx +4 -2
- package/src/declare.d.ts +0 -1
|
@@ -78,14 +78,9 @@ function ownKeys(object, enumerableOnly) {
|
|
|
78
78
|
|
|
79
79
|
if (Object.getOwnPropertySymbols) {
|
|
80
80
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
keys.push.apply(keys, symbols);
|
|
81
|
+
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
82
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
83
|
+
})), keys.push.apply(keys, symbols);
|
|
89
84
|
}
|
|
90
85
|
|
|
91
86
|
return keys;
|
|
@@ -93,19 +88,12 @@ function ownKeys(object, enumerableOnly) {
|
|
|
93
88
|
|
|
94
89
|
function _objectSpread2(target) {
|
|
95
90
|
for (var i = 1; i < arguments.length; i++) {
|
|
96
|
-
var source = arguments[i]
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
} else if (Object.getOwnPropertyDescriptors) {
|
|
103
|
-
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
104
|
-
} else {
|
|
105
|
-
ownKeys(Object(source)).forEach(function (key) {
|
|
106
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
107
|
-
});
|
|
108
|
-
}
|
|
91
|
+
var source = null != arguments[i] ? arguments[i] : {};
|
|
92
|
+
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
93
|
+
_defineProperty(target, key, source[key]);
|
|
94
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
95
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
96
|
+
});
|
|
109
97
|
}
|
|
110
98
|
|
|
111
99
|
return target;
|
|
@@ -114,17 +102,11 @@ function _objectSpread2(target) {
|
|
|
114
102
|
function _typeof(obj) {
|
|
115
103
|
"@babel/helpers - typeof";
|
|
116
104
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
122
|
-
_typeof = function (obj) {
|
|
123
|
-
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
return _typeof(obj);
|
|
105
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
|
106
|
+
return typeof obj;
|
|
107
|
+
} : function (obj) {
|
|
108
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
109
|
+
}, _typeof(obj);
|
|
128
110
|
}
|
|
129
111
|
|
|
130
112
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -182,6 +164,9 @@ function _defineProperties(target, props) {
|
|
|
182
164
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
183
165
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
184
166
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
167
|
+
Object.defineProperty(Constructor, "prototype", {
|
|
168
|
+
writable: false
|
|
169
|
+
});
|
|
185
170
|
return Constructor;
|
|
186
171
|
}
|
|
187
172
|
|
|
@@ -205,12 +190,15 @@ function _inherits(subClass, superClass) {
|
|
|
205
190
|
throw new TypeError("Super expression must either be null or a function");
|
|
206
191
|
}
|
|
207
192
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
193
|
+
Object.defineProperty(subClass, "prototype", {
|
|
194
|
+
value: Object.create(superClass && superClass.prototype, {
|
|
195
|
+
constructor: {
|
|
196
|
+
value: subClass,
|
|
197
|
+
writable: true,
|
|
198
|
+
configurable: true
|
|
199
|
+
}
|
|
200
|
+
}),
|
|
201
|
+
writable: false
|
|
214
202
|
});
|
|
215
203
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
216
204
|
}
|
|
@@ -1364,8 +1352,7 @@ var useStyles$2 = /*#__PURE__*/core.makeStyles(function (theme) {
|
|
|
1364
1352
|
fontSize: theme.typography.pxToRem(10),
|
|
1365
1353
|
lineHeight: "".concat(round(14 / 10), "em"),
|
|
1366
1354
|
maxWidth: 300,
|
|
1367
|
-
wordWrap: 'break-word'
|
|
1368
|
-
fontWeight: theme.typography.fontWeightMedium
|
|
1355
|
+
wordWrap: 'break-word'
|
|
1369
1356
|
}
|
|
1370
1357
|
};
|
|
1371
1358
|
});
|
|
@@ -3822,11 +3809,13 @@ function RefNameAutocomplete(_ref) {
|
|
|
3822
3809
|
getOptionLabel: function getOptionLabel(option) {
|
|
3823
3810
|
return (typeof option === 'string' ? option : option.result.getLabel()) || '';
|
|
3824
3811
|
}
|
|
3825
|
-
}), isHelpDialogDisplayed ? /*#__PURE__*/React__default.createElement(
|
|
3812
|
+
}), isHelpDialogDisplayed ? /*#__PURE__*/React__default.createElement(React.Suspense, {
|
|
3813
|
+
fallback: /*#__PURE__*/React__default.createElement("div", null)
|
|
3814
|
+
}, /*#__PURE__*/React__default.createElement(HelpDialog, {
|
|
3826
3815
|
handleClose: function handleClose() {
|
|
3827
3816
|
return setHelpDialogDisplayed(false);
|
|
3828
3817
|
}
|
|
3829
|
-
}) : null);
|
|
3818
|
+
})) : null);
|
|
3830
3819
|
}
|
|
3831
3820
|
|
|
3832
3821
|
var RefNameAutocomplete$1 = /*#__PURE__*/mobxReact.observer(RefNameAutocomplete);
|