@jbrowse/web-core 2.15.0 → 2.15.2
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/BaseWebSession/index.d.ts +1667 -925
- package/dist/BaseWebSession/index.js +4 -0
- package/esm/BaseWebSession/index.d.ts +1667 -925
- package/esm/BaseWebSession/index.js +4 -0
- package/package.json +4 -4
|
@@ -280,6 +280,7 @@ export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
|
|
|
280
280
|
return [
|
|
281
281
|
{
|
|
282
282
|
label: 'About track',
|
|
283
|
+
priority: 1002,
|
|
283
284
|
onClick: () => {
|
|
284
285
|
self.queueDialog(handleClose => [
|
|
285
286
|
AboutDialog,
|
|
@@ -290,6 +291,7 @@ export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
|
|
|
290
291
|
},
|
|
291
292
|
{
|
|
292
293
|
label: 'Settings',
|
|
294
|
+
priority: 1001,
|
|
293
295
|
disabled: !canEdit,
|
|
294
296
|
onClick: () => {
|
|
295
297
|
self.editTrackConfiguration(config);
|
|
@@ -298,12 +300,14 @@ export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
|
|
|
298
300
|
},
|
|
299
301
|
{
|
|
300
302
|
label: 'Delete track',
|
|
303
|
+
priority: 1000,
|
|
301
304
|
disabled: !canEdit || isRefSeq,
|
|
302
305
|
onClick: () => self.deleteTrackConf(config),
|
|
303
306
|
icon: DeleteIcon,
|
|
304
307
|
},
|
|
305
308
|
{
|
|
306
309
|
label: 'Copy track',
|
|
310
|
+
priority: 999,
|
|
307
311
|
disabled: isRefSeq,
|
|
308
312
|
onClick: () => {
|
|
309
313
|
const snap = clone(getSnapshot(config));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/web-core",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.2",
|
|
4
4
|
"description": "JBrowse 2 code shared between web-app type products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime": "^7.16.3",
|
|
45
|
-
"@jbrowse/app-core": "^2.15.
|
|
46
|
-
"@jbrowse/product-core": "^2.15.
|
|
45
|
+
"@jbrowse/app-core": "^2.15.2",
|
|
46
|
+
"@jbrowse/product-core": "^2.15.2",
|
|
47
47
|
"@mui/icons-material": "^6.0.0",
|
|
48
48
|
"@mui/material": "^6.0.0",
|
|
49
49
|
"clone": "^2.0.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "8a58cefbfe39af4c97bcb6ead354d72c9fef9224"
|
|
66
66
|
}
|