@jbrowse/plugin-linear-genome-view 1.5.3 → 1.5.4
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 +27 -40
- 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 +27 -40
- 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/declare.d.ts +0 -1
|
@@ -70,14 +70,9 @@ function ownKeys(object, enumerableOnly) {
|
|
|
70
70
|
|
|
71
71
|
if (Object.getOwnPropertySymbols) {
|
|
72
72
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
keys.push.apply(keys, symbols);
|
|
73
|
+
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
74
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
75
|
+
})), keys.push.apply(keys, symbols);
|
|
81
76
|
}
|
|
82
77
|
|
|
83
78
|
return keys;
|
|
@@ -85,19 +80,12 @@ function ownKeys(object, enumerableOnly) {
|
|
|
85
80
|
|
|
86
81
|
function _objectSpread2(target) {
|
|
87
82
|
for (var i = 1; i < arguments.length; i++) {
|
|
88
|
-
var source = arguments[i]
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
} else if (Object.getOwnPropertyDescriptors) {
|
|
95
|
-
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
96
|
-
} else {
|
|
97
|
-
ownKeys(Object(source)).forEach(function (key) {
|
|
98
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
99
|
-
});
|
|
100
|
-
}
|
|
83
|
+
var source = null != arguments[i] ? arguments[i] : {};
|
|
84
|
+
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
85
|
+
_defineProperty(target, key, source[key]);
|
|
86
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
87
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
88
|
+
});
|
|
101
89
|
}
|
|
102
90
|
|
|
103
91
|
return target;
|
|
@@ -106,17 +94,11 @@ function _objectSpread2(target) {
|
|
|
106
94
|
function _typeof(obj) {
|
|
107
95
|
"@babel/helpers - typeof";
|
|
108
96
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
_typeof = function (obj) {
|
|
115
|
-
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
116
|
-
};
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
return _typeof(obj);
|
|
97
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
|
98
|
+
return typeof obj;
|
|
99
|
+
} : function (obj) {
|
|
100
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
101
|
+
}, _typeof(obj);
|
|
120
102
|
}
|
|
121
103
|
|
|
122
104
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
@@ -174,6 +156,9 @@ function _defineProperties(target, props) {
|
|
|
174
156
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
175
157
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
176
158
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
159
|
+
Object.defineProperty(Constructor, "prototype", {
|
|
160
|
+
writable: false
|
|
161
|
+
});
|
|
177
162
|
return Constructor;
|
|
178
163
|
}
|
|
179
164
|
|
|
@@ -197,12 +182,15 @@ function _inherits(subClass, superClass) {
|
|
|
197
182
|
throw new TypeError("Super expression must either be null or a function");
|
|
198
183
|
}
|
|
199
184
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
185
|
+
Object.defineProperty(subClass, "prototype", {
|
|
186
|
+
value: Object.create(superClass && superClass.prototype, {
|
|
187
|
+
constructor: {
|
|
188
|
+
value: subClass,
|
|
189
|
+
writable: true,
|
|
190
|
+
configurable: true
|
|
191
|
+
}
|
|
192
|
+
}),
|
|
193
|
+
writable: false
|
|
206
194
|
});
|
|
207
195
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
208
196
|
}
|
|
@@ -1356,8 +1344,7 @@ var useStyles$2 = /*#__PURE__*/makeStyles$1(function (theme) {
|
|
|
1356
1344
|
fontSize: theme.typography.pxToRem(10),
|
|
1357
1345
|
lineHeight: "".concat(round(14 / 10), "em"),
|
|
1358
1346
|
maxWidth: 300,
|
|
1359
|
-
wordWrap: 'break-word'
|
|
1360
|
-
fontWeight: theme.typography.fontWeightMedium
|
|
1347
|
+
wordWrap: 'break-word'
|
|
1361
1348
|
}
|
|
1362
1349
|
};
|
|
1363
1350
|
});
|