@jbrowse/plugin-data-management 2.1.7 → 2.2.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/dist/AddConnectionWidget/components/ConfigureConnection.js +3 -2
- package/dist/AddConnectionWidget/components/ConfigureConnection.js.map +1 -1
- package/dist/AddTrackWidget/components/AddTrackWidget.js +2 -0
- package/dist/AddTrackWidget/components/AddTrackWidget.js.map +1 -1
- package/dist/AddTrackWidget/components/PasteConfigWorkflow.d.ts +7 -0
- package/dist/AddTrackWidget/components/PasteConfigWorkflow.js +66 -0
- package/dist/AddTrackWidget/components/PasteConfigWorkflow.js.map +1 -0
- package/dist/AddTrackWidget/model.d.ts +2 -2
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js.map +1 -1
- package/dist/HierarchicalTrackSelectorWidget/model.d.ts +3 -3
- package/dist/PluginStoreWidget/components/PluginStoreWidget.js +4 -3
- package/dist/PluginStoreWidget/components/PluginStoreWidget.js.map +1 -1
- package/dist/PluginStoreWidget/model.d.ts +2 -2
- package/dist/ucsc-trackhub/configSchema.d.ts +2 -2
- package/dist/ucsc-trackhub/configSchema.js +18 -2
- package/dist/ucsc-trackhub/configSchema.js.map +1 -1
- package/esm/AddConnectionWidget/components/ConfigureConnection.js +3 -2
- package/esm/AddConnectionWidget/components/ConfigureConnection.js.map +1 -1
- package/esm/AddTrackWidget/components/AddTrackWidget.js +2 -0
- package/esm/AddTrackWidget/components/AddTrackWidget.js.map +1 -1
- package/esm/AddTrackWidget/components/PasteConfigWorkflow.d.ts +7 -0
- package/esm/AddTrackWidget/components/PasteConfigWorkflow.js +41 -0
- package/esm/AddTrackWidget/components/PasteConfigWorkflow.js.map +1 -0
- package/esm/AddTrackWidget/model.d.ts +2 -2
- package/esm/AddTrackWidget/model.js +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js.map +1 -1
- package/esm/HierarchicalTrackSelectorWidget/model.d.ts +3 -3
- package/esm/PluginStoreWidget/components/PluginStoreWidget.js +4 -3
- package/esm/PluginStoreWidget/components/PluginStoreWidget.js.map +1 -1
- package/esm/PluginStoreWidget/model.d.ts +2 -2
- package/esm/ucsc-trackhub/configSchema.d.ts +2 -2
- package/esm/ucsc-trackhub/configSchema.js +18 -2
- package/esm/ucsc-trackhub/configSchema.js.map +1 -1
- package/package.json +2 -2
- package/src/AddConnectionWidget/components/ConfigureConnection.tsx +3 -2
- package/src/AddConnectionWidget/components/__snapshots__/AddConnectionWidget.test.js.snap +5 -5
- package/src/AddTrackWidget/components/AddTrackWidget.tsx +2 -0
- package/src/AddTrackWidget/components/PasteConfigWorkflow.tsx +64 -0
- package/src/AddTrackWidget/model.ts +1 -1
- package/src/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.tsx +1 -1
- package/src/HierarchicalTrackSelectorWidget/components/__snapshots__/HierarchicalTrackSelector.test.tsx.snap +7 -7
- package/src/PluginStoreWidget/components/PluginStoreWidget.tsx +4 -4
- package/src/PluginStoreWidget/components/__snapshots__/PluginStoreWidget.test.js.snap +57 -35
- package/src/__snapshots__/index.test.js.snap +4 -4
- package/src/ucsc-trackhub/{configSchema.js → configSchema.ts} +20 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-data-management",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "JBrowse 2 linear genome view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"distModule": "esm/index.js",
|
|
62
62
|
"srcModule": "src/index.ts",
|
|
63
63
|
"module": "esm/index.js",
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "896d175c5d9345049faea8e1155f243c912aac42"
|
|
65
65
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React, { Suspense } from 'react'
|
|
2
|
-
import { ConfigurationEditor } from '@jbrowse/plugin-config'
|
|
3
2
|
import { observer } from 'mobx-react'
|
|
3
|
+
import { ConfigurationEditor } from '@jbrowse/plugin-config'
|
|
4
4
|
import { ConnectionType } from '@jbrowse/core/pluggableElementTypes'
|
|
5
5
|
import { AnyConfigurationModel } from '@jbrowse/core/configuration'
|
|
6
6
|
import { AbstractSessionModel } from '@jbrowse/core/util'
|
|
7
|
+
import { LoadingEllipses } from '@jbrowse/core/ui'
|
|
7
8
|
|
|
8
9
|
const ConfigureConnection = observer(
|
|
9
10
|
(props: {
|
|
@@ -16,7 +17,7 @@ const ConfigureConnection = observer(
|
|
|
16
17
|
connectionType.configEditorComponent || ConfigurationEditor
|
|
17
18
|
|
|
18
19
|
return (
|
|
19
|
-
<Suspense fallback={<
|
|
20
|
+
<Suspense fallback={<LoadingEllipses />}>
|
|
20
21
|
<ConfigEditorComponent model={{ target: model }} session={session} />
|
|
21
22
|
</Suspense>
|
|
22
23
|
)
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`<AddConnectionWidget /> renders 1`] = `
|
|
4
4
|
<div
|
|
5
|
-
class="
|
|
5
|
+
class="css-1ohm0fb-root"
|
|
6
6
|
>
|
|
7
7
|
<div
|
|
8
|
-
class="MuiStepper-root MuiStepper-vertical
|
|
8
|
+
class="MuiStepper-root MuiStepper-vertical css-1nq3qk0-MuiStepper-root-stepper"
|
|
9
9
|
>
|
|
10
10
|
<div
|
|
11
11
|
class="MuiStep-root MuiStep-vertical css-8wcvy5-MuiStep-root"
|
|
@@ -151,10 +151,10 @@ exports[`<AddConnectionWidget /> renders 1`] = `
|
|
|
151
151
|
</div>
|
|
152
152
|
</form>
|
|
153
153
|
<div
|
|
154
|
-
class="
|
|
154
|
+
class="css-1spe31o-actionsContainer"
|
|
155
155
|
>
|
|
156
156
|
<button
|
|
157
|
-
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium Mui-disabled MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium
|
|
157
|
+
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium Mui-disabled MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium css-1j3hqkx-MuiButtonBase-root-MuiButton-root-button"
|
|
158
158
|
disabled=""
|
|
159
159
|
tabindex="-1"
|
|
160
160
|
type="button"
|
|
@@ -162,7 +162,7 @@ exports[`<AddConnectionWidget /> renders 1`] = `
|
|
|
162
162
|
Back
|
|
163
163
|
</button>
|
|
164
164
|
<button
|
|
165
|
-
class="MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium
|
|
165
|
+
class="MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium css-1xo5g2a-MuiButtonBase-root-MuiButton-root-button"
|
|
166
166
|
data-testid="addConnectionNext"
|
|
167
167
|
tabindex="0"
|
|
168
168
|
type="button"
|
|
@@ -7,6 +7,7 @@ import { getEnv, useLocalStorage } from '@jbrowse/core/util'
|
|
|
7
7
|
// locals
|
|
8
8
|
import { AddTrackModel } from '../model'
|
|
9
9
|
import DefaultAddTrackWorkflow from './DefaultAddTrackWorkflow'
|
|
10
|
+
import PasteConfigWorkflow from './PasteConfigWorkflow'
|
|
10
11
|
|
|
11
12
|
function AddTrackSelector({ model }: { model: AddTrackModel }) {
|
|
12
13
|
const [val, setVal] = useLocalStorage('trackSelector-choice', 'Default')
|
|
@@ -16,6 +17,7 @@ function AddTrackSelector({ model }: { model: AddTrackModel }) {
|
|
|
16
17
|
) as AddTrackWorkflowType[]
|
|
17
18
|
const ComponentMap = {
|
|
18
19
|
Default: DefaultAddTrackWorkflow,
|
|
20
|
+
'Add track JSON': PasteConfigWorkflow,
|
|
19
21
|
...Object.fromEntries(widgets.map(w => [w.name, w.ReactComponent])),
|
|
20
22
|
} as { [key: string]: React.FC<{ model: AddTrackModel }> }
|
|
21
23
|
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import React, { useState } from 'react'
|
|
2
|
+
import { Button, TextField } from '@mui/material'
|
|
3
|
+
import { ErrorMessage } from '@jbrowse/core/ui'
|
|
4
|
+
import { makeStyles } from 'tss-react/mui'
|
|
5
|
+
import { getSession } from '@jbrowse/core/util'
|
|
6
|
+
import { observer } from 'mobx-react'
|
|
7
|
+
|
|
8
|
+
// locals
|
|
9
|
+
import { AddTrackModel } from '../model'
|
|
10
|
+
|
|
11
|
+
const useStyles = makeStyles()({
|
|
12
|
+
textbox: {
|
|
13
|
+
width: '100%',
|
|
14
|
+
},
|
|
15
|
+
submit: {
|
|
16
|
+
marginTop: 25,
|
|
17
|
+
marginBottom: 100,
|
|
18
|
+
display: 'block',
|
|
19
|
+
},
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
function AddTrackWorkflow({ model }: { model: AddTrackModel }) {
|
|
23
|
+
const { classes } = useStyles()
|
|
24
|
+
const [val, setVal] = useState('')
|
|
25
|
+
const [error, setError] = useState<unknown>()
|
|
26
|
+
|
|
27
|
+
return (
|
|
28
|
+
<div>
|
|
29
|
+
{error ? <ErrorMessage error={error} /> : null}
|
|
30
|
+
<TextField
|
|
31
|
+
multiline
|
|
32
|
+
rows={10}
|
|
33
|
+
value={val}
|
|
34
|
+
onChange={event => setVal(event.target.value)}
|
|
35
|
+
placeholder={
|
|
36
|
+
'Paste track config or array of track configs in JSON format'
|
|
37
|
+
}
|
|
38
|
+
variant="outlined"
|
|
39
|
+
className={classes.textbox}
|
|
40
|
+
/>
|
|
41
|
+
<Button
|
|
42
|
+
variant="contained"
|
|
43
|
+
className={classes.submit}
|
|
44
|
+
onClick={() => {
|
|
45
|
+
try {
|
|
46
|
+
setError(undefined)
|
|
47
|
+
const session = getSession(model)
|
|
48
|
+
const conf = JSON.parse(val)
|
|
49
|
+
const confs = Array.isArray(conf) ? conf : [conf]
|
|
50
|
+
confs.forEach(c => session.addTrackConf(c))
|
|
51
|
+
confs.forEach(c => c.trackId)
|
|
52
|
+
model.clearData()
|
|
53
|
+
session.hideWidget(model)
|
|
54
|
+
} catch (e) {
|
|
55
|
+
setError(e)
|
|
56
|
+
}
|
|
57
|
+
}}
|
|
58
|
+
>
|
|
59
|
+
Submit
|
|
60
|
+
</Button>
|
|
61
|
+
</div>
|
|
62
|
+
)
|
|
63
|
+
}
|
|
64
|
+
export default observer(AddTrackWorkflow)
|
|
@@ -256,7 +256,7 @@ const HierarchicalTrackSelector = observer(
|
|
|
256
256
|
const [headerHeight, setHeaderHeight] = useState(0)
|
|
257
257
|
|
|
258
258
|
const { assemblyNames } = model
|
|
259
|
-
const assemblyName = assemblyNames[assemblyIdx]
|
|
259
|
+
const assemblyName = assemblyNames.length ? assemblyNames[assemblyIdx] : ''
|
|
260
260
|
return assemblyName ? (
|
|
261
261
|
<>
|
|
262
262
|
<Header
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`HierarchicalTrackSelector widget renders nothing with no assembly 1`] = `
|
|
4
4
|
<button
|
|
5
|
-
class="MuiButtonBase-root MuiFab-root MuiFab-circular MuiFab-sizeSmall MuiFab-secondary
|
|
5
|
+
class="MuiButtonBase-root MuiFab-root MuiFab-circular MuiFab-sizeSmall MuiFab-secondary MuiFab-root MuiFab-circular MuiFab-sizeSmall MuiFab-secondary css-tbl9bo-MuiButtonBase-root-MuiFab-root-fab"
|
|
6
6
|
tabindex="0"
|
|
7
7
|
type="button"
|
|
8
8
|
>
|
|
@@ -31,7 +31,7 @@ exports[`HierarchicalTrackSelector widget renders with a couple of categorized t
|
|
|
31
31
|
style="display: flex;"
|
|
32
32
|
>
|
|
33
33
|
<button
|
|
34
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall
|
|
34
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1m9x3cr-MuiButtonBase-root-MuiIconButton-root-menuIcon"
|
|
35
35
|
tabindex="0"
|
|
36
36
|
type="button"
|
|
37
37
|
>
|
|
@@ -51,7 +51,7 @@ exports[`HierarchicalTrackSelector widget renders with a couple of categorized t
|
|
|
51
51
|
/>
|
|
52
52
|
</button>
|
|
53
53
|
<button
|
|
54
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall
|
|
54
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1m9x3cr-MuiButtonBase-root-MuiIconButton-root-menuIcon"
|
|
55
55
|
tabindex="0"
|
|
56
56
|
type="button"
|
|
57
57
|
>
|
|
@@ -70,7 +70,7 @@ exports[`HierarchicalTrackSelector widget renders with a couple of categorized t
|
|
|
70
70
|
/>
|
|
71
71
|
</button>
|
|
72
72
|
<div
|
|
73
|
-
class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root
|
|
73
|
+
class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root css-rlnh8o-MuiFormControl-root-MuiTextField-root-searchBox"
|
|
74
74
|
>
|
|
75
75
|
<label
|
|
76
76
|
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-sizeSmall MuiInputLabel-standard MuiFormLabel-colorPrimary MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-sizeSmall MuiInputLabel-standard css-1s1jvl0-MuiFormLabel-root-MuiInputLabel-root"
|
|
@@ -128,7 +128,7 @@ exports[`HierarchicalTrackSelector widget renders with a couple of uncategorized
|
|
|
128
128
|
style="display: flex;"
|
|
129
129
|
>
|
|
130
130
|
<button
|
|
131
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall
|
|
131
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1m9x3cr-MuiButtonBase-root-MuiIconButton-root-menuIcon"
|
|
132
132
|
tabindex="0"
|
|
133
133
|
type="button"
|
|
134
134
|
>
|
|
@@ -148,7 +148,7 @@ exports[`HierarchicalTrackSelector widget renders with a couple of uncategorized
|
|
|
148
148
|
/>
|
|
149
149
|
</button>
|
|
150
150
|
<button
|
|
151
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall
|
|
151
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeSmall css-1m9x3cr-MuiButtonBase-root-MuiIconButton-root-menuIcon"
|
|
152
152
|
tabindex="0"
|
|
153
153
|
type="button"
|
|
154
154
|
>
|
|
@@ -167,7 +167,7 @@ exports[`HierarchicalTrackSelector widget renders with a couple of uncategorized
|
|
|
167
167
|
/>
|
|
168
168
|
</button>
|
|
169
169
|
<div
|
|
170
|
-
class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root
|
|
170
|
+
class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root css-rlnh8o-MuiFormControl-root-MuiTextField-root-searchBox"
|
|
171
171
|
>
|
|
172
172
|
<label
|
|
173
173
|
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-sizeSmall MuiInputLabel-standard MuiFormLabel-colorPrimary MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-sizeSmall MuiInputLabel-standard css-1s1jvl0-MuiFormLabel-root-MuiInputLabel-root"
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react'
|
|
2
|
-
import { observer } from 'mobx-react'
|
|
3
|
-
import { getEnv } from 'mobx-state-tree'
|
|
4
2
|
|
|
5
3
|
import {
|
|
6
4
|
Accordion,
|
|
@@ -12,8 +10,10 @@ import {
|
|
|
12
10
|
Typography,
|
|
13
11
|
} from '@mui/material'
|
|
14
12
|
import { makeStyles } from 'tss-react/mui'
|
|
15
|
-
|
|
13
|
+
import { observer } from 'mobx-react'
|
|
14
|
+
import { getEnv } from 'mobx-state-tree'
|
|
16
15
|
import { JBrowsePlugin } from '@jbrowse/core/util/types'
|
|
16
|
+
import { LoadingEllipses } from '@jbrowse/core/ui'
|
|
17
17
|
import { getSession, isElectron } from '@jbrowse/core/util'
|
|
18
18
|
|
|
19
19
|
// icons
|
|
@@ -177,7 +177,7 @@ function PluginStoreWidget({ model }: { model: PluginStoreModel }) {
|
|
|
177
177
|
/>
|
|
178
178
|
))
|
|
179
179
|
) : (
|
|
180
|
-
<
|
|
180
|
+
<LoadingEllipses />
|
|
181
181
|
)}
|
|
182
182
|
</Accordion>
|
|
183
183
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
4
4
|
<div
|
|
5
|
-
class="
|
|
5
|
+
class="css-1kq0gb6-root"
|
|
6
6
|
>
|
|
7
7
|
<div
|
|
8
8
|
class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root css-1z10yd4-MuiFormControl-root-MuiTextField-root"
|
|
@@ -74,7 +74,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
74
74
|
>
|
|
75
75
|
<svg
|
|
76
76
|
aria-hidden="true"
|
|
77
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
77
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-kbgf2m-MuiSvgIcon-root-expandIcon"
|
|
78
78
|
data-testid="ExpandMoreIcon"
|
|
79
79
|
focusable="false"
|
|
80
80
|
viewBox="0 0 24 24"
|
|
@@ -111,7 +111,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
111
111
|
<svg
|
|
112
112
|
aria-hidden="true"
|
|
113
113
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
114
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
114
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
115
115
|
data-mui-internal-clone-element="true"
|
|
116
116
|
data-testid="LockIcon"
|
|
117
117
|
focusable="false"
|
|
@@ -133,7 +133,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
133
133
|
<svg
|
|
134
134
|
aria-hidden="true"
|
|
135
135
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
136
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
136
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
137
137
|
data-mui-internal-clone-element="true"
|
|
138
138
|
data-testid="LockIcon"
|
|
139
139
|
focusable="false"
|
|
@@ -155,7 +155,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
155
155
|
<svg
|
|
156
156
|
aria-hidden="true"
|
|
157
157
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
158
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
158
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
159
159
|
data-mui-internal-clone-element="true"
|
|
160
160
|
data-testid="LockIcon"
|
|
161
161
|
focusable="false"
|
|
@@ -177,7 +177,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
177
177
|
<svg
|
|
178
178
|
aria-hidden="true"
|
|
179
179
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
180
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
180
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
181
181
|
data-mui-internal-clone-element="true"
|
|
182
182
|
data-testid="LockIcon"
|
|
183
183
|
focusable="false"
|
|
@@ -199,7 +199,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
199
199
|
<svg
|
|
200
200
|
aria-hidden="true"
|
|
201
201
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
202
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
202
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
203
203
|
data-mui-internal-clone-element="true"
|
|
204
204
|
data-testid="LockIcon"
|
|
205
205
|
focusable="false"
|
|
@@ -221,7 +221,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
221
221
|
<svg
|
|
222
222
|
aria-hidden="true"
|
|
223
223
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
224
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
224
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
225
225
|
data-mui-internal-clone-element="true"
|
|
226
226
|
data-testid="LockIcon"
|
|
227
227
|
focusable="false"
|
|
@@ -243,7 +243,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
243
243
|
<svg
|
|
244
244
|
aria-hidden="true"
|
|
245
245
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
246
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
246
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
247
247
|
data-mui-internal-clone-element="true"
|
|
248
248
|
data-testid="LockIcon"
|
|
249
249
|
focusable="false"
|
|
@@ -265,7 +265,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
265
265
|
<svg
|
|
266
266
|
aria-hidden="true"
|
|
267
267
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
268
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
268
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
269
269
|
data-mui-internal-clone-element="true"
|
|
270
270
|
data-testid="LockIcon"
|
|
271
271
|
focusable="false"
|
|
@@ -287,7 +287,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
287
287
|
<svg
|
|
288
288
|
aria-hidden="true"
|
|
289
289
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
290
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
290
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
291
291
|
data-mui-internal-clone-element="true"
|
|
292
292
|
data-testid="LockIcon"
|
|
293
293
|
focusable="false"
|
|
@@ -309,7 +309,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
309
309
|
<svg
|
|
310
310
|
aria-hidden="true"
|
|
311
311
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
312
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
312
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
313
313
|
data-mui-internal-clone-element="true"
|
|
314
314
|
data-testid="LockIcon"
|
|
315
315
|
focusable="false"
|
|
@@ -331,7 +331,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
331
331
|
<svg
|
|
332
332
|
aria-hidden="true"
|
|
333
333
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
334
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
334
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
335
335
|
data-mui-internal-clone-element="true"
|
|
336
336
|
data-testid="LockIcon"
|
|
337
337
|
focusable="false"
|
|
@@ -353,7 +353,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
353
353
|
<svg
|
|
354
354
|
aria-hidden="true"
|
|
355
355
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
356
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
356
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
357
357
|
data-mui-internal-clone-element="true"
|
|
358
358
|
data-testid="LockIcon"
|
|
359
359
|
focusable="false"
|
|
@@ -375,7 +375,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
375
375
|
<svg
|
|
376
376
|
aria-hidden="true"
|
|
377
377
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
378
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
378
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
379
379
|
data-mui-internal-clone-element="true"
|
|
380
380
|
data-testid="LockIcon"
|
|
381
381
|
focusable="false"
|
|
@@ -397,7 +397,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
397
397
|
<svg
|
|
398
398
|
aria-hidden="true"
|
|
399
399
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
400
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
400
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
401
401
|
data-mui-internal-clone-element="true"
|
|
402
402
|
data-testid="LockIcon"
|
|
403
403
|
focusable="false"
|
|
@@ -419,7 +419,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
419
419
|
<svg
|
|
420
420
|
aria-hidden="true"
|
|
421
421
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
422
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
422
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
423
423
|
data-mui-internal-clone-element="true"
|
|
424
424
|
data-testid="LockIcon"
|
|
425
425
|
focusable="false"
|
|
@@ -441,7 +441,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
441
441
|
<svg
|
|
442
442
|
aria-hidden="true"
|
|
443
443
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
444
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
444
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
445
445
|
data-mui-internal-clone-element="true"
|
|
446
446
|
data-testid="LockIcon"
|
|
447
447
|
focusable="false"
|
|
@@ -463,7 +463,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
463
463
|
<svg
|
|
464
464
|
aria-hidden="true"
|
|
465
465
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
466
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
466
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
467
467
|
data-mui-internal-clone-element="true"
|
|
468
468
|
data-testid="LockIcon"
|
|
469
469
|
focusable="false"
|
|
@@ -485,7 +485,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
485
485
|
<svg
|
|
486
486
|
aria-hidden="true"
|
|
487
487
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
488
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
488
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
489
489
|
data-mui-internal-clone-element="true"
|
|
490
490
|
data-testid="LockIcon"
|
|
491
491
|
focusable="false"
|
|
@@ -507,7 +507,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
507
507
|
<svg
|
|
508
508
|
aria-hidden="true"
|
|
509
509
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
510
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
510
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
511
511
|
data-mui-internal-clone-element="true"
|
|
512
512
|
data-testid="LockIcon"
|
|
513
513
|
focusable="false"
|
|
@@ -529,7 +529,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
529
529
|
<svg
|
|
530
530
|
aria-hidden="true"
|
|
531
531
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
532
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
532
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
533
533
|
data-mui-internal-clone-element="true"
|
|
534
534
|
data-testid="LockIcon"
|
|
535
535
|
focusable="false"
|
|
@@ -551,7 +551,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
551
551
|
<svg
|
|
552
552
|
aria-hidden="true"
|
|
553
553
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
554
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
554
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
555
555
|
data-mui-internal-clone-element="true"
|
|
556
556
|
data-testid="LockIcon"
|
|
557
557
|
focusable="false"
|
|
@@ -573,7 +573,29 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
573
573
|
<svg
|
|
574
574
|
aria-hidden="true"
|
|
575
575
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
576
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
576
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
577
|
+
data-mui-internal-clone-element="true"
|
|
578
|
+
data-testid="LockIcon"
|
|
579
|
+
focusable="false"
|
|
580
|
+
viewBox="0 0 24 24"
|
|
581
|
+
>
|
|
582
|
+
<path
|
|
583
|
+
d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"
|
|
584
|
+
/>
|
|
585
|
+
</svg>
|
|
586
|
+
<p
|
|
587
|
+
class="MuiTypography-root MuiTypography-body1 css-k0xfey-MuiTypography-root"
|
|
588
|
+
>
|
|
589
|
+
GCContentPlugin
|
|
590
|
+
</p>
|
|
591
|
+
</li>
|
|
592
|
+
<li
|
|
593
|
+
class="MuiListItem-root MuiListItem-dense MuiListItem-gutters MuiListItem-padding css-ypie1g-MuiListItem-root"
|
|
594
|
+
>
|
|
595
|
+
<svg
|
|
596
|
+
aria-hidden="true"
|
|
597
|
+
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
598
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
577
599
|
data-mui-internal-clone-element="true"
|
|
578
600
|
data-testid="LockIcon"
|
|
579
601
|
focusable="false"
|
|
@@ -595,7 +617,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
595
617
|
<svg
|
|
596
618
|
aria-hidden="true"
|
|
597
619
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
598
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
620
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
599
621
|
data-mui-internal-clone-element="true"
|
|
600
622
|
data-testid="LockIcon"
|
|
601
623
|
focusable="false"
|
|
@@ -617,7 +639,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
617
639
|
<svg
|
|
618
640
|
aria-hidden="true"
|
|
619
641
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
620
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
642
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
621
643
|
data-mui-internal-clone-element="true"
|
|
622
644
|
data-testid="LockIcon"
|
|
623
645
|
focusable="false"
|
|
@@ -639,7 +661,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
639
661
|
<svg
|
|
640
662
|
aria-hidden="true"
|
|
641
663
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
642
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
664
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
643
665
|
data-mui-internal-clone-element="true"
|
|
644
666
|
data-testid="LockIcon"
|
|
645
667
|
focusable="false"
|
|
@@ -661,7 +683,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
661
683
|
<svg
|
|
662
684
|
aria-hidden="true"
|
|
663
685
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
664
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
686
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
665
687
|
data-mui-internal-clone-element="true"
|
|
666
688
|
data-testid="LockIcon"
|
|
667
689
|
focusable="false"
|
|
@@ -683,7 +705,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
683
705
|
<svg
|
|
684
706
|
aria-hidden="true"
|
|
685
707
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
686
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
708
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
687
709
|
data-mui-internal-clone-element="true"
|
|
688
710
|
data-testid="LockIcon"
|
|
689
711
|
focusable="false"
|
|
@@ -705,7 +727,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
705
727
|
<svg
|
|
706
728
|
aria-hidden="true"
|
|
707
729
|
aria-label="This plugin was installed by an administrator, you cannot remove it."
|
|
708
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
730
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1a34d00-MuiSvgIcon-root-lockedPluginTooltip"
|
|
709
731
|
data-mui-internal-clone-element="true"
|
|
710
732
|
data-testid="LockIcon"
|
|
711
733
|
focusable="false"
|
|
@@ -751,7 +773,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
751
773
|
>
|
|
752
774
|
<svg
|
|
753
775
|
aria-hidden="true"
|
|
754
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium
|
|
776
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-kbgf2m-MuiSvgIcon-root-expandIcon"
|
|
755
777
|
data-testid="ExpandMoreIcon"
|
|
756
778
|
focusable="false"
|
|
757
779
|
viewBox="0 0 24 24"
|
|
@@ -777,13 +799,13 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
777
799
|
role="region"
|
|
778
800
|
>
|
|
779
801
|
<div
|
|
780
|
-
class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded MuiCard-root
|
|
802
|
+
class="MuiPaper-root MuiPaper-outlined MuiPaper-rounded MuiCard-root css-kcmdom-MuiPaper-root-MuiCard-root-card"
|
|
781
803
|
>
|
|
782
804
|
<div
|
|
783
805
|
class="MuiCardContent-root css-46bh2p-MuiCardContent-root"
|
|
784
806
|
>
|
|
785
807
|
<div
|
|
786
|
-
class="
|
|
808
|
+
class="css-yyi66y-dataField"
|
|
787
809
|
>
|
|
788
810
|
<h5
|
|
789
811
|
class="MuiTypography-root MuiTypography-h5 css-1ldbtdh-MuiTypography-root"
|
|
@@ -799,7 +821,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
799
821
|
</h5>
|
|
800
822
|
</div>
|
|
801
823
|
<div
|
|
802
|
-
class="
|
|
824
|
+
class="css-yyi66y-dataField"
|
|
803
825
|
>
|
|
804
826
|
<svg
|
|
805
827
|
aria-hidden="true"
|
|
@@ -820,7 +842,7 @@ exports[`<PluginStoreWidget /> renders with the available plugins 1`] = `
|
|
|
820
842
|
</p>
|
|
821
843
|
</div>
|
|
822
844
|
<p
|
|
823
|
-
class="MuiTypography-root MuiTypography-body1
|
|
845
|
+
class="MuiTypography-root MuiTypography-body1 css-1w7qu8c-MuiTypography-root-bold"
|
|
824
846
|
>
|
|
825
847
|
Description:
|
|
826
848
|
</p>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
|
-
exports[`Data management adds config editor widget 1`] = `
|
|
3
|
+
exports[`Data management adds config editor widget 1`] = `{}`;
|
|
4
4
|
|
|
5
|
-
exports[`Data management adds connection add widget 1`] = `
|
|
5
|
+
exports[`Data management adds connection add widget 1`] = `{}`;
|
|
6
6
|
|
|
7
|
-
exports[`Data management adds hierarchical track selector 1`] = `
|
|
7
|
+
exports[`Data management adds hierarchical track selector 1`] = `{}`;
|
|
8
8
|
|
|
9
|
-
exports[`Data management adds track add widget 1`] = `
|
|
9
|
+
exports[`Data management adds track add widget 1`] = `{}`;
|