@jbrowse/plugin-config 1.5.1 → 1.5.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/plugin-config.cjs.development.js +13 -12
- package/dist/plugin-config.cjs.development.js.map +1 -1
- package/dist/plugin-config.cjs.production.min.js +1 -1
- package/dist/plugin-config.cjs.production.min.js.map +1 -1
- package/dist/plugin-config.esm.js +20 -19
- package/dist/plugin-config.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/ConfigurationEditorWidget/components/CallbackEditor.js +8 -6
- package/src/ConfigurationEditorWidget/components/__snapshots__/ConfigurationEditor.test.js.snap +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-config",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "JBrowse 2 config utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@material-ui/icons": "^4.9.1",
|
|
39
|
-
"generic-filehandle": "^2.2.
|
|
39
|
+
"generic-filehandle": "^2.2.2",
|
|
40
40
|
"pluralize": "^8.0.0",
|
|
41
41
|
"react-color": "^2.19.3",
|
|
42
42
|
"react-simple-code-editor": "0.9.3",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "94fdfbc34787ab8f12a87e00038da74b247b42fa"
|
|
59
59
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import React, { useEffect, useState } from 'react'
|
|
2
2
|
import { useDebounce } from '@jbrowse/core/util'
|
|
3
3
|
import { stringToJexlExpression } from '@jbrowse/core/util/jexlStrings'
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
import {
|
|
5
|
+
FormControl,
|
|
6
|
+
FormHelperText,
|
|
7
|
+
InputLabel,
|
|
8
|
+
Tooltip,
|
|
9
|
+
IconButton,
|
|
10
|
+
makeStyles,
|
|
11
|
+
} from '@material-ui/core'
|
|
10
12
|
import HelpIcon from '@material-ui/icons/Help'
|
|
11
13
|
import { getEnv } from 'mobx-state-tree'
|
|
12
14
|
import { observer, PropTypes } from 'mobx-react'
|
package/src/ConfigurationEditorWidget/components/__snapshots__/ConfigurationEditor.test.js.snap
CHANGED
|
@@ -992,13 +992,13 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
992
992
|
</label>
|
|
993
993
|
<div
|
|
994
994
|
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl"
|
|
995
|
-
style="color: rgb(
|
|
995
|
+
style="color: rgb(255, 0, 255); border-right-width: 25px; border-right-style: solid; border-right-color: #f0f;"
|
|
996
996
|
>
|
|
997
997
|
<input
|
|
998
998
|
aria-invalid="false"
|
|
999
999
|
class="MuiInputBase-input MuiInput-input"
|
|
1000
1000
|
type="text"
|
|
1001
|
-
value="#
|
|
1001
|
+
value="#f0f"
|
|
1002
1002
|
/>
|
|
1003
1003
|
</div>
|
|
1004
1004
|
<p
|