@jbrowse/plugin-config 1.7.10 → 2.0.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/ConfigurationEditorWidget/components/CallbackEditor.d.ts +10 -7
- package/dist/ConfigurationEditorWidget/components/CallbackEditor.js +108 -115
- package/dist/ConfigurationEditorWidget/components/CallbackEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/CodeEditor.d.ts +4 -3
- package/dist/ConfigurationEditorWidget/components/CodeEditor.js +78 -73
- package/dist/ConfigurationEditorWidget/components/CodeEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/ColorEditor.d.ts +9 -33
- package/dist/ConfigurationEditorWidget/components/ColorEditor.js +82 -116
- package/dist/ConfigurationEditorWidget/components/ColorEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/ColorPicker.d.ts +0 -7
- package/dist/ConfigurationEditorWidget/components/ColorPicker.js +64 -67
- package/dist/ConfigurationEditorWidget/components/ColorPicker.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.d.ts +7 -3
- package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.js +113 -160
- package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/JsonEditor.js +74 -75
- package/dist/ConfigurationEditorWidget/components/JsonEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/SlotEditor.d.ts +11 -1
- package/dist/ConfigurationEditorWidget/components/SlotEditor.js +229 -373
- package/dist/ConfigurationEditorWidget/components/SlotEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/StringArrayEditor.js +76 -105
- package/dist/ConfigurationEditorWidget/components/StringArrayEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/TypeSelector.d.ts +8 -6
- package/dist/ConfigurationEditorWidget/components/TypeSelector.js +16 -46
- package/dist/ConfigurationEditorWidget/components/TypeSelector.js.map +1 -0
- package/dist/ConfigurationEditorWidget/index.js +25 -42
- package/dist/ConfigurationEditorWidget/index.js.map +1 -0
- package/dist/ConfigurationEditorWidget/model.js +18 -26
- package/dist/ConfigurationEditorWidget/model.js.map +1 -0
- package/dist/FromConfigAdapter/FromConfigAdapter.js +172 -204
- package/dist/FromConfigAdapter/FromConfigAdapter.js.map +1 -0
- package/dist/FromConfigAdapter/FromConfigRegionsAdapter.js +151 -142
- package/dist/FromConfigAdapter/FromConfigRegionsAdapter.js.map +1 -0
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.d.ts +2 -1
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.js +182 -181
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.js.map +1 -0
- package/dist/FromConfigAdapter/configSchema.js +33 -49
- package/dist/FromConfigAdapter/configSchema.js.map +1 -0
- package/dist/FromConfigAdapter/index.js +16 -50
- package/dist/FromConfigAdapter/index.js.map +1 -0
- package/dist/RefNameAliasAdapter/RefNameAliasAdapter.js +111 -123
- package/dist/RefNameAliasAdapter/RefNameAliasAdapter.js.map +1 -0
- package/dist/RefNameAliasAdapter/configSchema.js +16 -25
- package/dist/RefNameAliasAdapter/configSchema.js.map +1 -0
- package/dist/RefNameAliasAdapter/index.js +10 -22
- package/dist/RefNameAliasAdapter/index.js.map +1 -0
- package/dist/index.d.ts +9 -3
- package/dist/index.js +129 -144
- package/dist/index.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/CallbackEditor.d.ts +12 -0
- package/esm/ConfigurationEditorWidget/components/CallbackEditor.js +71 -0
- package/esm/ConfigurationEditorWidget/components/CallbackEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/CodeEditor.d.ts +5 -0
- package/esm/ConfigurationEditorWidget/components/CodeEditor.js +42 -0
- package/esm/ConfigurationEditorWidget/components/CodeEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/ColorEditor.d.ts +20 -0
- package/esm/ConfigurationEditorWidget/components/ColorEditor.js +37 -0
- package/esm/ConfigurationEditorWidget/components/ColorEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/ColorPicker.d.ts +7 -0
- package/esm/ConfigurationEditorWidget/components/ColorPicker.js +26 -0
- package/esm/ConfigurationEditorWidget/components/ColorPicker.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.d.ts +8 -0
- package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.js +83 -0
- package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/JsonEditor.d.ts +9 -0
- package/esm/ConfigurationEditorWidget/components/JsonEditor.js +39 -0
- package/esm/ConfigurationEditorWidget/components/JsonEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/SlotEditor.d.ts +16 -0
- package/esm/ConfigurationEditorWidget/components/SlotEditor.js +176 -0
- package/esm/ConfigurationEditorWidget/components/SlotEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/StringArrayEditor.d.ts +12 -0
- package/esm/ConfigurationEditorWidget/components/StringArrayEditor.js +36 -0
- package/esm/ConfigurationEditorWidget/components/StringArrayEditor.js.map +1 -0
- package/esm/ConfigurationEditorWidget/components/TypeSelector.d.ts +9 -0
- package/esm/ConfigurationEditorWidget/components/TypeSelector.js +12 -0
- package/esm/ConfigurationEditorWidget/components/TypeSelector.js.map +1 -0
- package/esm/ConfigurationEditorWidget/index.d.ts +3 -0
- package/esm/ConfigurationEditorWidget/index.js +20 -0
- package/esm/ConfigurationEditorWidget/index.js.map +1 -0
- package/esm/ConfigurationEditorWidget/model.d.ts +8 -0
- package/esm/ConfigurationEditorWidget/model.js +16 -0
- package/esm/ConfigurationEditorWidget/model.js.map +1 -0
- package/esm/FromConfigAdapter/FromConfigAdapter.d.ts +24 -0
- package/esm/FromConfigAdapter/FromConfigAdapter.js +63 -0
- package/esm/FromConfigAdapter/FromConfigAdapter.js.map +1 -0
- package/esm/FromConfigAdapter/FromConfigRegionsAdapter.d.ts +23 -0
- package/esm/FromConfigAdapter/FromConfigRegionsAdapter.js +50 -0
- package/esm/FromConfigAdapter/FromConfigRegionsAdapter.js.map +1 -0
- package/esm/FromConfigAdapter/FromConfigSequenceAdapter.d.ts +26 -0
- package/esm/FromConfigAdapter/FromConfigSequenceAdapter.js +73 -0
- package/esm/FromConfigAdapter/FromConfigSequenceAdapter.js.map +1 -0
- package/esm/FromConfigAdapter/configSchema.d.ts +3 -0
- package/esm/FromConfigAdapter/configSchema.js +32 -0
- package/esm/FromConfigAdapter/configSchema.js.map +1 -0
- package/esm/FromConfigAdapter/index.d.ts +4 -0
- package/esm/FromConfigAdapter/index.js +5 -0
- package/esm/FromConfigAdapter/index.js.map +1 -0
- package/esm/RefNameAliasAdapter/RefNameAliasAdapter.d.ts +8 -0
- package/esm/RefNameAliasAdapter/RefNameAliasAdapter.js +24 -0
- package/esm/RefNameAliasAdapter/RefNameAliasAdapter.js.map +1 -0
- package/esm/RefNameAliasAdapter/configSchema.d.ts +2 -0
- package/esm/RefNameAliasAdapter/configSchema.js +15 -0
- package/esm/RefNameAliasAdapter/configSchema.js.map +1 -0
- package/esm/RefNameAliasAdapter/index.d.ts +2 -0
- package/esm/RefNameAliasAdapter/index.js +3 -0
- package/esm/RefNameAliasAdapter/index.js.map +1 -0
- package/esm/index.d.ts +18 -0
- package/esm/index.js +72 -0
- package/esm/index.js.map +1 -0
- package/package.json +21 -14
- package/src/ConfigurationEditorWidget/components/{CallbackEditor.js → CallbackEditor.tsx} +36 -21
- package/src/ConfigurationEditorWidget/components/CodeEditor.tsx +59 -0
- package/src/ConfigurationEditorWidget/components/ColorEditor.tsx +8 -33
- package/src/ConfigurationEditorWidget/components/ColorPicker.tsx +4 -13
- package/src/ConfigurationEditorWidget/components/ConfigurationEditor.tsx +169 -0
- package/src/ConfigurationEditorWidget/components/JsonEditor.js +4 -8
- package/src/ConfigurationEditorWidget/components/SlotEditor.js +10 -11
- package/src/ConfigurationEditorWidget/components/StringArrayEditor.tsx +2 -2
- package/src/ConfigurationEditorWidget/components/{TypeSelector.js → TypeSelector.tsx} +15 -7
- package/src/ConfigurationEditorWidget/components/__snapshots__/ConfigurationEditor.test.js.snap +877 -625
- package/src/FromConfigAdapter/FromConfigSequenceAdapter.ts +5 -1
- package/src/RefNameAliasAdapter/RefNameAliasAdapter.ts +1 -1
- package/src/index.ts +20 -14
- package/dist/ConfigurationEditorWidget/components/ColorEditor.test.js +0 -31
- package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.test.js +0 -121
- package/dist/FromConfigAdapter/FromConfigAdapter.test.js +0 -100
- package/dist/FromConfigAdapter/FromConfigRegionsAdapter.test.js +0 -200
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.test.js +0 -110
- package/dist/RefNameAliasAdapter/RefNameAliasAdapter.test.js +0 -41
- package/dist/index.test.js +0 -41
- package/src/ConfigurationEditorWidget/components/CodeEditor.js +0 -60
- package/src/ConfigurationEditorWidget/components/ConfigurationEditor.js +0 -154
package/src/ConfigurationEditorWidget/components/__snapshots__/ConfigurationEditor.test.js.snap
CHANGED
|
@@ -2,92 +2,101 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`ConfigurationEditor widget renders all the different types of built-in slots 1`] = `
|
|
4
4
|
<div
|
|
5
|
-
class="MuiPaper-root MuiAccordion-root
|
|
5
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiAccordion-root MuiAccordion-rounded Mui-expanded MuiAccordion-gutters tss-r6x2pq-accordion css-1elwnq4-MuiPaper-root-MuiAccordion-root"
|
|
6
6
|
>
|
|
7
7
|
<div
|
|
8
|
-
aria-disabled="false"
|
|
9
8
|
aria-expanded="true"
|
|
10
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
9
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
11
10
|
role="button"
|
|
12
11
|
tabindex="0"
|
|
13
12
|
>
|
|
14
13
|
<div
|
|
15
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
14
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
16
15
|
>
|
|
17
16
|
<p
|
|
18
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
17
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
19
18
|
>
|
|
20
19
|
Configuration
|
|
21
20
|
</p>
|
|
22
21
|
</div>
|
|
23
22
|
<div
|
|
24
|
-
|
|
25
|
-
aria-hidden="true"
|
|
26
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
23
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
27
24
|
>
|
|
28
|
-
<
|
|
29
|
-
|
|
25
|
+
<svg
|
|
26
|
+
aria-hidden="true"
|
|
27
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium tss-5xjg5v-expandIcon css-i4bv87-MuiSvgIcon-root"
|
|
28
|
+
data-testid="ExpandMoreIcon"
|
|
29
|
+
focusable="false"
|
|
30
|
+
viewBox="0 0 24 24"
|
|
30
31
|
>
|
|
31
|
-
<
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
viewBox="0 0 24 24"
|
|
36
|
-
>
|
|
37
|
-
<path
|
|
38
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
39
|
-
/>
|
|
40
|
-
</svg>
|
|
41
|
-
</span>
|
|
42
|
-
<span
|
|
43
|
-
class="MuiTouchRipple-root"
|
|
44
|
-
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
45
36
|
</div>
|
|
46
37
|
</div>
|
|
47
38
|
<div
|
|
48
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
39
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
49
40
|
style="min-height: 0px;"
|
|
50
41
|
>
|
|
51
42
|
<div
|
|
52
|
-
class="MuiCollapse-wrapper"
|
|
43
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
53
44
|
>
|
|
54
45
|
<div
|
|
55
|
-
class="MuiCollapse-wrapperInner"
|
|
46
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
56
47
|
>
|
|
57
48
|
<div
|
|
49
|
+
class="MuiAccordion-region"
|
|
58
50
|
role="region"
|
|
59
51
|
>
|
|
60
52
|
<div
|
|
61
|
-
class="MuiAccordionDetails-root
|
|
53
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
62
54
|
data-testid="configEditor"
|
|
63
55
|
>
|
|
64
56
|
<div
|
|
65
|
-
class="MuiPaper-root
|
|
57
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
66
58
|
>
|
|
67
59
|
<div
|
|
68
|
-
class="
|
|
60
|
+
class="tss-1962tgi-paperContent"
|
|
69
61
|
>
|
|
70
62
|
<div
|
|
71
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
63
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
72
64
|
>
|
|
73
65
|
<label
|
|
74
|
-
class="
|
|
66
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
75
67
|
data-shrink="true"
|
|
68
|
+
for="mui-2"
|
|
69
|
+
id="mui-2-label"
|
|
76
70
|
>
|
|
77
71
|
stringTest
|
|
78
72
|
</label>
|
|
79
73
|
<div
|
|
80
|
-
class="
|
|
74
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
81
75
|
>
|
|
82
76
|
<input
|
|
77
|
+
aria-describedby="mui-2-helper-text"
|
|
83
78
|
aria-invalid="false"
|
|
84
|
-
class="MuiInputBase-input
|
|
79
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
80
|
+
id="mui-2"
|
|
85
81
|
type="text"
|
|
86
82
|
value="string1"
|
|
87
83
|
/>
|
|
84
|
+
<fieldset
|
|
85
|
+
aria-hidden="true"
|
|
86
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
87
|
+
>
|
|
88
|
+
<legend
|
|
89
|
+
class="css-1in441m"
|
|
90
|
+
>
|
|
91
|
+
<span>
|
|
92
|
+
stringTest
|
|
93
|
+
</span>
|
|
94
|
+
</legend>
|
|
95
|
+
</fieldset>
|
|
88
96
|
</div>
|
|
89
97
|
<div
|
|
90
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
98
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
99
|
+
id="mui-2-helper-text"
|
|
91
100
|
>
|
|
92
101
|
<div>
|
|
93
102
|
stringTest
|
|
@@ -96,98 +105,93 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
96
105
|
</div>
|
|
97
106
|
</div>
|
|
98
107
|
<div
|
|
99
|
-
class="
|
|
108
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
100
109
|
/>
|
|
101
110
|
</div>
|
|
102
111
|
<div
|
|
103
|
-
class="MuiPaper-root
|
|
112
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
104
113
|
>
|
|
105
114
|
<div
|
|
106
|
-
class="
|
|
115
|
+
class="tss-1962tgi-paperContent"
|
|
107
116
|
>
|
|
108
117
|
<div
|
|
109
|
-
class="MuiBox-root
|
|
118
|
+
class="MuiBox-root css-k008qs"
|
|
110
119
|
>
|
|
111
120
|
<label
|
|
112
|
-
class="
|
|
121
|
+
class="MuiInputLabel-root MuiInputLabel-animated MuiInputLabel-shrink MuiFormLabel-root MuiFormLabel-colorPrimary css-1foa3kv-MuiFormLabel-root-MuiInputLabel-root"
|
|
113
122
|
data-shrink="true"
|
|
114
123
|
>
|
|
115
124
|
fileLocationTest
|
|
116
125
|
</label>
|
|
117
126
|
</div>
|
|
118
127
|
<div
|
|
119
|
-
class="MuiBox-root
|
|
128
|
+
class="MuiBox-root css-1xhj18k"
|
|
120
129
|
>
|
|
121
130
|
<div
|
|
122
|
-
class="MuiBox-root
|
|
131
|
+
class="MuiBox-root css-0"
|
|
123
132
|
>
|
|
124
133
|
<div
|
|
125
134
|
aria-label="file, url, or account picker"
|
|
126
|
-
class="MuiToggleButtonGroup-root"
|
|
135
|
+
class="MuiToggleButtonGroup-root css-1gjgmky-MuiToggleButtonGroup-root"
|
|
127
136
|
role="group"
|
|
128
137
|
>
|
|
129
138
|
<button
|
|
130
139
|
aria-label="local file"
|
|
131
140
|
aria-pressed="false"
|
|
132
|
-
class="MuiButtonBase-root MuiToggleButton-root MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal"
|
|
141
|
+
class="MuiButtonBase-root MuiToggleButton-root MuiToggleButton-sizeMedium MuiToggleButton-standard MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal css-ueukts-MuiButtonBase-root-MuiToggleButton-root"
|
|
133
142
|
tabindex="0"
|
|
134
143
|
type="button"
|
|
135
144
|
value="file"
|
|
136
145
|
>
|
|
146
|
+
File
|
|
137
147
|
<span
|
|
138
|
-
class="
|
|
139
|
-
>
|
|
140
|
-
File
|
|
141
|
-
</span>
|
|
142
|
-
<span
|
|
143
|
-
class="MuiTouchRipple-root"
|
|
148
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
144
149
|
/>
|
|
145
150
|
</button>
|
|
146
151
|
<button
|
|
147
152
|
aria-label="url"
|
|
148
153
|
aria-pressed="true"
|
|
149
|
-
class="MuiButtonBase-root MuiToggleButton-root MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal MuiToggleButton-
|
|
154
|
+
class="MuiButtonBase-root MuiToggleButton-root Mui-selected MuiToggleButton-sizeMedium MuiToggleButton-standard MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal css-ueukts-MuiButtonBase-root-MuiToggleButton-root"
|
|
150
155
|
tabindex="0"
|
|
151
156
|
type="button"
|
|
152
157
|
value="url"
|
|
153
158
|
>
|
|
159
|
+
URL
|
|
154
160
|
<span
|
|
155
|
-
class="
|
|
156
|
-
>
|
|
157
|
-
URL
|
|
158
|
-
</span>
|
|
159
|
-
<span
|
|
160
|
-
class="MuiTouchRipple-root"
|
|
161
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
161
162
|
/>
|
|
162
163
|
</button>
|
|
163
164
|
</div>
|
|
164
165
|
</div>
|
|
165
166
|
</div>
|
|
166
167
|
<div
|
|
167
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
168
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
168
169
|
>
|
|
169
170
|
<label
|
|
170
|
-
class="
|
|
171
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
171
172
|
data-shrink="true"
|
|
173
|
+
for="mui-3"
|
|
174
|
+
id="mui-3-label"
|
|
172
175
|
>
|
|
173
176
|
Enter URL
|
|
174
177
|
</label>
|
|
175
178
|
<div
|
|
176
|
-
class="
|
|
179
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
177
180
|
>
|
|
178
181
|
<input
|
|
179
182
|
aria-invalid="false"
|
|
180
|
-
class="MuiInputBase-input MuiOutlinedInput-input"
|
|
183
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
181
184
|
data-testid="urlInput"
|
|
185
|
+
id="mui-3"
|
|
182
186
|
type="text"
|
|
183
187
|
value="/path/to/my.file"
|
|
184
188
|
/>
|
|
185
189
|
<fieldset
|
|
186
190
|
aria-hidden="true"
|
|
187
|
-
class="
|
|
191
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
188
192
|
>
|
|
189
193
|
<legend
|
|
190
|
-
class="
|
|
194
|
+
class="css-1in441m"
|
|
191
195
|
>
|
|
192
196
|
<span>
|
|
193
197
|
Enter URL
|
|
@@ -197,407 +201,473 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
197
201
|
</div>
|
|
198
202
|
</div>
|
|
199
203
|
<p
|
|
200
|
-
class="MuiFormHelperText-root"
|
|
204
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
201
205
|
>
|
|
202
206
|
fileLocationTest
|
|
203
207
|
</p>
|
|
204
208
|
</div>
|
|
205
209
|
<div
|
|
206
|
-
class="
|
|
210
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
207
211
|
/>
|
|
208
212
|
</div>
|
|
209
213
|
<div
|
|
210
|
-
class="MuiPaper-root
|
|
214
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
211
215
|
>
|
|
212
216
|
<div
|
|
213
|
-
class="
|
|
217
|
+
class="tss-1962tgi-paperContent"
|
|
214
218
|
>
|
|
215
219
|
<label
|
|
216
|
-
class="
|
|
220
|
+
class="MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-root MuiFormLabel-colorPrimary css-9npbnl-MuiFormLabel-root-MuiInputLabel-root"
|
|
217
221
|
>
|
|
218
222
|
stringArrayTest
|
|
219
223
|
</label>
|
|
220
224
|
<ul
|
|
221
|
-
class="MuiList-root"
|
|
225
|
+
class="MuiList-root css-1mk9mw3-MuiList-root"
|
|
222
226
|
>
|
|
223
227
|
<li
|
|
224
|
-
class="MuiListItem-root"
|
|
228
|
+
class="MuiListItem-root MuiListItem-padding css-1tnift2-MuiListItem-root"
|
|
225
229
|
>
|
|
226
230
|
<div
|
|
227
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
231
|
+
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
228
232
|
>
|
|
229
233
|
<div
|
|
230
|
-
class="
|
|
234
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
231
235
|
>
|
|
232
236
|
<input
|
|
233
237
|
aria-invalid="false"
|
|
234
|
-
class="
|
|
238
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
239
|
+
id="mui-4"
|
|
235
240
|
type="text"
|
|
236
241
|
value="string1"
|
|
237
242
|
/>
|
|
238
243
|
<div
|
|
239
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
244
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
240
245
|
>
|
|
241
246
|
<button
|
|
242
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
247
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
243
248
|
tabindex="0"
|
|
244
249
|
type="button"
|
|
245
250
|
>
|
|
246
|
-
<
|
|
247
|
-
|
|
251
|
+
<svg
|
|
252
|
+
aria-hidden="true"
|
|
253
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
254
|
+
data-testid="DeleteIcon"
|
|
255
|
+
focusable="false"
|
|
256
|
+
viewBox="0 0 24 24"
|
|
248
257
|
>
|
|
249
|
-
<
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
viewBox="0 0 24 24"
|
|
254
|
-
>
|
|
255
|
-
<path
|
|
256
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
257
|
-
/>
|
|
258
|
-
</svg>
|
|
259
|
-
</span>
|
|
258
|
+
<path
|
|
259
|
+
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
260
|
+
/>
|
|
261
|
+
</svg>
|
|
260
262
|
<span
|
|
261
|
-
class="MuiTouchRipple-root"
|
|
263
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
262
264
|
/>
|
|
263
265
|
</button>
|
|
264
266
|
</div>
|
|
267
|
+
<fieldset
|
|
268
|
+
aria-hidden="true"
|
|
269
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
270
|
+
>
|
|
271
|
+
<legend
|
|
272
|
+
class="css-hdw1oc"
|
|
273
|
+
>
|
|
274
|
+
<span
|
|
275
|
+
class="notranslate"
|
|
276
|
+
>
|
|
277
|
+
|
|
278
|
+
</span>
|
|
279
|
+
</legend>
|
|
280
|
+
</fieldset>
|
|
265
281
|
</div>
|
|
266
282
|
</div>
|
|
267
283
|
</li>
|
|
268
284
|
<li
|
|
269
|
-
class="MuiListItem-root"
|
|
285
|
+
class="MuiListItem-root MuiListItem-padding css-1tnift2-MuiListItem-root"
|
|
270
286
|
>
|
|
271
287
|
<div
|
|
272
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
288
|
+
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
273
289
|
>
|
|
274
290
|
<div
|
|
275
|
-
class="
|
|
291
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
276
292
|
>
|
|
277
293
|
<input
|
|
278
294
|
aria-invalid="false"
|
|
279
|
-
class="
|
|
295
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
296
|
+
id="mui-5"
|
|
280
297
|
type="text"
|
|
281
298
|
value="string2"
|
|
282
299
|
/>
|
|
283
300
|
<div
|
|
284
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
301
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
285
302
|
>
|
|
286
303
|
<button
|
|
287
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
304
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
288
305
|
tabindex="0"
|
|
289
306
|
type="button"
|
|
290
307
|
>
|
|
291
|
-
<
|
|
292
|
-
|
|
308
|
+
<svg
|
|
309
|
+
aria-hidden="true"
|
|
310
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
311
|
+
data-testid="DeleteIcon"
|
|
312
|
+
focusable="false"
|
|
313
|
+
viewBox="0 0 24 24"
|
|
293
314
|
>
|
|
294
|
-
<
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
viewBox="0 0 24 24"
|
|
299
|
-
>
|
|
300
|
-
<path
|
|
301
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
302
|
-
/>
|
|
303
|
-
</svg>
|
|
304
|
-
</span>
|
|
315
|
+
<path
|
|
316
|
+
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
317
|
+
/>
|
|
318
|
+
</svg>
|
|
305
319
|
<span
|
|
306
|
-
class="MuiTouchRipple-root"
|
|
320
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
307
321
|
/>
|
|
308
322
|
</button>
|
|
309
323
|
</div>
|
|
324
|
+
<fieldset
|
|
325
|
+
aria-hidden="true"
|
|
326
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
327
|
+
>
|
|
328
|
+
<legend
|
|
329
|
+
class="css-hdw1oc"
|
|
330
|
+
>
|
|
331
|
+
<span
|
|
332
|
+
class="notranslate"
|
|
333
|
+
>
|
|
334
|
+
|
|
335
|
+
</span>
|
|
336
|
+
</legend>
|
|
337
|
+
</fieldset>
|
|
310
338
|
</div>
|
|
311
339
|
</div>
|
|
312
340
|
</li>
|
|
313
341
|
<button
|
|
314
|
-
class="
|
|
342
|
+
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButtonBase-root css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
315
343
|
style="margin: 4px;"
|
|
316
344
|
tabindex="0"
|
|
317
345
|
type="button"
|
|
318
346
|
>
|
|
347
|
+
Add item
|
|
319
348
|
<span
|
|
320
|
-
class="
|
|
321
|
-
>
|
|
322
|
-
Add item
|
|
323
|
-
</span>
|
|
324
|
-
<span
|
|
325
|
-
class="MuiTouchRipple-root"
|
|
349
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
326
350
|
/>
|
|
327
351
|
</button>
|
|
328
352
|
</ul>
|
|
329
353
|
<p
|
|
330
|
-
class="MuiFormHelperText-root"
|
|
354
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
331
355
|
>
|
|
332
356
|
stringArrayTest
|
|
333
357
|
</p>
|
|
334
358
|
</div>
|
|
335
359
|
<div
|
|
336
|
-
class="
|
|
360
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
337
361
|
/>
|
|
338
362
|
</div>
|
|
339
363
|
<div
|
|
340
|
-
class="MuiPaper-root
|
|
364
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
341
365
|
>
|
|
342
366
|
<div
|
|
343
|
-
class="
|
|
367
|
+
class="tss-1962tgi-paperContent"
|
|
344
368
|
>
|
|
345
369
|
<label
|
|
346
|
-
class="
|
|
370
|
+
class="MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-root MuiFormLabel-colorPrimary css-9npbnl-MuiFormLabel-root-MuiInputLabel-root"
|
|
347
371
|
>
|
|
348
372
|
stringArrayMapTest
|
|
349
373
|
</label>
|
|
350
374
|
<div
|
|
351
|
-
class="MuiPaper-root MuiCard-root
|
|
375
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation8 MuiCard-root tss-j5n5ux-card css-fky5tw-MuiPaper-root-MuiCard-root"
|
|
352
376
|
>
|
|
353
377
|
<div
|
|
354
|
-
class="MuiCardHeader-root"
|
|
378
|
+
class="MuiCardHeader-root css-185gdzj-MuiCardHeader-root"
|
|
355
379
|
>
|
|
356
380
|
<div
|
|
357
|
-
class="MuiCardHeader-content"
|
|
381
|
+
class="MuiCardHeader-content css-1qbkelo-MuiCardHeader-content"
|
|
358
382
|
>
|
|
359
383
|
<span
|
|
360
|
-
class="MuiTypography-root MuiCardHeader-title
|
|
384
|
+
class="MuiTypography-root MuiTypography-h5 MuiCardHeader-title css-1qvr50w-MuiTypography-root"
|
|
361
385
|
>
|
|
362
386
|
key1
|
|
363
387
|
</span>
|
|
364
388
|
</div>
|
|
365
389
|
<div
|
|
366
|
-
class="MuiCardHeader-action"
|
|
390
|
+
class="MuiCardHeader-action css-sgoict-MuiCardHeader-action"
|
|
367
391
|
>
|
|
368
392
|
<button
|
|
369
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
393
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
370
394
|
tabindex="0"
|
|
371
395
|
type="button"
|
|
372
396
|
>
|
|
373
|
-
<
|
|
374
|
-
|
|
397
|
+
<svg
|
|
398
|
+
aria-hidden="true"
|
|
399
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
400
|
+
data-testid="DeleteIcon"
|
|
401
|
+
focusable="false"
|
|
402
|
+
viewBox="0 0 24 24"
|
|
375
403
|
>
|
|
376
|
-
<
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
viewBox="0 0 24 24"
|
|
381
|
-
>
|
|
382
|
-
<path
|
|
383
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
384
|
-
/>
|
|
385
|
-
</svg>
|
|
386
|
-
</span>
|
|
404
|
+
<path
|
|
405
|
+
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
406
|
+
/>
|
|
407
|
+
</svg>
|
|
387
408
|
<span
|
|
388
|
-
class="MuiTouchRipple-root"
|
|
409
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
389
410
|
/>
|
|
390
411
|
</button>
|
|
391
412
|
</div>
|
|
392
413
|
</div>
|
|
393
414
|
<div
|
|
394
|
-
class="MuiCardContent-root"
|
|
415
|
+
class="MuiCardContent-root css-46bh2p-MuiCardContent-root"
|
|
395
416
|
>
|
|
396
417
|
<ul
|
|
397
|
-
class="MuiList-root"
|
|
418
|
+
class="MuiList-root css-1mk9mw3-MuiList-root"
|
|
398
419
|
>
|
|
399
420
|
<li
|
|
400
|
-
class="MuiListItem-root"
|
|
421
|
+
class="MuiListItem-root MuiListItem-padding css-1tnift2-MuiListItem-root"
|
|
401
422
|
>
|
|
402
423
|
<div
|
|
403
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
424
|
+
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
404
425
|
>
|
|
405
426
|
<div
|
|
406
|
-
class="
|
|
427
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
407
428
|
>
|
|
408
429
|
<input
|
|
409
430
|
aria-invalid="false"
|
|
410
|
-
class="
|
|
431
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
432
|
+
id="mui-6"
|
|
411
433
|
type="text"
|
|
412
434
|
value="string1"
|
|
413
435
|
/>
|
|
414
436
|
<div
|
|
415
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
437
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
416
438
|
>
|
|
417
439
|
<button
|
|
418
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
440
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
419
441
|
tabindex="0"
|
|
420
442
|
type="button"
|
|
421
443
|
>
|
|
422
|
-
<
|
|
423
|
-
|
|
444
|
+
<svg
|
|
445
|
+
aria-hidden="true"
|
|
446
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
447
|
+
data-testid="DeleteIcon"
|
|
448
|
+
focusable="false"
|
|
449
|
+
viewBox="0 0 24 24"
|
|
424
450
|
>
|
|
425
|
-
<
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
viewBox="0 0 24 24"
|
|
430
|
-
>
|
|
431
|
-
<path
|
|
432
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
433
|
-
/>
|
|
434
|
-
</svg>
|
|
435
|
-
</span>
|
|
451
|
+
<path
|
|
452
|
+
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
453
|
+
/>
|
|
454
|
+
</svg>
|
|
436
455
|
<span
|
|
437
|
-
class="MuiTouchRipple-root"
|
|
456
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
438
457
|
/>
|
|
439
458
|
</button>
|
|
440
459
|
</div>
|
|
460
|
+
<fieldset
|
|
461
|
+
aria-hidden="true"
|
|
462
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
463
|
+
>
|
|
464
|
+
<legend
|
|
465
|
+
class="css-hdw1oc"
|
|
466
|
+
>
|
|
467
|
+
<span
|
|
468
|
+
class="notranslate"
|
|
469
|
+
>
|
|
470
|
+
|
|
471
|
+
</span>
|
|
472
|
+
</legend>
|
|
473
|
+
</fieldset>
|
|
441
474
|
</div>
|
|
442
475
|
</div>
|
|
443
476
|
</li>
|
|
444
477
|
<li
|
|
445
|
-
class="MuiListItem-root"
|
|
478
|
+
class="MuiListItem-root MuiListItem-padding css-1tnift2-MuiListItem-root"
|
|
446
479
|
>
|
|
447
480
|
<div
|
|
448
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
481
|
+
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
449
482
|
>
|
|
450
483
|
<div
|
|
451
|
-
class="
|
|
484
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
452
485
|
>
|
|
453
486
|
<input
|
|
454
487
|
aria-invalid="false"
|
|
455
|
-
class="
|
|
488
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
489
|
+
id="mui-7"
|
|
456
490
|
type="text"
|
|
457
491
|
value="string2"
|
|
458
492
|
/>
|
|
459
493
|
<div
|
|
460
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
494
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
461
495
|
>
|
|
462
496
|
<button
|
|
463
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
497
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
464
498
|
tabindex="0"
|
|
465
499
|
type="button"
|
|
466
500
|
>
|
|
467
|
-
<
|
|
468
|
-
|
|
501
|
+
<svg
|
|
502
|
+
aria-hidden="true"
|
|
503
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
504
|
+
data-testid="DeleteIcon"
|
|
505
|
+
focusable="false"
|
|
506
|
+
viewBox="0 0 24 24"
|
|
469
507
|
>
|
|
470
|
-
<
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
viewBox="0 0 24 24"
|
|
475
|
-
>
|
|
476
|
-
<path
|
|
477
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
478
|
-
/>
|
|
479
|
-
</svg>
|
|
480
|
-
</span>
|
|
508
|
+
<path
|
|
509
|
+
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
510
|
+
/>
|
|
511
|
+
</svg>
|
|
481
512
|
<span
|
|
482
|
-
class="MuiTouchRipple-root"
|
|
513
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
483
514
|
/>
|
|
484
515
|
</button>
|
|
485
516
|
</div>
|
|
517
|
+
<fieldset
|
|
518
|
+
aria-hidden="true"
|
|
519
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
520
|
+
>
|
|
521
|
+
<legend
|
|
522
|
+
class="css-hdw1oc"
|
|
523
|
+
>
|
|
524
|
+
<span
|
|
525
|
+
class="notranslate"
|
|
526
|
+
>
|
|
527
|
+
|
|
528
|
+
</span>
|
|
529
|
+
</legend>
|
|
530
|
+
</fieldset>
|
|
486
531
|
</div>
|
|
487
532
|
</div>
|
|
488
533
|
</li>
|
|
489
534
|
<button
|
|
490
|
-
class="
|
|
535
|
+
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButtonBase-root css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
491
536
|
style="margin: 4px;"
|
|
492
537
|
tabindex="0"
|
|
493
538
|
type="button"
|
|
494
539
|
>
|
|
540
|
+
Add item
|
|
495
541
|
<span
|
|
496
|
-
class="
|
|
497
|
-
>
|
|
498
|
-
Add item
|
|
499
|
-
</span>
|
|
500
|
-
<span
|
|
501
|
-
class="MuiTouchRipple-root"
|
|
542
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
502
543
|
/>
|
|
503
544
|
</button>
|
|
504
545
|
</ul>
|
|
505
546
|
<p
|
|
506
|
-
class="MuiFormHelperText-root"
|
|
547
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
507
548
|
>
|
|
508
549
|
Values associated with entry key1
|
|
509
550
|
</p>
|
|
510
551
|
</div>
|
|
511
552
|
</div>
|
|
512
553
|
<div
|
|
513
|
-
class="MuiPaper-root MuiCard-root
|
|
554
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation8 MuiCard-root tss-j5n5ux-card css-fky5tw-MuiPaper-root-MuiCard-root"
|
|
514
555
|
>
|
|
515
556
|
<div
|
|
516
|
-
class="MuiCardHeader-root"
|
|
557
|
+
class="MuiCardHeader-root css-185gdzj-MuiCardHeader-root"
|
|
517
558
|
>
|
|
518
559
|
<div
|
|
519
|
-
class="MuiCardHeader-content"
|
|
560
|
+
class="MuiCardHeader-content css-1qbkelo-MuiCardHeader-content"
|
|
520
561
|
>
|
|
521
562
|
<div
|
|
522
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
563
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
523
564
|
>
|
|
524
565
|
<div
|
|
525
|
-
class="
|
|
566
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
|
|
526
567
|
>
|
|
527
568
|
<input
|
|
528
569
|
aria-invalid="false"
|
|
529
|
-
class="
|
|
570
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
571
|
+
id="mui-8"
|
|
530
572
|
placeholder="add new"
|
|
531
573
|
type="text"
|
|
532
574
|
value=""
|
|
533
575
|
/>
|
|
534
576
|
<div
|
|
535
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
577
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
536
578
|
>
|
|
537
579
|
<button
|
|
538
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-
|
|
580
|
+
class="MuiButtonBase-root Mui-disabled MuiIconButton-root Mui-disabled MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
539
581
|
disabled=""
|
|
540
582
|
tabindex="-1"
|
|
541
583
|
type="button"
|
|
542
584
|
>
|
|
543
|
-
<
|
|
544
|
-
|
|
585
|
+
<svg
|
|
586
|
+
aria-hidden="true"
|
|
587
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
588
|
+
data-testid="AddIcon"
|
|
589
|
+
focusable="false"
|
|
590
|
+
viewBox="0 0 24 24"
|
|
545
591
|
>
|
|
546
|
-
<
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
viewBox="0 0 24 24"
|
|
551
|
-
>
|
|
552
|
-
<path
|
|
553
|
-
d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
554
|
-
/>
|
|
555
|
-
</svg>
|
|
556
|
-
</span>
|
|
592
|
+
<path
|
|
593
|
+
d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
594
|
+
/>
|
|
595
|
+
</svg>
|
|
557
596
|
</button>
|
|
558
597
|
</div>
|
|
598
|
+
<fieldset
|
|
599
|
+
aria-hidden="true"
|
|
600
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
601
|
+
>
|
|
602
|
+
<legend
|
|
603
|
+
class="css-hdw1oc"
|
|
604
|
+
>
|
|
605
|
+
<span
|
|
606
|
+
class="notranslate"
|
|
607
|
+
>
|
|
608
|
+
|
|
609
|
+
</span>
|
|
610
|
+
</legend>
|
|
611
|
+
</fieldset>
|
|
559
612
|
</div>
|
|
560
613
|
</div>
|
|
561
614
|
</div>
|
|
562
615
|
</div>
|
|
563
616
|
</div>
|
|
564
617
|
<p
|
|
565
|
-
class="MuiFormHelperText-root"
|
|
618
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
566
619
|
>
|
|
567
620
|
stringArrayMapTest
|
|
568
621
|
</p>
|
|
569
622
|
</div>
|
|
570
623
|
<div
|
|
571
|
-
class="
|
|
624
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
572
625
|
/>
|
|
573
626
|
</div>
|
|
574
627
|
<div
|
|
575
|
-
class="MuiPaper-root
|
|
628
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
576
629
|
>
|
|
577
630
|
<div
|
|
578
|
-
class="
|
|
631
|
+
class="tss-1962tgi-paperContent"
|
|
579
632
|
>
|
|
580
633
|
<div
|
|
581
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
634
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
582
635
|
>
|
|
583
636
|
<label
|
|
584
|
-
class="
|
|
637
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
585
638
|
data-shrink="true"
|
|
639
|
+
for="mui-9"
|
|
640
|
+
id="mui-9-label"
|
|
586
641
|
>
|
|
587
642
|
numberTest
|
|
588
643
|
</label>
|
|
589
644
|
<div
|
|
590
|
-
class="
|
|
645
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
591
646
|
>
|
|
592
647
|
<input
|
|
648
|
+
aria-describedby="mui-9-helper-text"
|
|
593
649
|
aria-invalid="false"
|
|
594
|
-
class="MuiInputBase-input
|
|
650
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
651
|
+
id="mui-9"
|
|
595
652
|
type="number"
|
|
596
653
|
value="88.5"
|
|
597
654
|
/>
|
|
655
|
+
<fieldset
|
|
656
|
+
aria-hidden="true"
|
|
657
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
658
|
+
>
|
|
659
|
+
<legend
|
|
660
|
+
class="css-1in441m"
|
|
661
|
+
>
|
|
662
|
+
<span>
|
|
663
|
+
numberTest
|
|
664
|
+
</span>
|
|
665
|
+
</legend>
|
|
666
|
+
</fieldset>
|
|
598
667
|
</div>
|
|
599
668
|
<div
|
|
600
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
669
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
670
|
+
id="mui-9-helper-text"
|
|
601
671
|
>
|
|
602
672
|
<div>
|
|
603
673
|
numberTest
|
|
@@ -606,36 +676,53 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
606
676
|
</div>
|
|
607
677
|
</div>
|
|
608
678
|
<div
|
|
609
|
-
class="
|
|
679
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
610
680
|
/>
|
|
611
681
|
</div>
|
|
612
682
|
<div
|
|
613
|
-
class="MuiPaper-root
|
|
683
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
614
684
|
>
|
|
615
685
|
<div
|
|
616
|
-
class="
|
|
686
|
+
class="tss-1962tgi-paperContent"
|
|
617
687
|
>
|
|
618
688
|
<div
|
|
619
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
689
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
620
690
|
>
|
|
621
691
|
<label
|
|
622
|
-
class="
|
|
692
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
623
693
|
data-shrink="true"
|
|
694
|
+
for="mui-10"
|
|
695
|
+
id="mui-10-label"
|
|
624
696
|
>
|
|
625
697
|
integerTest
|
|
626
698
|
</label>
|
|
627
699
|
<div
|
|
628
|
-
class="
|
|
700
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
629
701
|
>
|
|
630
702
|
<input
|
|
703
|
+
aria-describedby="mui-10-helper-text"
|
|
631
704
|
aria-invalid="false"
|
|
632
|
-
class="MuiInputBase-input
|
|
705
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
706
|
+
id="mui-10"
|
|
633
707
|
type="number"
|
|
634
708
|
value="42"
|
|
635
709
|
/>
|
|
710
|
+
<fieldset
|
|
711
|
+
aria-hidden="true"
|
|
712
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
713
|
+
>
|
|
714
|
+
<legend
|
|
715
|
+
class="css-1in441m"
|
|
716
|
+
>
|
|
717
|
+
<span>
|
|
718
|
+
integerTest
|
|
719
|
+
</span>
|
|
720
|
+
</legend>
|
|
721
|
+
</fieldset>
|
|
636
722
|
</div>
|
|
637
723
|
<div
|
|
638
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
724
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
725
|
+
id="mui-10-helper-text"
|
|
639
726
|
>
|
|
640
727
|
<div>
|
|
641
728
|
integerTest
|
|
@@ -644,102 +731,114 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
644
731
|
</div>
|
|
645
732
|
</div>
|
|
646
733
|
<div
|
|
647
|
-
class="
|
|
734
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
648
735
|
/>
|
|
649
736
|
</div>
|
|
650
737
|
<div
|
|
651
|
-
class="MuiPaper-root
|
|
738
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
652
739
|
>
|
|
653
740
|
<div
|
|
654
|
-
class="
|
|
741
|
+
class="tss-1962tgi-paperContent"
|
|
655
742
|
>
|
|
656
743
|
<div
|
|
657
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
744
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
658
745
|
>
|
|
659
746
|
<label
|
|
660
|
-
class="
|
|
747
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
661
748
|
data-shrink="true"
|
|
749
|
+
for="mui-11"
|
|
750
|
+
id="mui-11-label"
|
|
662
751
|
>
|
|
663
752
|
colorTest
|
|
664
753
|
</label>
|
|
665
754
|
<div
|
|
666
|
-
class="
|
|
755
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
667
756
|
style="color: rgb(57, 100, 148); border-right-width: 25px; border-right-style: solid; border-right-color: #396494;"
|
|
668
757
|
>
|
|
669
758
|
<input
|
|
759
|
+
aria-describedby="mui-11-helper-text"
|
|
670
760
|
aria-invalid="false"
|
|
671
|
-
class="MuiInputBase-input
|
|
761
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
762
|
+
id="mui-11"
|
|
672
763
|
type="text"
|
|
673
764
|
value="#396494"
|
|
674
765
|
/>
|
|
766
|
+
<fieldset
|
|
767
|
+
aria-hidden="true"
|
|
768
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
769
|
+
>
|
|
770
|
+
<legend
|
|
771
|
+
class="css-1in441m"
|
|
772
|
+
>
|
|
773
|
+
<span>
|
|
774
|
+
colorTest
|
|
775
|
+
</span>
|
|
776
|
+
</legend>
|
|
777
|
+
</fieldset>
|
|
675
778
|
</div>
|
|
676
779
|
<p
|
|
677
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
780
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
781
|
+
id="mui-11-helper-text"
|
|
678
782
|
>
|
|
679
783
|
colorTest
|
|
680
784
|
</p>
|
|
681
785
|
</div>
|
|
682
786
|
</div>
|
|
683
787
|
<div
|
|
684
|
-
class="
|
|
788
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
685
789
|
/>
|
|
686
790
|
</div>
|
|
687
791
|
<div
|
|
688
|
-
class="MuiPaper-root
|
|
792
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
689
793
|
>
|
|
690
794
|
<div
|
|
691
|
-
class="
|
|
795
|
+
class="tss-1962tgi-paperContent"
|
|
692
796
|
>
|
|
693
797
|
<div
|
|
694
|
-
class="MuiFormControl-root"
|
|
798
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
695
799
|
>
|
|
696
800
|
<label
|
|
697
|
-
class="MuiFormControlLabel-root"
|
|
801
|
+
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
698
802
|
>
|
|
699
803
|
<span
|
|
700
|
-
|
|
701
|
-
class="MuiButtonBase-root MuiIconButton-root PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorSecondary PrivateSwitchBase-checked MuiCheckbox-checked MuiIconButton-colorSecondary"
|
|
804
|
+
class="MuiCheckbox-root MuiCheckbox-colorPrimary MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary PrivateSwitchBase-root Mui-checked css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
|
|
702
805
|
>
|
|
703
|
-
<
|
|
704
|
-
|
|
806
|
+
<input
|
|
807
|
+
checked=""
|
|
808
|
+
class="PrivateSwitchBase-input css-1m9pwf3"
|
|
809
|
+
data-indeterminate="false"
|
|
810
|
+
type="checkbox"
|
|
811
|
+
/>
|
|
812
|
+
<svg
|
|
813
|
+
aria-hidden="true"
|
|
814
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
815
|
+
data-testid="CheckBoxIcon"
|
|
816
|
+
focusable="false"
|
|
817
|
+
viewBox="0 0 24 24"
|
|
705
818
|
>
|
|
706
|
-
<
|
|
707
|
-
|
|
708
|
-
class="PrivateSwitchBase-input"
|
|
709
|
-
data-indeterminate="false"
|
|
710
|
-
type="checkbox"
|
|
711
|
-
value=""
|
|
819
|
+
<path
|
|
820
|
+
d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
|
712
821
|
/>
|
|
713
|
-
|
|
714
|
-
aria-hidden="true"
|
|
715
|
-
class="MuiSvgIcon-root"
|
|
716
|
-
focusable="false"
|
|
717
|
-
viewBox="0 0 24 24"
|
|
718
|
-
>
|
|
719
|
-
<path
|
|
720
|
-
d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
|
721
|
-
/>
|
|
722
|
-
</svg>
|
|
723
|
-
</span>
|
|
822
|
+
</svg>
|
|
724
823
|
<span
|
|
725
|
-
class="MuiTouchRipple-root"
|
|
824
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
726
825
|
/>
|
|
727
826
|
</span>
|
|
728
827
|
<span
|
|
729
|
-
class="MuiTypography-root MuiFormControlLabel-label MuiTypography-
|
|
828
|
+
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label css-ahj2mt-MuiTypography-root"
|
|
730
829
|
>
|
|
731
830
|
booleanTest
|
|
732
831
|
</span>
|
|
733
832
|
</label>
|
|
734
833
|
<p
|
|
735
|
-
class="MuiFormHelperText-root"
|
|
834
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
736
835
|
>
|
|
737
836
|
booleanTest
|
|
738
837
|
</p>
|
|
739
838
|
</div>
|
|
740
839
|
</div>
|
|
741
840
|
<div
|
|
742
|
-
class="
|
|
841
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
743
842
|
/>
|
|
744
843
|
</div>
|
|
745
844
|
</div>
|
|
@@ -752,92 +851,101 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
752
851
|
|
|
753
852
|
exports[`ConfigurationEditor widget renders with defaults of the PileupTrack schema 1`] = `
|
|
754
853
|
<div
|
|
755
|
-
class="MuiPaper-root MuiAccordion-root
|
|
854
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiAccordion-root MuiAccordion-rounded Mui-expanded MuiAccordion-gutters tss-r6x2pq-accordion css-1elwnq4-MuiPaper-root-MuiAccordion-root"
|
|
756
855
|
>
|
|
757
856
|
<div
|
|
758
|
-
aria-disabled="false"
|
|
759
857
|
aria-expanded="true"
|
|
760
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
858
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
761
859
|
role="button"
|
|
762
860
|
tabindex="0"
|
|
763
861
|
>
|
|
764
862
|
<div
|
|
765
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
863
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
766
864
|
>
|
|
767
865
|
<p
|
|
768
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
866
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
769
867
|
>
|
|
770
868
|
Configuration
|
|
771
869
|
</p>
|
|
772
870
|
</div>
|
|
773
871
|
<div
|
|
774
|
-
|
|
775
|
-
aria-hidden="true"
|
|
776
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
872
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
777
873
|
>
|
|
778
|
-
<
|
|
779
|
-
|
|
874
|
+
<svg
|
|
875
|
+
aria-hidden="true"
|
|
876
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium tss-5xjg5v-expandIcon css-i4bv87-MuiSvgIcon-root"
|
|
877
|
+
data-testid="ExpandMoreIcon"
|
|
878
|
+
focusable="false"
|
|
879
|
+
viewBox="0 0 24 24"
|
|
780
880
|
>
|
|
781
|
-
<
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
viewBox="0 0 24 24"
|
|
786
|
-
>
|
|
787
|
-
<path
|
|
788
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
789
|
-
/>
|
|
790
|
-
</svg>
|
|
791
|
-
</span>
|
|
792
|
-
<span
|
|
793
|
-
class="MuiTouchRipple-root"
|
|
794
|
-
/>
|
|
881
|
+
<path
|
|
882
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
883
|
+
/>
|
|
884
|
+
</svg>
|
|
795
885
|
</div>
|
|
796
886
|
</div>
|
|
797
887
|
<div
|
|
798
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
888
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
799
889
|
style="min-height: 0px;"
|
|
800
890
|
>
|
|
801
891
|
<div
|
|
802
|
-
class="MuiCollapse-wrapper"
|
|
892
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
803
893
|
>
|
|
804
894
|
<div
|
|
805
|
-
class="MuiCollapse-wrapperInner"
|
|
895
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
806
896
|
>
|
|
807
897
|
<div
|
|
898
|
+
class="MuiAccordion-region"
|
|
808
899
|
role="region"
|
|
809
900
|
>
|
|
810
901
|
<div
|
|
811
|
-
class="MuiAccordionDetails-root
|
|
902
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
812
903
|
data-testid="configEditor"
|
|
813
904
|
>
|
|
814
905
|
<div
|
|
815
|
-
class="MuiPaper-root
|
|
906
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
816
907
|
>
|
|
817
908
|
<div
|
|
818
|
-
class="
|
|
909
|
+
class="tss-1962tgi-paperContent"
|
|
819
910
|
>
|
|
820
911
|
<div
|
|
821
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
912
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
822
913
|
>
|
|
823
914
|
<label
|
|
824
|
-
class="
|
|
915
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
825
916
|
data-shrink="true"
|
|
917
|
+
for="mui-12"
|
|
918
|
+
id="mui-12-label"
|
|
826
919
|
>
|
|
827
920
|
maxFeatureScreenDensity
|
|
828
921
|
</label>
|
|
829
922
|
<div
|
|
830
|
-
class="
|
|
923
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
831
924
|
>
|
|
832
925
|
<input
|
|
926
|
+
aria-describedby="mui-12-helper-text"
|
|
833
927
|
aria-invalid="false"
|
|
834
|
-
class="MuiInputBase-input
|
|
928
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
929
|
+
id="mui-12"
|
|
835
930
|
type="number"
|
|
836
931
|
value="0.3"
|
|
837
932
|
/>
|
|
933
|
+
<fieldset
|
|
934
|
+
aria-hidden="true"
|
|
935
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
936
|
+
>
|
|
937
|
+
<legend
|
|
938
|
+
class="css-1in441m"
|
|
939
|
+
>
|
|
940
|
+
<span>
|
|
941
|
+
maxFeatureScreenDensity
|
|
942
|
+
</span>
|
|
943
|
+
</legend>
|
|
944
|
+
</fieldset>
|
|
838
945
|
</div>
|
|
839
946
|
<div
|
|
840
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
947
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
948
|
+
id="mui-12-helper-text"
|
|
841
949
|
>
|
|
842
950
|
<div>
|
|
843
951
|
maximum features per pixel that is displayed in the view, used if byte size estimates not available
|
|
@@ -846,36 +954,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
846
954
|
</div>
|
|
847
955
|
</div>
|
|
848
956
|
<div
|
|
849
|
-
class="
|
|
957
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
850
958
|
/>
|
|
851
959
|
</div>
|
|
852
960
|
<div
|
|
853
|
-
class="MuiPaper-root
|
|
961
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
854
962
|
>
|
|
855
963
|
<div
|
|
856
|
-
class="
|
|
964
|
+
class="tss-1962tgi-paperContent"
|
|
857
965
|
>
|
|
858
966
|
<div
|
|
859
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
967
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
860
968
|
>
|
|
861
969
|
<label
|
|
862
|
-
class="
|
|
970
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
863
971
|
data-shrink="true"
|
|
972
|
+
for="mui-13"
|
|
973
|
+
id="mui-13-label"
|
|
864
974
|
>
|
|
865
975
|
fetchSizeLimit
|
|
866
976
|
</label>
|
|
867
977
|
<div
|
|
868
|
-
class="
|
|
978
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
869
979
|
>
|
|
870
980
|
<input
|
|
981
|
+
aria-describedby="mui-13-helper-text"
|
|
871
982
|
aria-invalid="false"
|
|
872
|
-
class="MuiInputBase-input
|
|
983
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
984
|
+
id="mui-13"
|
|
873
985
|
type="number"
|
|
874
986
|
value="1000000"
|
|
875
987
|
/>
|
|
988
|
+
<fieldset
|
|
989
|
+
aria-hidden="true"
|
|
990
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
991
|
+
>
|
|
992
|
+
<legend
|
|
993
|
+
class="css-1in441m"
|
|
994
|
+
>
|
|
995
|
+
<span>
|
|
996
|
+
fetchSizeLimit
|
|
997
|
+
</span>
|
|
998
|
+
</legend>
|
|
999
|
+
</fieldset>
|
|
876
1000
|
</div>
|
|
877
1001
|
<div
|
|
878
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1002
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1003
|
+
id="mui-13-helper-text"
|
|
879
1004
|
>
|
|
880
1005
|
<div>
|
|
881
1006
|
maximum data to attempt to download for a given track, used if adapter doesn't specify one
|
|
@@ -884,218 +1009,194 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
884
1009
|
</div>
|
|
885
1010
|
</div>
|
|
886
1011
|
<div
|
|
887
|
-
class="
|
|
1012
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
888
1013
|
/>
|
|
889
1014
|
</div>
|
|
890
1015
|
<div
|
|
891
|
-
class="MuiPaper-root
|
|
1016
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
892
1017
|
>
|
|
893
1018
|
<div
|
|
894
|
-
class="
|
|
1019
|
+
class="tss-1962tgi-paperContent"
|
|
895
1020
|
>
|
|
896
1021
|
<div
|
|
897
|
-
class="MuiFormControl-root"
|
|
1022
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
898
1023
|
>
|
|
899
1024
|
<label
|
|
900
|
-
class="
|
|
1025
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
901
1026
|
data-shrink="true"
|
|
902
1027
|
for="callback-editor"
|
|
903
1028
|
>
|
|
904
1029
|
mouseover
|
|
905
1030
|
</label>
|
|
906
1031
|
<div
|
|
907
|
-
class="
|
|
908
|
-
style="position: relative; text-align: left; white-space: pre-wrap; word-break: keep-all; box-sizing: border-box; padding: 0px; overflow: hidden;"
|
|
1032
|
+
class="MuiFormControl-root MuiTextField-root tss-1gornm3-callbackEditor css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
909
1033
|
>
|
|
910
|
-
<
|
|
911
|
-
|
|
912
|
-
autocomplete="off"
|
|
913
|
-
autocorrect="off"
|
|
914
|
-
class="npm__react-simple-code-editor__textarea"
|
|
915
|
-
data-gramm="false"
|
|
916
|
-
spellcheck="false"
|
|
917
|
-
style="margin: 0px; border: 0px; background: none; box-sizing: inherit; display: inherit; font-family: inherit; font-style: inherit; font-variant-ligatures: inherit; font-weight: inherit; letter-spacing: inherit; line-height: inherit; tab-size: inherit; text-indent: inherit; text-rendering: inherit; text-transform: inherit; white-space: inherit; word-break: inherit; position: absolute; top: 0px; left: 0px; height: 100%; width: 100%; resize: none; overflow: hidden; padding: 10px 10px 10px 10px;"
|
|
918
|
-
>
|
|
919
|
-
get(feature,'name')
|
|
920
|
-
</textarea>
|
|
921
|
-
<pre
|
|
922
|
-
aria-hidden="true"
|
|
923
|
-
style="margin: 0px; border: 0px; background: none; box-sizing: inherit; display: inherit; font-family: inherit; font-style: inherit; font-variant-ligatures: inherit; font-weight: inherit; letter-spacing: inherit; line-height: inherit; tab-size: inherit; text-indent: inherit; text-rendering: inherit; text-transform: inherit; white-space: inherit; word-break: inherit; position: relative; pointer-events: none; padding: 10px 10px 10px 10px;"
|
|
924
|
-
>
|
|
925
|
-
get(feature,'name')
|
|
926
|
-
<br />
|
|
927
|
-
</pre>
|
|
928
|
-
<style
|
|
929
|
-
type="text/css"
|
|
1034
|
+
<div
|
|
1035
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-multiline css-dpjnhs-MuiInputBase-root-MuiOutlinedInput-root"
|
|
930
1036
|
>
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
1037
|
+
<textarea
|
|
1038
|
+
aria-invalid="false"
|
|
1039
|
+
class="tss-hg8p6g-textAreaFont MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputMultiline css-1sqnrkk-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1040
|
+
id="mui-14"
|
|
1041
|
+
style="height: 0px; overflow: hidden;"
|
|
1042
|
+
>
|
|
1043
|
+
get(feature,'name')
|
|
1044
|
+
</textarea>
|
|
1045
|
+
<textarea
|
|
1046
|
+
aria-hidden="true"
|
|
1047
|
+
class="tss-hg8p6g-textAreaFont MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputMultiline css-1sqnrkk-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1048
|
+
readonly=""
|
|
1049
|
+
style="visibility: hidden; position: absolute; overflow: hidden; height: 0px; top: 0px; left: 0px; transform: translateZ(0); padding: 0px; width: 100%;"
|
|
1050
|
+
tabindex="-1"
|
|
1051
|
+
/>
|
|
1052
|
+
<fieldset
|
|
1053
|
+
aria-hidden="true"
|
|
1054
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1055
|
+
>
|
|
1056
|
+
<legend
|
|
1057
|
+
class="css-hdw1oc"
|
|
1058
|
+
>
|
|
1059
|
+
<span
|
|
1060
|
+
class="notranslate"
|
|
1061
|
+
>
|
|
1062
|
+
|
|
1063
|
+
</span>
|
|
1064
|
+
</legend>
|
|
1065
|
+
</fieldset>
|
|
1066
|
+
</div>
|
|
959
1067
|
</div>
|
|
960
1068
|
<p
|
|
961
|
-
class="MuiFormHelperText-root"
|
|
1069
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
962
1070
|
>
|
|
963
1071
|
what to display in a given mouseover
|
|
964
1072
|
</p>
|
|
965
1073
|
</div>
|
|
966
1074
|
<button
|
|
967
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorPrimary"
|
|
1075
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorPrimary MuiIconButton-sizeMedium css-1kuq5xv-MuiButtonBase-root-MuiIconButton-root"
|
|
1076
|
+
data-mui-internal-clone-element="true"
|
|
968
1077
|
tabindex="0"
|
|
969
1078
|
type="button"
|
|
970
1079
|
>
|
|
971
|
-
<
|
|
972
|
-
|
|
1080
|
+
<svg
|
|
1081
|
+
aria-hidden="true"
|
|
1082
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1083
|
+
data-testid="HelpIcon"
|
|
1084
|
+
focusable="false"
|
|
1085
|
+
viewBox="0 0 24 24"
|
|
973
1086
|
>
|
|
974
|
-
<
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
viewBox="0 0 24 24"
|
|
979
|
-
>
|
|
980
|
-
<path
|
|
981
|
-
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"
|
|
982
|
-
/>
|
|
983
|
-
</svg>
|
|
984
|
-
</span>
|
|
1087
|
+
<path
|
|
1088
|
+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"
|
|
1089
|
+
/>
|
|
1090
|
+
</svg>
|
|
985
1091
|
<span
|
|
986
|
-
class="MuiTouchRipple-root"
|
|
1092
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
987
1093
|
/>
|
|
988
1094
|
</button>
|
|
989
1095
|
</div>
|
|
990
1096
|
<div
|
|
991
|
-
class="
|
|
1097
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
992
1098
|
>
|
|
993
1099
|
<button
|
|
994
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
1100
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
995
1101
|
tabindex="0"
|
|
996
1102
|
title="convert to regular value"
|
|
997
1103
|
type="button"
|
|
998
1104
|
>
|
|
999
|
-
<
|
|
1000
|
-
|
|
1105
|
+
<svg
|
|
1106
|
+
aria-hidden="true"
|
|
1107
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1108
|
+
focusable="false"
|
|
1109
|
+
viewBox="0 0 24 24"
|
|
1001
1110
|
>
|
|
1002
|
-
<
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
viewBox="0 0 24 24"
|
|
1007
|
-
>
|
|
1008
|
-
<path
|
|
1009
|
-
d="M20.41,3C21.8,5.71 22.35,8.84 22,12C21.8,15.16 20.7,18.29 18.83,21L17.3,20C18.91,17.57 19.85,14.8 20,12C20.34,9.2 19.89,6.43 18.7,4L20.41,3M5.17,3L6.7,4C5.09,6.43 4.15,9.2 4,12C3.66,14.8 4.12,17.57 5.3,20L3.61,21C2.21,18.29 1.65,15.17 2,12C2.2,8.84 3.3,5.71 5.17,3M12.08,10.68L14.4,7.45H16.93L13.15,12.45L15.35,17.37H13.09L11.71,14L9.28,17.33H6.76L10.66,12.21L8.53,7.45H10.8L12.08,10.68Z"
|
|
1010
|
-
/>
|
|
1011
|
-
</svg>
|
|
1012
|
-
</span>
|
|
1111
|
+
<path
|
|
1112
|
+
d="M20.41,3C21.8,5.71 22.35,8.84 22,12C21.8,15.16 20.7,18.29 18.83,21L17.3,20C18.91,17.57 19.85,14.8 20,12C20.34,9.2 19.89,6.43 18.7,4L20.41,3M5.17,3L6.7,4C5.09,6.43 4.15,9.2 4,12C3.66,14.8 4.12,17.57 5.3,20L3.61,21C2.21,18.29 1.65,15.17 2,12C2.2,8.84 3.3,5.71 5.17,3M12.08,10.68L14.4,7.45H16.93L13.15,12.45L15.35,17.37H13.09L11.71,14L9.28,17.33H6.76L10.66,12.21L8.53,7.45H10.8L12.08,10.68Z"
|
|
1113
|
+
/>
|
|
1114
|
+
</svg>
|
|
1013
1115
|
<span
|
|
1014
|
-
class="MuiTouchRipple-root"
|
|
1116
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1015
1117
|
/>
|
|
1016
1118
|
</button>
|
|
1017
1119
|
</div>
|
|
1018
1120
|
</div>
|
|
1019
1121
|
<div
|
|
1020
|
-
class="MuiPaper-root MuiAccordion-root
|
|
1122
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiAccordion-root MuiAccordion-rounded Mui-expanded MuiAccordion-gutters tss-r6x2pq-accordion css-1elwnq4-MuiPaper-root-MuiAccordion-root"
|
|
1021
1123
|
>
|
|
1022
1124
|
<div
|
|
1023
|
-
aria-disabled="false"
|
|
1024
1125
|
aria-expanded="true"
|
|
1025
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
1126
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
1026
1127
|
role="button"
|
|
1027
1128
|
tabindex="0"
|
|
1028
1129
|
>
|
|
1029
1130
|
<div
|
|
1030
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
1131
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
1031
1132
|
>
|
|
1032
1133
|
<p
|
|
1033
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
1134
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
1034
1135
|
>
|
|
1035
1136
|
renderer
|
|
1036
1137
|
</p>
|
|
1037
1138
|
</div>
|
|
1038
1139
|
<div
|
|
1039
|
-
|
|
1040
|
-
aria-hidden="true"
|
|
1041
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
1140
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
1042
1141
|
>
|
|
1043
|
-
<
|
|
1044
|
-
|
|
1142
|
+
<svg
|
|
1143
|
+
aria-hidden="true"
|
|
1144
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium tss-5xjg5v-expandIcon css-i4bv87-MuiSvgIcon-root"
|
|
1145
|
+
data-testid="ExpandMoreIcon"
|
|
1146
|
+
focusable="false"
|
|
1147
|
+
viewBox="0 0 24 24"
|
|
1045
1148
|
>
|
|
1046
|
-
<
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
viewBox="0 0 24 24"
|
|
1051
|
-
>
|
|
1052
|
-
<path
|
|
1053
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1054
|
-
/>
|
|
1055
|
-
</svg>
|
|
1056
|
-
</span>
|
|
1057
|
-
<span
|
|
1058
|
-
class="MuiTouchRipple-root"
|
|
1059
|
-
/>
|
|
1149
|
+
<path
|
|
1150
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1151
|
+
/>
|
|
1152
|
+
</svg>
|
|
1060
1153
|
</div>
|
|
1061
1154
|
</div>
|
|
1062
1155
|
<div
|
|
1063
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
1156
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
1064
1157
|
style="min-height: 0px;"
|
|
1065
1158
|
>
|
|
1066
1159
|
<div
|
|
1067
|
-
class="MuiCollapse-wrapper"
|
|
1160
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
1068
1161
|
>
|
|
1069
1162
|
<div
|
|
1070
|
-
class="MuiCollapse-wrapperInner"
|
|
1163
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
1071
1164
|
>
|
|
1072
1165
|
<div
|
|
1166
|
+
class="MuiAccordion-region"
|
|
1073
1167
|
role="region"
|
|
1074
1168
|
>
|
|
1075
1169
|
<div
|
|
1076
|
-
class="MuiAccordionDetails-root
|
|
1170
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
1077
1171
|
>
|
|
1078
1172
|
<div
|
|
1079
|
-
class="MuiPaper-root
|
|
1173
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1080
1174
|
>
|
|
1081
1175
|
<div
|
|
1082
|
-
class="
|
|
1176
|
+
class="tss-1962tgi-paperContent"
|
|
1083
1177
|
>
|
|
1084
1178
|
<div
|
|
1085
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1179
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1086
1180
|
>
|
|
1087
1181
|
<label
|
|
1088
|
-
class="
|
|
1182
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1089
1183
|
data-shrink="true"
|
|
1184
|
+
for="mui-16"
|
|
1185
|
+
id="mui-16-label"
|
|
1090
1186
|
>
|
|
1091
1187
|
Type
|
|
1092
1188
|
</label>
|
|
1093
1189
|
<div
|
|
1094
|
-
class="
|
|
1190
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1191
|
+
variant="outlined"
|
|
1095
1192
|
>
|
|
1096
1193
|
<div
|
|
1194
|
+
aria-describedby="mui-16-helper-text"
|
|
1195
|
+
aria-expanded="false"
|
|
1097
1196
|
aria-haspopup="listbox"
|
|
1098
|
-
|
|
1197
|
+
aria-labelledby="mui-16-label mui-16"
|
|
1198
|
+
class="MuiSelect-select MuiSelect-outlined MuiOutlinedInput-input MuiInputBase-input css-11u53oe-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1199
|
+
id="mui-16"
|
|
1099
1200
|
role="button"
|
|
1100
1201
|
tabindex="0"
|
|
1101
1202
|
>
|
|
@@ -1103,13 +1204,14 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1103
1204
|
</div>
|
|
1104
1205
|
<input
|
|
1105
1206
|
aria-hidden="true"
|
|
1106
|
-
class="MuiSelect-nativeInput"
|
|
1207
|
+
class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput"
|
|
1107
1208
|
tabindex="-1"
|
|
1108
1209
|
value="PileupRenderer"
|
|
1109
1210
|
/>
|
|
1110
1211
|
<svg
|
|
1111
1212
|
aria-hidden="true"
|
|
1112
|
-
class="MuiSvgIcon-root MuiSelect-icon"
|
|
1213
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiSelect-icon MuiSelect-iconOutlined css-hfutr2-MuiSvgIcon-root-MuiSelect-icon"
|
|
1214
|
+
data-testid="ArrowDropDownIcon"
|
|
1113
1215
|
focusable="false"
|
|
1114
1216
|
viewBox="0 0 24 24"
|
|
1115
1217
|
>
|
|
@@ -1117,9 +1219,22 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1117
1219
|
d="M7 10l5 5 5-5z"
|
|
1118
1220
|
/>
|
|
1119
1221
|
</svg>
|
|
1222
|
+
<fieldset
|
|
1223
|
+
aria-hidden="true"
|
|
1224
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1225
|
+
>
|
|
1226
|
+
<legend
|
|
1227
|
+
class="css-1in441m"
|
|
1228
|
+
>
|
|
1229
|
+
<span>
|
|
1230
|
+
Type
|
|
1231
|
+
</span>
|
|
1232
|
+
</legend>
|
|
1233
|
+
</fieldset>
|
|
1120
1234
|
</div>
|
|
1121
1235
|
<p
|
|
1122
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1236
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1237
|
+
id="mui-16-helper-text"
|
|
1123
1238
|
>
|
|
1124
1239
|
Type of renderer to use
|
|
1125
1240
|
</p>
|
|
@@ -1127,91 +1242,112 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1127
1242
|
</div>
|
|
1128
1243
|
</div>
|
|
1129
1244
|
<div
|
|
1130
|
-
class="MuiFormGroup-root"
|
|
1245
|
+
class="MuiFormGroup-root css-dmmspl-MuiFormGroup-root"
|
|
1131
1246
|
>
|
|
1132
1247
|
<div
|
|
1133
|
-
class="MuiPaper-root
|
|
1248
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1134
1249
|
>
|
|
1135
1250
|
<div
|
|
1136
|
-
class="
|
|
1251
|
+
class="tss-1962tgi-paperContent"
|
|
1137
1252
|
>
|
|
1138
1253
|
<div
|
|
1139
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1254
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1140
1255
|
>
|
|
1141
1256
|
<label
|
|
1142
|
-
class="
|
|
1257
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1143
1258
|
data-shrink="true"
|
|
1259
|
+
for="mui-17"
|
|
1260
|
+
id="mui-17-label"
|
|
1144
1261
|
>
|
|
1145
1262
|
color
|
|
1146
1263
|
</label>
|
|
1147
1264
|
<div
|
|
1148
|
-
class="
|
|
1265
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1149
1266
|
style="color: rgb(255, 0, 255); border-right-width: 25px; border-right-style: solid; border-right-color: #f0f;"
|
|
1150
1267
|
>
|
|
1151
1268
|
<input
|
|
1269
|
+
aria-describedby="mui-17-helper-text"
|
|
1152
1270
|
aria-invalid="false"
|
|
1153
|
-
class="MuiInputBase-input
|
|
1271
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1272
|
+
id="mui-17"
|
|
1154
1273
|
type="text"
|
|
1155
1274
|
value="#f0f"
|
|
1156
1275
|
/>
|
|
1276
|
+
<fieldset
|
|
1277
|
+
aria-hidden="true"
|
|
1278
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1279
|
+
>
|
|
1280
|
+
<legend
|
|
1281
|
+
class="css-1in441m"
|
|
1282
|
+
>
|
|
1283
|
+
<span>
|
|
1284
|
+
color
|
|
1285
|
+
</span>
|
|
1286
|
+
</legend>
|
|
1287
|
+
</fieldset>
|
|
1157
1288
|
</div>
|
|
1158
1289
|
<p
|
|
1159
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1290
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1291
|
+
id="mui-17-helper-text"
|
|
1160
1292
|
>
|
|
1161
1293
|
the color of each feature in a pileup alignment
|
|
1162
1294
|
</p>
|
|
1163
1295
|
</div>
|
|
1164
1296
|
</div>
|
|
1165
1297
|
<div
|
|
1166
|
-
class="
|
|
1298
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1167
1299
|
>
|
|
1168
1300
|
<button
|
|
1169
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
1301
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
1170
1302
|
tabindex="0"
|
|
1171
1303
|
title="convert to callback"
|
|
1172
1304
|
type="button"
|
|
1173
1305
|
>
|
|
1174
|
-
<
|
|
1175
|
-
|
|
1306
|
+
<svg
|
|
1307
|
+
aria-hidden="true"
|
|
1308
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1309
|
+
data-testid="RadioButtonUncheckedIcon"
|
|
1310
|
+
focusable="false"
|
|
1311
|
+
viewBox="0 0 24 24"
|
|
1176
1312
|
>
|
|
1177
|
-
<
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
viewBox="0 0 24 24"
|
|
1182
|
-
>
|
|
1183
|
-
<path
|
|
1184
|
-
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
|
|
1185
|
-
/>
|
|
1186
|
-
</svg>
|
|
1187
|
-
</span>
|
|
1313
|
+
<path
|
|
1314
|
+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
|
|
1315
|
+
/>
|
|
1316
|
+
</svg>
|
|
1188
1317
|
<span
|
|
1189
|
-
class="MuiTouchRipple-root"
|
|
1318
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1190
1319
|
/>
|
|
1191
1320
|
</button>
|
|
1192
1321
|
</div>
|
|
1193
1322
|
</div>
|
|
1194
1323
|
<div
|
|
1195
|
-
class="MuiPaper-root
|
|
1324
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1196
1325
|
>
|
|
1197
1326
|
<div
|
|
1198
|
-
class="
|
|
1327
|
+
class="tss-1962tgi-paperContent"
|
|
1199
1328
|
>
|
|
1200
1329
|
<div
|
|
1201
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1330
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1202
1331
|
>
|
|
1203
1332
|
<label
|
|
1204
|
-
class="
|
|
1333
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1205
1334
|
data-shrink="true"
|
|
1335
|
+
for="mui-18"
|
|
1336
|
+
id="mui-18-label"
|
|
1206
1337
|
>
|
|
1207
1338
|
orientationType
|
|
1208
1339
|
</label>
|
|
1209
1340
|
<div
|
|
1210
|
-
class="
|
|
1341
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1342
|
+
variant="outlined"
|
|
1211
1343
|
>
|
|
1212
1344
|
<div
|
|
1345
|
+
aria-describedby="mui-18-helper-text"
|
|
1346
|
+
aria-expanded="false"
|
|
1213
1347
|
aria-haspopup="listbox"
|
|
1214
|
-
|
|
1348
|
+
aria-labelledby="mui-18-label mui-18"
|
|
1349
|
+
class="MuiSelect-select MuiSelect-outlined MuiOutlinedInput-input MuiInputBase-input css-11u53oe-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1350
|
+
id="mui-18"
|
|
1215
1351
|
role="button"
|
|
1216
1352
|
tabindex="0"
|
|
1217
1353
|
>
|
|
@@ -1219,13 +1355,14 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1219
1355
|
</div>
|
|
1220
1356
|
<input
|
|
1221
1357
|
aria-hidden="true"
|
|
1222
|
-
class="MuiSelect-nativeInput"
|
|
1358
|
+
class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput"
|
|
1223
1359
|
tabindex="-1"
|
|
1224
1360
|
value="fr"
|
|
1225
1361
|
/>
|
|
1226
1362
|
<svg
|
|
1227
1363
|
aria-hidden="true"
|
|
1228
|
-
class="MuiSvgIcon-root MuiSelect-icon"
|
|
1364
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiSelect-icon MuiSelect-iconOutlined css-hfutr2-MuiSvgIcon-root-MuiSelect-icon"
|
|
1365
|
+
data-testid="ArrowDropDownIcon"
|
|
1229
1366
|
focusable="false"
|
|
1230
1367
|
viewBox="0 0 24 24"
|
|
1231
1368
|
>
|
|
@@ -1233,9 +1370,22 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1233
1370
|
d="M7 10l5 5 5-5z"
|
|
1234
1371
|
/>
|
|
1235
1372
|
</svg>
|
|
1373
|
+
<fieldset
|
|
1374
|
+
aria-hidden="true"
|
|
1375
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1376
|
+
>
|
|
1377
|
+
<legend
|
|
1378
|
+
class="css-1in441m"
|
|
1379
|
+
>
|
|
1380
|
+
<span>
|
|
1381
|
+
orientationType
|
|
1382
|
+
</span>
|
|
1383
|
+
</legend>
|
|
1384
|
+
</fieldset>
|
|
1236
1385
|
</div>
|
|
1237
1386
|
<div
|
|
1238
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1387
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1388
|
+
id="mui-18-helper-text"
|
|
1239
1389
|
>
|
|
1240
1390
|
<div>
|
|
1241
1391
|
read sequencer orienation. fr is normal "reads pointing at each other ---> <--- while some other sequencers can use other options
|
|
@@ -1244,30 +1394,37 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1244
1394
|
</div>
|
|
1245
1395
|
</div>
|
|
1246
1396
|
<div
|
|
1247
|
-
class="
|
|
1397
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1248
1398
|
/>
|
|
1249
1399
|
</div>
|
|
1250
1400
|
<div
|
|
1251
|
-
class="MuiPaper-root
|
|
1401
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1252
1402
|
>
|
|
1253
1403
|
<div
|
|
1254
|
-
class="
|
|
1404
|
+
class="tss-1962tgi-paperContent"
|
|
1255
1405
|
>
|
|
1256
1406
|
<div
|
|
1257
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1407
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1258
1408
|
>
|
|
1259
1409
|
<label
|
|
1260
|
-
class="
|
|
1410
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1261
1411
|
data-shrink="true"
|
|
1412
|
+
for="mui-19"
|
|
1413
|
+
id="mui-19-label"
|
|
1262
1414
|
>
|
|
1263
1415
|
displayMode
|
|
1264
1416
|
</label>
|
|
1265
1417
|
<div
|
|
1266
|
-
class="
|
|
1418
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1419
|
+
variant="outlined"
|
|
1267
1420
|
>
|
|
1268
1421
|
<div
|
|
1422
|
+
aria-describedby="mui-19-helper-text"
|
|
1423
|
+
aria-expanded="false"
|
|
1269
1424
|
aria-haspopup="listbox"
|
|
1270
|
-
|
|
1425
|
+
aria-labelledby="mui-19-label mui-19"
|
|
1426
|
+
class="MuiSelect-select MuiSelect-outlined MuiOutlinedInput-input MuiInputBase-input css-11u53oe-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1427
|
+
id="mui-19"
|
|
1271
1428
|
role="button"
|
|
1272
1429
|
tabindex="0"
|
|
1273
1430
|
>
|
|
@@ -1275,13 +1432,14 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1275
1432
|
</div>
|
|
1276
1433
|
<input
|
|
1277
1434
|
aria-hidden="true"
|
|
1278
|
-
class="MuiSelect-nativeInput"
|
|
1435
|
+
class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput"
|
|
1279
1436
|
tabindex="-1"
|
|
1280
1437
|
value="normal"
|
|
1281
1438
|
/>
|
|
1282
1439
|
<svg
|
|
1283
1440
|
aria-hidden="true"
|
|
1284
|
-
class="MuiSvgIcon-root MuiSelect-icon"
|
|
1441
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiSelect-icon MuiSelect-iconOutlined css-hfutr2-MuiSvgIcon-root-MuiSelect-icon"
|
|
1442
|
+
data-testid="ArrowDropDownIcon"
|
|
1285
1443
|
focusable="false"
|
|
1286
1444
|
viewBox="0 0 24 24"
|
|
1287
1445
|
>
|
|
@@ -1289,9 +1447,22 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1289
1447
|
d="M7 10l5 5 5-5z"
|
|
1290
1448
|
/>
|
|
1291
1449
|
</svg>
|
|
1450
|
+
<fieldset
|
|
1451
|
+
aria-hidden="true"
|
|
1452
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1453
|
+
>
|
|
1454
|
+
<legend
|
|
1455
|
+
class="css-1in441m"
|
|
1456
|
+
>
|
|
1457
|
+
<span>
|
|
1458
|
+
displayMode
|
|
1459
|
+
</span>
|
|
1460
|
+
</legend>
|
|
1461
|
+
</fieldset>
|
|
1292
1462
|
</div>
|
|
1293
1463
|
<div
|
|
1294
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1464
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1465
|
+
id="mui-19-helper-text"
|
|
1295
1466
|
>
|
|
1296
1467
|
<div>
|
|
1297
1468
|
Alternative display modes
|
|
@@ -1300,36 +1471,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1300
1471
|
</div>
|
|
1301
1472
|
</div>
|
|
1302
1473
|
<div
|
|
1303
|
-
class="
|
|
1474
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1304
1475
|
/>
|
|
1305
1476
|
</div>
|
|
1306
1477
|
<div
|
|
1307
|
-
class="MuiPaper-root
|
|
1478
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1308
1479
|
>
|
|
1309
1480
|
<div
|
|
1310
|
-
class="
|
|
1481
|
+
class="tss-1962tgi-paperContent"
|
|
1311
1482
|
>
|
|
1312
1483
|
<div
|
|
1313
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1484
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1314
1485
|
>
|
|
1315
1486
|
<label
|
|
1316
|
-
class="
|
|
1487
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1317
1488
|
data-shrink="true"
|
|
1489
|
+
for="mui-20"
|
|
1490
|
+
id="mui-20-label"
|
|
1318
1491
|
>
|
|
1319
1492
|
minSubfeatureWidth
|
|
1320
1493
|
</label>
|
|
1321
1494
|
<div
|
|
1322
|
-
class="
|
|
1495
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1323
1496
|
>
|
|
1324
1497
|
<input
|
|
1498
|
+
aria-describedby="mui-20-helper-text"
|
|
1325
1499
|
aria-invalid="false"
|
|
1326
|
-
class="MuiInputBase-input
|
|
1500
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1501
|
+
id="mui-20"
|
|
1327
1502
|
type="number"
|
|
1328
1503
|
value="0.7"
|
|
1329
1504
|
/>
|
|
1505
|
+
<fieldset
|
|
1506
|
+
aria-hidden="true"
|
|
1507
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1508
|
+
>
|
|
1509
|
+
<legend
|
|
1510
|
+
class="css-1in441m"
|
|
1511
|
+
>
|
|
1512
|
+
<span>
|
|
1513
|
+
minSubfeatureWidth
|
|
1514
|
+
</span>
|
|
1515
|
+
</legend>
|
|
1516
|
+
</fieldset>
|
|
1330
1517
|
</div>
|
|
1331
1518
|
<div
|
|
1332
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1519
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1520
|
+
id="mui-20-helper-text"
|
|
1333
1521
|
>
|
|
1334
1522
|
<div>
|
|
1335
1523
|
the minimum width in px for a pileup mismatch feature. use for increasing/decreasing mismatch marker widths when zoomed out, e.g. 0 or 1
|
|
@@ -1338,36 +1526,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1338
1526
|
</div>
|
|
1339
1527
|
</div>
|
|
1340
1528
|
<div
|
|
1341
|
-
class="
|
|
1529
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1342
1530
|
/>
|
|
1343
1531
|
</div>
|
|
1344
1532
|
<div
|
|
1345
|
-
class="MuiPaper-root
|
|
1533
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1346
1534
|
>
|
|
1347
1535
|
<div
|
|
1348
|
-
class="
|
|
1536
|
+
class="tss-1962tgi-paperContent"
|
|
1349
1537
|
>
|
|
1350
1538
|
<div
|
|
1351
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1539
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1352
1540
|
>
|
|
1353
1541
|
<label
|
|
1354
|
-
class="
|
|
1542
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1355
1543
|
data-shrink="true"
|
|
1544
|
+
for="mui-21"
|
|
1545
|
+
id="mui-21-label"
|
|
1356
1546
|
>
|
|
1357
1547
|
maxHeight
|
|
1358
1548
|
</label>
|
|
1359
1549
|
<div
|
|
1360
|
-
class="
|
|
1550
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1361
1551
|
>
|
|
1362
1552
|
<input
|
|
1553
|
+
aria-describedby="mui-21-helper-text"
|
|
1363
1554
|
aria-invalid="false"
|
|
1364
|
-
class="MuiInputBase-input
|
|
1555
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1556
|
+
id="mui-21"
|
|
1365
1557
|
type="number"
|
|
1366
1558
|
value="1200"
|
|
1367
1559
|
/>
|
|
1560
|
+
<fieldset
|
|
1561
|
+
aria-hidden="true"
|
|
1562
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1563
|
+
>
|
|
1564
|
+
<legend
|
|
1565
|
+
class="css-1in441m"
|
|
1566
|
+
>
|
|
1567
|
+
<span>
|
|
1568
|
+
maxHeight
|
|
1569
|
+
</span>
|
|
1570
|
+
</legend>
|
|
1571
|
+
</fieldset>
|
|
1368
1572
|
</div>
|
|
1369
1573
|
<div
|
|
1370
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1574
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1575
|
+
id="mui-21-helper-text"
|
|
1371
1576
|
>
|
|
1372
1577
|
<div>
|
|
1373
1578
|
the maximum height to be used in a pileup rendering
|
|
@@ -1376,36 +1581,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1376
1581
|
</div>
|
|
1377
1582
|
</div>
|
|
1378
1583
|
<div
|
|
1379
|
-
class="
|
|
1584
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1380
1585
|
/>
|
|
1381
1586
|
</div>
|
|
1382
1587
|
<div
|
|
1383
|
-
class="MuiPaper-root
|
|
1588
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1384
1589
|
>
|
|
1385
1590
|
<div
|
|
1386
|
-
class="
|
|
1591
|
+
class="tss-1962tgi-paperContent"
|
|
1387
1592
|
>
|
|
1388
1593
|
<div
|
|
1389
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1594
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1390
1595
|
>
|
|
1391
1596
|
<label
|
|
1392
|
-
class="
|
|
1597
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1393
1598
|
data-shrink="true"
|
|
1599
|
+
for="mui-22"
|
|
1600
|
+
id="mui-22-label"
|
|
1394
1601
|
>
|
|
1395
1602
|
maxClippingSize
|
|
1396
1603
|
</label>
|
|
1397
1604
|
<div
|
|
1398
|
-
class="
|
|
1605
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1399
1606
|
>
|
|
1400
1607
|
<input
|
|
1608
|
+
aria-describedby="mui-22-helper-text"
|
|
1401
1609
|
aria-invalid="false"
|
|
1402
|
-
class="MuiInputBase-input
|
|
1610
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1611
|
+
id="mui-22"
|
|
1403
1612
|
type="number"
|
|
1404
1613
|
value="10000"
|
|
1405
1614
|
/>
|
|
1615
|
+
<fieldset
|
|
1616
|
+
aria-hidden="true"
|
|
1617
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1618
|
+
>
|
|
1619
|
+
<legend
|
|
1620
|
+
class="css-1in441m"
|
|
1621
|
+
>
|
|
1622
|
+
<span>
|
|
1623
|
+
maxClippingSize
|
|
1624
|
+
</span>
|
|
1625
|
+
</legend>
|
|
1626
|
+
</fieldset>
|
|
1406
1627
|
</div>
|
|
1407
1628
|
<div
|
|
1408
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1629
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1630
|
+
id="mui-22-helper-text"
|
|
1409
1631
|
>
|
|
1410
1632
|
<div>
|
|
1411
1633
|
the max clip size to be used in a pileup rendering
|
|
@@ -1414,36 +1636,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1414
1636
|
</div>
|
|
1415
1637
|
</div>
|
|
1416
1638
|
<div
|
|
1417
|
-
class="
|
|
1639
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1418
1640
|
/>
|
|
1419
1641
|
</div>
|
|
1420
1642
|
<div
|
|
1421
|
-
class="MuiPaper-root
|
|
1643
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1422
1644
|
>
|
|
1423
1645
|
<div
|
|
1424
|
-
class="
|
|
1646
|
+
class="tss-1962tgi-paperContent"
|
|
1425
1647
|
>
|
|
1426
1648
|
<div
|
|
1427
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1649
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1428
1650
|
>
|
|
1429
1651
|
<label
|
|
1430
|
-
class="
|
|
1652
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1431
1653
|
data-shrink="true"
|
|
1654
|
+
for="mui-23"
|
|
1655
|
+
id="mui-23-label"
|
|
1432
1656
|
>
|
|
1433
1657
|
height
|
|
1434
1658
|
</label>
|
|
1435
1659
|
<div
|
|
1436
|
-
class="
|
|
1660
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1437
1661
|
>
|
|
1438
1662
|
<input
|
|
1663
|
+
aria-describedby="mui-23-helper-text"
|
|
1439
1664
|
aria-invalid="false"
|
|
1440
|
-
class="MuiInputBase-input
|
|
1665
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1666
|
+
id="mui-23"
|
|
1441
1667
|
type="number"
|
|
1442
1668
|
value="7"
|
|
1443
1669
|
/>
|
|
1670
|
+
<fieldset
|
|
1671
|
+
aria-hidden="true"
|
|
1672
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1673
|
+
>
|
|
1674
|
+
<legend
|
|
1675
|
+
class="css-1in441m"
|
|
1676
|
+
>
|
|
1677
|
+
<span>
|
|
1678
|
+
height
|
|
1679
|
+
</span>
|
|
1680
|
+
</legend>
|
|
1681
|
+
</fieldset>
|
|
1444
1682
|
</div>
|
|
1445
1683
|
<div
|
|
1446
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1684
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1685
|
+
id="mui-23-helper-text"
|
|
1447
1686
|
>
|
|
1448
1687
|
<div>
|
|
1449
1688
|
the height of each feature in a pileup alignment
|
|
@@ -1452,118 +1691,127 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1452
1691
|
</div>
|
|
1453
1692
|
</div>
|
|
1454
1693
|
<div
|
|
1455
|
-
class="
|
|
1694
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1456
1695
|
>
|
|
1457
1696
|
<button
|
|
1458
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
1697
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
1459
1698
|
tabindex="0"
|
|
1460
1699
|
title="convert to callback"
|
|
1461
1700
|
type="button"
|
|
1462
1701
|
>
|
|
1463
|
-
<
|
|
1464
|
-
|
|
1702
|
+
<svg
|
|
1703
|
+
aria-hidden="true"
|
|
1704
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1705
|
+
data-testid="RadioButtonUncheckedIcon"
|
|
1706
|
+
focusable="false"
|
|
1707
|
+
viewBox="0 0 24 24"
|
|
1465
1708
|
>
|
|
1466
|
-
<
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
viewBox="0 0 24 24"
|
|
1471
|
-
>
|
|
1472
|
-
<path
|
|
1473
|
-
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
|
|
1474
|
-
/>
|
|
1475
|
-
</svg>
|
|
1476
|
-
</span>
|
|
1709
|
+
<path
|
|
1710
|
+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
|
|
1711
|
+
/>
|
|
1712
|
+
</svg>
|
|
1477
1713
|
<span
|
|
1478
|
-
class="MuiTouchRipple-root"
|
|
1714
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1479
1715
|
/>
|
|
1480
1716
|
</button>
|
|
1481
1717
|
</div>
|
|
1482
1718
|
</div>
|
|
1483
1719
|
<div
|
|
1484
|
-
class="MuiPaper-root
|
|
1720
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1485
1721
|
>
|
|
1486
1722
|
<div
|
|
1487
|
-
class="
|
|
1723
|
+
class="tss-1962tgi-paperContent"
|
|
1488
1724
|
>
|
|
1489
1725
|
<div
|
|
1490
|
-
class="MuiFormControl-root"
|
|
1726
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
1491
1727
|
>
|
|
1492
1728
|
<label
|
|
1493
|
-
class="MuiFormControlLabel-root"
|
|
1729
|
+
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
1494
1730
|
>
|
|
1495
1731
|
<span
|
|
1496
|
-
|
|
1497
|
-
class="MuiButtonBase-root MuiIconButton-root PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorSecondary MuiIconButton-colorSecondary"
|
|
1732
|
+
class="MuiCheckbox-root MuiCheckbox-colorPrimary MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary PrivateSwitchBase-root css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
|
|
1498
1733
|
>
|
|
1499
|
-
<
|
|
1500
|
-
class="
|
|
1734
|
+
<input
|
|
1735
|
+
class="PrivateSwitchBase-input css-1m9pwf3"
|
|
1736
|
+
data-indeterminate="false"
|
|
1737
|
+
type="checkbox"
|
|
1738
|
+
/>
|
|
1739
|
+
<svg
|
|
1740
|
+
aria-hidden="true"
|
|
1741
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1742
|
+
data-testid="CheckBoxOutlineBlankIcon"
|
|
1743
|
+
focusable="false"
|
|
1744
|
+
viewBox="0 0 24 24"
|
|
1501
1745
|
>
|
|
1502
|
-
<
|
|
1503
|
-
|
|
1504
|
-
data-indeterminate="false"
|
|
1505
|
-
type="checkbox"
|
|
1506
|
-
value=""
|
|
1746
|
+
<path
|
|
1747
|
+
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
|
|
1507
1748
|
/>
|
|
1508
|
-
|
|
1509
|
-
aria-hidden="true"
|
|
1510
|
-
class="MuiSvgIcon-root"
|
|
1511
|
-
focusable="false"
|
|
1512
|
-
viewBox="0 0 24 24"
|
|
1513
|
-
>
|
|
1514
|
-
<path
|
|
1515
|
-
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
|
|
1516
|
-
/>
|
|
1517
|
-
</svg>
|
|
1518
|
-
</span>
|
|
1749
|
+
</svg>
|
|
1519
1750
|
<span
|
|
1520
|
-
class="MuiTouchRipple-root"
|
|
1751
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1521
1752
|
/>
|
|
1522
1753
|
</span>
|
|
1523
1754
|
<span
|
|
1524
|
-
class="MuiTypography-root MuiFormControlLabel-label MuiTypography-
|
|
1755
|
+
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label css-ahj2mt-MuiTypography-root"
|
|
1525
1756
|
>
|
|
1526
1757
|
noSpacing
|
|
1527
1758
|
</span>
|
|
1528
1759
|
</label>
|
|
1529
1760
|
<p
|
|
1530
|
-
class="MuiFormHelperText-root"
|
|
1761
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
1531
1762
|
>
|
|
1532
1763
|
remove spacing between features
|
|
1533
1764
|
</p>
|
|
1534
1765
|
</div>
|
|
1535
1766
|
</div>
|
|
1536
1767
|
<div
|
|
1537
|
-
class="
|
|
1768
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1538
1769
|
/>
|
|
1539
1770
|
</div>
|
|
1540
1771
|
<div
|
|
1541
|
-
class="MuiPaper-root
|
|
1772
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1542
1773
|
>
|
|
1543
1774
|
<div
|
|
1544
|
-
class="
|
|
1775
|
+
class="tss-1962tgi-paperContent"
|
|
1545
1776
|
>
|
|
1546
1777
|
<div
|
|
1547
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1778
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1548
1779
|
>
|
|
1549
1780
|
<label
|
|
1550
|
-
class="
|
|
1781
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1551
1782
|
data-shrink="true"
|
|
1783
|
+
for="mui-24"
|
|
1784
|
+
id="mui-24-label"
|
|
1552
1785
|
>
|
|
1553
1786
|
largeInsertionIndicatorScale
|
|
1554
1787
|
</label>
|
|
1555
1788
|
<div
|
|
1556
|
-
class="
|
|
1789
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1557
1790
|
>
|
|
1558
1791
|
<input
|
|
1792
|
+
aria-describedby="mui-24-helper-text"
|
|
1559
1793
|
aria-invalid="false"
|
|
1560
|
-
class="MuiInputBase-input
|
|
1794
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1795
|
+
id="mui-24"
|
|
1561
1796
|
type="number"
|
|
1562
1797
|
value="10"
|
|
1563
1798
|
/>
|
|
1799
|
+
<fieldset
|
|
1800
|
+
aria-hidden="true"
|
|
1801
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1802
|
+
>
|
|
1803
|
+
<legend
|
|
1804
|
+
class="css-1in441m"
|
|
1805
|
+
>
|
|
1806
|
+
<span>
|
|
1807
|
+
largeInsertionIndicatorScale
|
|
1808
|
+
</span>
|
|
1809
|
+
</legend>
|
|
1810
|
+
</fieldset>
|
|
1564
1811
|
</div>
|
|
1565
1812
|
<div
|
|
1566
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1813
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1814
|
+
id="mui-24-helper-text"
|
|
1567
1815
|
>
|
|
1568
1816
|
<div>
|
|
1569
1817
|
scale at which to draw the large insertion indicators (bp/pixel)
|
|
@@ -1572,64 +1820,59 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1572
1820
|
</div>
|
|
1573
1821
|
</div>
|
|
1574
1822
|
<div
|
|
1575
|
-
class="
|
|
1823
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1576
1824
|
/>
|
|
1577
1825
|
</div>
|
|
1578
1826
|
<div
|
|
1579
|
-
class="MuiPaper-root
|
|
1827
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1580
1828
|
>
|
|
1581
1829
|
<div
|
|
1582
|
-
class="
|
|
1830
|
+
class="tss-1962tgi-paperContent"
|
|
1583
1831
|
>
|
|
1584
1832
|
<div
|
|
1585
|
-
class="MuiFormControl-root"
|
|
1833
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
1586
1834
|
>
|
|
1587
1835
|
<label
|
|
1588
|
-
class="MuiFormControlLabel-root"
|
|
1836
|
+
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
1589
1837
|
>
|
|
1590
1838
|
<span
|
|
1591
|
-
|
|
1592
|
-
class="MuiButtonBase-root MuiIconButton-root PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorSecondary MuiIconButton-colorSecondary"
|
|
1839
|
+
class="MuiCheckbox-root MuiCheckbox-colorPrimary MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary PrivateSwitchBase-root css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
|
|
1593
1840
|
>
|
|
1594
|
-
<
|
|
1595
|
-
class="
|
|
1841
|
+
<input
|
|
1842
|
+
class="PrivateSwitchBase-input css-1m9pwf3"
|
|
1843
|
+
data-indeterminate="false"
|
|
1844
|
+
type="checkbox"
|
|
1845
|
+
/>
|
|
1846
|
+
<svg
|
|
1847
|
+
aria-hidden="true"
|
|
1848
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1849
|
+
data-testid="CheckBoxOutlineBlankIcon"
|
|
1850
|
+
focusable="false"
|
|
1851
|
+
viewBox="0 0 24 24"
|
|
1596
1852
|
>
|
|
1597
|
-
<
|
|
1598
|
-
|
|
1599
|
-
data-indeterminate="false"
|
|
1600
|
-
type="checkbox"
|
|
1601
|
-
value=""
|
|
1853
|
+
<path
|
|
1854
|
+
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
|
|
1602
1855
|
/>
|
|
1603
|
-
|
|
1604
|
-
aria-hidden="true"
|
|
1605
|
-
class="MuiSvgIcon-root"
|
|
1606
|
-
focusable="false"
|
|
1607
|
-
viewBox="0 0 24 24"
|
|
1608
|
-
>
|
|
1609
|
-
<path
|
|
1610
|
-
d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
|
|
1611
|
-
/>
|
|
1612
|
-
</svg>
|
|
1613
|
-
</span>
|
|
1856
|
+
</svg>
|
|
1614
1857
|
<span
|
|
1615
|
-
class="MuiTouchRipple-root"
|
|
1858
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1616
1859
|
/>
|
|
1617
1860
|
</span>
|
|
1618
1861
|
<span
|
|
1619
|
-
class="MuiTypography-root MuiFormControlLabel-label MuiTypography-
|
|
1862
|
+
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label css-ahj2mt-MuiTypography-root"
|
|
1620
1863
|
>
|
|
1621
1864
|
mismatchAlpha
|
|
1622
1865
|
</span>
|
|
1623
1866
|
</label>
|
|
1624
1867
|
<p
|
|
1625
|
-
class="MuiFormHelperText-root"
|
|
1868
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
1626
1869
|
>
|
|
1627
1870
|
Fade low quality mismatches
|
|
1628
1871
|
</p>
|
|
1629
1872
|
</div>
|
|
1630
1873
|
</div>
|
|
1631
1874
|
<div
|
|
1632
|
-
class="
|
|
1875
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1633
1876
|
/>
|
|
1634
1877
|
</div>
|
|
1635
1878
|
</div>
|
|
@@ -1649,99 +1892,108 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1649
1892
|
|
|
1650
1893
|
exports[`ConfigurationEditor widget renders with just the required model elements 1`] = `
|
|
1651
1894
|
<div
|
|
1652
|
-
class="MuiPaper-root MuiAccordion-root
|
|
1895
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 MuiAccordion-root MuiAccordion-rounded Mui-expanded MuiAccordion-gutters tss-r6x2pq-accordion css-1elwnq4-MuiPaper-root-MuiAccordion-root"
|
|
1653
1896
|
>
|
|
1654
1897
|
<div
|
|
1655
|
-
aria-disabled="false"
|
|
1656
1898
|
aria-expanded="true"
|
|
1657
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
1899
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
1658
1900
|
role="button"
|
|
1659
1901
|
tabindex="0"
|
|
1660
1902
|
>
|
|
1661
1903
|
<div
|
|
1662
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
1904
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
1663
1905
|
>
|
|
1664
1906
|
<p
|
|
1665
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
1907
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
1666
1908
|
>
|
|
1667
1909
|
Configuration
|
|
1668
1910
|
</p>
|
|
1669
1911
|
</div>
|
|
1670
1912
|
<div
|
|
1671
|
-
|
|
1672
|
-
aria-hidden="true"
|
|
1673
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
1913
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
1674
1914
|
>
|
|
1675
|
-
<
|
|
1676
|
-
|
|
1915
|
+
<svg
|
|
1916
|
+
aria-hidden="true"
|
|
1917
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium tss-5xjg5v-expandIcon css-i4bv87-MuiSvgIcon-root"
|
|
1918
|
+
data-testid="ExpandMoreIcon"
|
|
1919
|
+
focusable="false"
|
|
1920
|
+
viewBox="0 0 24 24"
|
|
1677
1921
|
>
|
|
1678
|
-
<
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
viewBox="0 0 24 24"
|
|
1683
|
-
>
|
|
1684
|
-
<path
|
|
1685
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1686
|
-
/>
|
|
1687
|
-
</svg>
|
|
1688
|
-
</span>
|
|
1689
|
-
<span
|
|
1690
|
-
class="MuiTouchRipple-root"
|
|
1691
|
-
/>
|
|
1922
|
+
<path
|
|
1923
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1924
|
+
/>
|
|
1925
|
+
</svg>
|
|
1692
1926
|
</div>
|
|
1693
1927
|
</div>
|
|
1694
1928
|
<div
|
|
1695
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
1929
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
1696
1930
|
style="min-height: 0px;"
|
|
1697
1931
|
>
|
|
1698
1932
|
<div
|
|
1699
|
-
class="MuiCollapse-wrapper"
|
|
1933
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
1700
1934
|
>
|
|
1701
1935
|
<div
|
|
1702
|
-
class="MuiCollapse-wrapperInner"
|
|
1936
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
1703
1937
|
>
|
|
1704
1938
|
<div
|
|
1939
|
+
class="MuiAccordion-region"
|
|
1705
1940
|
role="region"
|
|
1706
1941
|
>
|
|
1707
1942
|
<div
|
|
1708
|
-
class="MuiAccordionDetails-root
|
|
1943
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
1709
1944
|
data-testid="configEditor"
|
|
1710
1945
|
>
|
|
1711
1946
|
<div
|
|
1712
|
-
class="MuiPaper-root
|
|
1947
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1713
1948
|
>
|
|
1714
1949
|
<div
|
|
1715
|
-
class="
|
|
1950
|
+
class="tss-1962tgi-paperContent"
|
|
1716
1951
|
>
|
|
1717
1952
|
<div
|
|
1718
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1953
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1719
1954
|
>
|
|
1720
1955
|
<label
|
|
1721
|
-
class="
|
|
1956
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1722
1957
|
data-shrink="true"
|
|
1958
|
+
for="mui-1"
|
|
1959
|
+
id="mui-1-label"
|
|
1723
1960
|
>
|
|
1724
1961
|
foo
|
|
1725
1962
|
</label>
|
|
1726
1963
|
<div
|
|
1727
|
-
class="
|
|
1964
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1728
1965
|
>
|
|
1729
1966
|
<input
|
|
1967
|
+
aria-describedby="mui-1-helper-text"
|
|
1730
1968
|
aria-invalid="false"
|
|
1731
|
-
class="MuiInputBase-input
|
|
1969
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1970
|
+
id="mui-1"
|
|
1732
1971
|
type="text"
|
|
1733
1972
|
value="bar"
|
|
1734
1973
|
/>
|
|
1974
|
+
<fieldset
|
|
1975
|
+
aria-hidden="true"
|
|
1976
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1977
|
+
>
|
|
1978
|
+
<legend
|
|
1979
|
+
class="css-1in441m"
|
|
1980
|
+
>
|
|
1981
|
+
<span>
|
|
1982
|
+
foo
|
|
1983
|
+
</span>
|
|
1984
|
+
</legend>
|
|
1985
|
+
</fieldset>
|
|
1735
1986
|
</div>
|
|
1736
1987
|
<div
|
|
1737
|
-
class="MuiFormHelperText-root MuiFormHelperText-filled"
|
|
1988
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1989
|
+
id="mui-1-helper-text"
|
|
1738
1990
|
>
|
|
1739
1991
|
<div />
|
|
1740
1992
|
</div>
|
|
1741
1993
|
</div>
|
|
1742
1994
|
</div>
|
|
1743
1995
|
<div
|
|
1744
|
-
class="
|
|
1996
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1745
1997
|
/>
|
|
1746
1998
|
</div>
|
|
1747
1999
|
</div>
|