@jbrowse/plugin-config 1.7.9 → 2.0.0
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 +228 -423
- package/dist/ConfigurationEditorWidget/components/SlotEditor.js.map +1 -0
- package/dist/ConfigurationEditorWidget/components/StringArrayEditor.d.ts +12 -0
- package/dist/ConfigurationEditorWidget/components/StringArrayEditor.js +81 -0
- 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.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 +25 -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 +20 -13
- 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 +11 -69
- package/src/ConfigurationEditorWidget/components/StringArrayEditor.tsx +115 -0
- package/src/ConfigurationEditorWidget/components/{TypeSelector.js → TypeSelector.tsx} +15 -7
- package/src/ConfigurationEditorWidget/components/__snapshots__/ConfigurationEditor.test.js.snap +883 -691
- package/src/ConfigurationEditorWidget/index.js +2 -2
- 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,467 +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>
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
<li
|
|
314
|
-
class="MuiListItem-root"
|
|
315
|
-
>
|
|
316
|
-
<div
|
|
317
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
318
|
-
>
|
|
319
|
-
<div
|
|
320
|
-
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedEnd"
|
|
321
|
-
>
|
|
322
|
-
<input
|
|
323
|
-
aria-invalid="false"
|
|
324
|
-
class="MuiInputBase-input MuiInput-input MuiInputBase-inputAdornedEnd"
|
|
325
|
-
placeholder="add new"
|
|
326
|
-
type="text"
|
|
327
|
-
value=""
|
|
328
|
-
/>
|
|
329
|
-
<div
|
|
330
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
324
|
+
<fieldset
|
|
325
|
+
aria-hidden="true"
|
|
326
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
331
327
|
>
|
|
332
|
-
<
|
|
333
|
-
class="
|
|
334
|
-
data-testid="stringArrayAdd-stringArrayTest"
|
|
335
|
-
disabled=""
|
|
336
|
-
tabindex="-1"
|
|
337
|
-
type="button"
|
|
328
|
+
<legend
|
|
329
|
+
class="css-hdw1oc"
|
|
338
330
|
>
|
|
339
331
|
<span
|
|
340
|
-
class="
|
|
332
|
+
class="notranslate"
|
|
341
333
|
>
|
|
342
|
-
|
|
343
|
-
aria-hidden="true"
|
|
344
|
-
class="MuiSvgIcon-root"
|
|
345
|
-
focusable="false"
|
|
346
|
-
viewBox="0 0 24 24"
|
|
347
|
-
>
|
|
348
|
-
<path
|
|
349
|
-
d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
350
|
-
/>
|
|
351
|
-
</svg>
|
|
334
|
+
|
|
352
335
|
</span>
|
|
353
|
-
</
|
|
354
|
-
</
|
|
336
|
+
</legend>
|
|
337
|
+
</fieldset>
|
|
355
338
|
</div>
|
|
356
339
|
</div>
|
|
357
340
|
</li>
|
|
341
|
+
<button
|
|
342
|
+
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButtonBase-root css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
343
|
+
style="margin: 4px;"
|
|
344
|
+
tabindex="0"
|
|
345
|
+
type="button"
|
|
346
|
+
>
|
|
347
|
+
Add item
|
|
348
|
+
<span
|
|
349
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
350
|
+
/>
|
|
351
|
+
</button>
|
|
358
352
|
</ul>
|
|
359
353
|
<p
|
|
360
|
-
class="MuiFormHelperText-root"
|
|
354
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
361
355
|
>
|
|
362
356
|
stringArrayTest
|
|
363
357
|
</p>
|
|
364
358
|
</div>
|
|
365
359
|
<div
|
|
366
|
-
class="
|
|
360
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
367
361
|
/>
|
|
368
362
|
</div>
|
|
369
363
|
<div
|
|
370
|
-
class="MuiPaper-root
|
|
364
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
371
365
|
>
|
|
372
366
|
<div
|
|
373
|
-
class="
|
|
367
|
+
class="tss-1962tgi-paperContent"
|
|
374
368
|
>
|
|
375
369
|
<label
|
|
376
|
-
class="
|
|
370
|
+
class="MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-root MuiFormLabel-colorPrimary css-9npbnl-MuiFormLabel-root-MuiInputLabel-root"
|
|
377
371
|
>
|
|
378
372
|
stringArrayMapTest
|
|
379
373
|
</label>
|
|
380
374
|
<div
|
|
381
|
-
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"
|
|
382
376
|
>
|
|
383
377
|
<div
|
|
384
|
-
class="MuiCardHeader-root"
|
|
378
|
+
class="MuiCardHeader-root css-185gdzj-MuiCardHeader-root"
|
|
385
379
|
>
|
|
386
380
|
<div
|
|
387
|
-
class="MuiCardHeader-content"
|
|
381
|
+
class="MuiCardHeader-content css-1qbkelo-MuiCardHeader-content"
|
|
388
382
|
>
|
|
389
383
|
<span
|
|
390
|
-
class="MuiTypography-root MuiCardHeader-title
|
|
384
|
+
class="MuiTypography-root MuiTypography-h5 MuiCardHeader-title css-1qvr50w-MuiTypography-root"
|
|
391
385
|
>
|
|
392
386
|
key1
|
|
393
387
|
</span>
|
|
394
388
|
</div>
|
|
395
389
|
<div
|
|
396
|
-
class="MuiCardHeader-action"
|
|
390
|
+
class="MuiCardHeader-action css-sgoict-MuiCardHeader-action"
|
|
397
391
|
>
|
|
398
392
|
<button
|
|
399
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
393
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
400
394
|
tabindex="0"
|
|
401
395
|
type="button"
|
|
402
396
|
>
|
|
403
|
-
<
|
|
404
|
-
|
|
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"
|
|
405
403
|
>
|
|
406
|
-
<
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
viewBox="0 0 24 24"
|
|
411
|
-
>
|
|
412
|
-
<path
|
|
413
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
414
|
-
/>
|
|
415
|
-
</svg>
|
|
416
|
-
</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>
|
|
417
408
|
<span
|
|
418
|
-
class="MuiTouchRipple-root"
|
|
409
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
419
410
|
/>
|
|
420
411
|
</button>
|
|
421
412
|
</div>
|
|
422
413
|
</div>
|
|
423
414
|
<div
|
|
424
|
-
class="MuiCardContent-root"
|
|
415
|
+
class="MuiCardContent-root css-46bh2p-MuiCardContent-root"
|
|
425
416
|
>
|
|
426
417
|
<ul
|
|
427
|
-
class="MuiList-root"
|
|
418
|
+
class="MuiList-root css-1mk9mw3-MuiList-root"
|
|
428
419
|
>
|
|
429
420
|
<li
|
|
430
|
-
class="MuiListItem-root"
|
|
421
|
+
class="MuiListItem-root MuiListItem-padding css-1tnift2-MuiListItem-root"
|
|
431
422
|
>
|
|
432
423
|
<div
|
|
433
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
424
|
+
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
434
425
|
>
|
|
435
426
|
<div
|
|
436
|
-
class="
|
|
427
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
437
428
|
>
|
|
438
429
|
<input
|
|
439
430
|
aria-invalid="false"
|
|
440
|
-
class="
|
|
431
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
432
|
+
id="mui-6"
|
|
441
433
|
type="text"
|
|
442
434
|
value="string1"
|
|
443
435
|
/>
|
|
444
436
|
<div
|
|
445
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
437
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
446
438
|
>
|
|
447
439
|
<button
|
|
448
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
440
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
449
441
|
tabindex="0"
|
|
450
442
|
type="button"
|
|
451
443
|
>
|
|
452
|
-
<
|
|
453
|
-
|
|
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"
|
|
454
450
|
>
|
|
455
|
-
<
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
viewBox="0 0 24 24"
|
|
460
|
-
>
|
|
461
|
-
<path
|
|
462
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
463
|
-
/>
|
|
464
|
-
</svg>
|
|
465
|
-
</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>
|
|
466
455
|
<span
|
|
467
|
-
class="MuiTouchRipple-root"
|
|
456
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
468
457
|
/>
|
|
469
458
|
</button>
|
|
470
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>
|
|
471
474
|
</div>
|
|
472
475
|
</div>
|
|
473
476
|
</li>
|
|
474
477
|
<li
|
|
475
|
-
class="MuiListItem-root"
|
|
478
|
+
class="MuiListItem-root MuiListItem-padding css-1tnift2-MuiListItem-root"
|
|
476
479
|
>
|
|
477
480
|
<div
|
|
478
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
481
|
+
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
479
482
|
>
|
|
480
483
|
<div
|
|
481
|
-
class="
|
|
484
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
482
485
|
>
|
|
483
486
|
<input
|
|
484
487
|
aria-invalid="false"
|
|
485
|
-
class="
|
|
488
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
489
|
+
id="mui-7"
|
|
486
490
|
type="text"
|
|
487
491
|
value="string2"
|
|
488
492
|
/>
|
|
489
493
|
<div
|
|
490
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
494
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
491
495
|
>
|
|
492
496
|
<button
|
|
493
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
497
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
494
498
|
tabindex="0"
|
|
495
499
|
type="button"
|
|
496
500
|
>
|
|
497
|
-
<
|
|
498
|
-
|
|
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"
|
|
499
507
|
>
|
|
500
|
-
<
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
viewBox="0 0 24 24"
|
|
505
|
-
>
|
|
506
|
-
<path
|
|
507
|
-
d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
|
|
508
|
-
/>
|
|
509
|
-
</svg>
|
|
510
|
-
</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>
|
|
511
512
|
<span
|
|
512
|
-
class="MuiTouchRipple-root"
|
|
513
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
513
514
|
/>
|
|
514
515
|
</button>
|
|
515
516
|
</div>
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
<li
|
|
520
|
-
class="MuiListItem-root"
|
|
521
|
-
>
|
|
522
|
-
<div
|
|
523
|
-
class="MuiFormControl-root MuiTextField-root"
|
|
524
|
-
>
|
|
525
|
-
<div
|
|
526
|
-
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedEnd"
|
|
527
|
-
>
|
|
528
|
-
<input
|
|
529
|
-
aria-invalid="false"
|
|
530
|
-
class="MuiInputBase-input MuiInput-input MuiInputBase-inputAdornedEnd"
|
|
531
|
-
placeholder="add new"
|
|
532
|
-
type="text"
|
|
533
|
-
value=""
|
|
534
|
-
/>
|
|
535
|
-
<div
|
|
536
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
517
|
+
<fieldset
|
|
518
|
+
aria-hidden="true"
|
|
519
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
537
520
|
>
|
|
538
|
-
<
|
|
539
|
-
class="
|
|
540
|
-
data-testid="stringArrayAdd-undefined"
|
|
541
|
-
disabled=""
|
|
542
|
-
tabindex="-1"
|
|
543
|
-
type="button"
|
|
521
|
+
<legend
|
|
522
|
+
class="css-hdw1oc"
|
|
544
523
|
>
|
|
545
524
|
<span
|
|
546
|
-
class="
|
|
525
|
+
class="notranslate"
|
|
547
526
|
>
|
|
548
|
-
|
|
549
|
-
aria-hidden="true"
|
|
550
|
-
class="MuiSvgIcon-root"
|
|
551
|
-
focusable="false"
|
|
552
|
-
viewBox="0 0 24 24"
|
|
553
|
-
>
|
|
554
|
-
<path
|
|
555
|
-
d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
556
|
-
/>
|
|
557
|
-
</svg>
|
|
527
|
+
|
|
558
528
|
</span>
|
|
559
|
-
</
|
|
560
|
-
</
|
|
529
|
+
</legend>
|
|
530
|
+
</fieldset>
|
|
561
531
|
</div>
|
|
562
532
|
</div>
|
|
563
533
|
</li>
|
|
534
|
+
<button
|
|
535
|
+
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButtonBase-root css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
536
|
+
style="margin: 4px;"
|
|
537
|
+
tabindex="0"
|
|
538
|
+
type="button"
|
|
539
|
+
>
|
|
540
|
+
Add item
|
|
541
|
+
<span
|
|
542
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
543
|
+
/>
|
|
544
|
+
</button>
|
|
564
545
|
</ul>
|
|
565
546
|
<p
|
|
566
|
-
class="MuiFormHelperText-root"
|
|
547
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
567
548
|
>
|
|
568
549
|
Values associated with entry key1
|
|
569
550
|
</p>
|
|
570
551
|
</div>
|
|
571
552
|
</div>
|
|
572
553
|
<div
|
|
573
|
-
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"
|
|
574
555
|
>
|
|
575
556
|
<div
|
|
576
|
-
class="MuiCardHeader-root"
|
|
557
|
+
class="MuiCardHeader-root css-185gdzj-MuiCardHeader-root"
|
|
577
558
|
>
|
|
578
559
|
<div
|
|
579
|
-
class="MuiCardHeader-content"
|
|
560
|
+
class="MuiCardHeader-content css-1qbkelo-MuiCardHeader-content"
|
|
580
561
|
>
|
|
581
562
|
<div
|
|
582
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
563
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
583
564
|
>
|
|
584
565
|
<div
|
|
585
|
-
class="
|
|
566
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
|
|
586
567
|
>
|
|
587
568
|
<input
|
|
588
569
|
aria-invalid="false"
|
|
589
|
-
class="
|
|
570
|
+
class="MuiOutlinedInput-input MuiInputBase-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
571
|
+
id="mui-8"
|
|
590
572
|
placeholder="add new"
|
|
591
573
|
type="text"
|
|
592
574
|
value=""
|
|
593
575
|
/>
|
|
594
576
|
<div
|
|
595
|
-
class="MuiInputAdornment-root MuiInputAdornment-positionEnd"
|
|
577
|
+
class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeMedium css-1laqsz7-MuiInputAdornment-root"
|
|
596
578
|
>
|
|
597
579
|
<button
|
|
598
|
-
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"
|
|
599
581
|
disabled=""
|
|
600
582
|
tabindex="-1"
|
|
601
583
|
type="button"
|
|
602
584
|
>
|
|
603
|
-
<
|
|
604
|
-
|
|
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"
|
|
605
591
|
>
|
|
606
|
-
<
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
viewBox="0 0 24 24"
|
|
611
|
-
>
|
|
612
|
-
<path
|
|
613
|
-
d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
614
|
-
/>
|
|
615
|
-
</svg>
|
|
616
|
-
</span>
|
|
592
|
+
<path
|
|
593
|
+
d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
|
|
594
|
+
/>
|
|
595
|
+
</svg>
|
|
617
596
|
</button>
|
|
618
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>
|
|
619
612
|
</div>
|
|
620
613
|
</div>
|
|
621
614
|
</div>
|
|
622
615
|
</div>
|
|
623
616
|
</div>
|
|
624
617
|
<p
|
|
625
|
-
class="MuiFormHelperText-root"
|
|
618
|
+
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
626
619
|
>
|
|
627
620
|
stringArrayMapTest
|
|
628
621
|
</p>
|
|
629
622
|
</div>
|
|
630
623
|
<div
|
|
631
|
-
class="
|
|
624
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
632
625
|
/>
|
|
633
626
|
</div>
|
|
634
627
|
<div
|
|
635
|
-
class="MuiPaper-root
|
|
628
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
636
629
|
>
|
|
637
630
|
<div
|
|
638
|
-
class="
|
|
631
|
+
class="tss-1962tgi-paperContent"
|
|
639
632
|
>
|
|
640
633
|
<div
|
|
641
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
634
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
642
635
|
>
|
|
643
636
|
<label
|
|
644
|
-
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"
|
|
645
638
|
data-shrink="true"
|
|
639
|
+
for="mui-9"
|
|
640
|
+
id="mui-9-label"
|
|
646
641
|
>
|
|
647
642
|
numberTest
|
|
648
643
|
</label>
|
|
649
644
|
<div
|
|
650
|
-
class="
|
|
645
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
651
646
|
>
|
|
652
647
|
<input
|
|
648
|
+
aria-describedby="mui-9-helper-text"
|
|
653
649
|
aria-invalid="false"
|
|
654
|
-
class="MuiInputBase-input
|
|
650
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
651
|
+
id="mui-9"
|
|
655
652
|
type="number"
|
|
656
653
|
value="88.5"
|
|
657
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>
|
|
658
667
|
</div>
|
|
659
668
|
<div
|
|
660
|
-
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"
|
|
661
671
|
>
|
|
662
672
|
<div>
|
|
663
673
|
numberTest
|
|
@@ -666,36 +676,53 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
666
676
|
</div>
|
|
667
677
|
</div>
|
|
668
678
|
<div
|
|
669
|
-
class="
|
|
679
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
670
680
|
/>
|
|
671
681
|
</div>
|
|
672
682
|
<div
|
|
673
|
-
class="MuiPaper-root
|
|
683
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
674
684
|
>
|
|
675
685
|
<div
|
|
676
|
-
class="
|
|
686
|
+
class="tss-1962tgi-paperContent"
|
|
677
687
|
>
|
|
678
688
|
<div
|
|
679
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
689
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
680
690
|
>
|
|
681
691
|
<label
|
|
682
|
-
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"
|
|
683
693
|
data-shrink="true"
|
|
694
|
+
for="mui-10"
|
|
695
|
+
id="mui-10-label"
|
|
684
696
|
>
|
|
685
697
|
integerTest
|
|
686
698
|
</label>
|
|
687
699
|
<div
|
|
688
|
-
class="
|
|
700
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
689
701
|
>
|
|
690
702
|
<input
|
|
703
|
+
aria-describedby="mui-10-helper-text"
|
|
691
704
|
aria-invalid="false"
|
|
692
|
-
class="MuiInputBase-input
|
|
705
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
706
|
+
id="mui-10"
|
|
693
707
|
type="number"
|
|
694
708
|
value="42"
|
|
695
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>
|
|
696
722
|
</div>
|
|
697
723
|
<div
|
|
698
|
-
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"
|
|
699
726
|
>
|
|
700
727
|
<div>
|
|
701
728
|
integerTest
|
|
@@ -704,102 +731,114 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
704
731
|
</div>
|
|
705
732
|
</div>
|
|
706
733
|
<div
|
|
707
|
-
class="
|
|
734
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
708
735
|
/>
|
|
709
736
|
</div>
|
|
710
737
|
<div
|
|
711
|
-
class="MuiPaper-root
|
|
738
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
712
739
|
>
|
|
713
740
|
<div
|
|
714
|
-
class="
|
|
741
|
+
class="tss-1962tgi-paperContent"
|
|
715
742
|
>
|
|
716
743
|
<div
|
|
717
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
744
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
718
745
|
>
|
|
719
746
|
<label
|
|
720
|
-
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"
|
|
721
748
|
data-shrink="true"
|
|
749
|
+
for="mui-11"
|
|
750
|
+
id="mui-11-label"
|
|
722
751
|
>
|
|
723
752
|
colorTest
|
|
724
753
|
</label>
|
|
725
754
|
<div
|
|
726
|
-
class="
|
|
755
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
727
756
|
style="color: rgb(57, 100, 148); border-right-width: 25px; border-right-style: solid; border-right-color: #396494;"
|
|
728
757
|
>
|
|
729
758
|
<input
|
|
759
|
+
aria-describedby="mui-11-helper-text"
|
|
730
760
|
aria-invalid="false"
|
|
731
|
-
class="MuiInputBase-input
|
|
761
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
762
|
+
id="mui-11"
|
|
732
763
|
type="text"
|
|
733
764
|
value="#396494"
|
|
734
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>
|
|
735
778
|
</div>
|
|
736
779
|
<p
|
|
737
|
-
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"
|
|
738
782
|
>
|
|
739
783
|
colorTest
|
|
740
784
|
</p>
|
|
741
785
|
</div>
|
|
742
786
|
</div>
|
|
743
787
|
<div
|
|
744
|
-
class="
|
|
788
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
745
789
|
/>
|
|
746
790
|
</div>
|
|
747
791
|
<div
|
|
748
|
-
class="MuiPaper-root
|
|
792
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
749
793
|
>
|
|
750
794
|
<div
|
|
751
|
-
class="
|
|
795
|
+
class="tss-1962tgi-paperContent"
|
|
752
796
|
>
|
|
753
797
|
<div
|
|
754
|
-
class="MuiFormControl-root"
|
|
798
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
755
799
|
>
|
|
756
800
|
<label
|
|
757
|
-
class="MuiFormControlLabel-root"
|
|
801
|
+
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
758
802
|
>
|
|
759
803
|
<span
|
|
760
|
-
|
|
761
|
-
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"
|
|
762
805
|
>
|
|
763
|
-
<
|
|
764
|
-
|
|
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"
|
|
765
818
|
>
|
|
766
|
-
<
|
|
767
|
-
|
|
768
|
-
class="PrivateSwitchBase-input"
|
|
769
|
-
data-indeterminate="false"
|
|
770
|
-
type="checkbox"
|
|
771
|
-
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"
|
|
772
821
|
/>
|
|
773
|
-
|
|
774
|
-
aria-hidden="true"
|
|
775
|
-
class="MuiSvgIcon-root"
|
|
776
|
-
focusable="false"
|
|
777
|
-
viewBox="0 0 24 24"
|
|
778
|
-
>
|
|
779
|
-
<path
|
|
780
|
-
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"
|
|
781
|
-
/>
|
|
782
|
-
</svg>
|
|
783
|
-
</span>
|
|
822
|
+
</svg>
|
|
784
823
|
<span
|
|
785
|
-
class="MuiTouchRipple-root"
|
|
824
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
786
825
|
/>
|
|
787
826
|
</span>
|
|
788
827
|
<span
|
|
789
|
-
class="MuiTypography-root MuiFormControlLabel-label MuiTypography-
|
|
828
|
+
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label css-ahj2mt-MuiTypography-root"
|
|
790
829
|
>
|
|
791
830
|
booleanTest
|
|
792
831
|
</span>
|
|
793
832
|
</label>
|
|
794
833
|
<p
|
|
795
|
-
class="MuiFormHelperText-root"
|
|
834
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
796
835
|
>
|
|
797
836
|
booleanTest
|
|
798
837
|
</p>
|
|
799
838
|
</div>
|
|
800
839
|
</div>
|
|
801
840
|
<div
|
|
802
|
-
class="
|
|
841
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
803
842
|
/>
|
|
804
843
|
</div>
|
|
805
844
|
</div>
|
|
@@ -812,92 +851,101 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
812
851
|
|
|
813
852
|
exports[`ConfigurationEditor widget renders with defaults of the PileupTrack schema 1`] = `
|
|
814
853
|
<div
|
|
815
|
-
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"
|
|
816
855
|
>
|
|
817
856
|
<div
|
|
818
|
-
aria-disabled="false"
|
|
819
857
|
aria-expanded="true"
|
|
820
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
858
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
821
859
|
role="button"
|
|
822
860
|
tabindex="0"
|
|
823
861
|
>
|
|
824
862
|
<div
|
|
825
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
863
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
826
864
|
>
|
|
827
865
|
<p
|
|
828
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
866
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
829
867
|
>
|
|
830
868
|
Configuration
|
|
831
869
|
</p>
|
|
832
870
|
</div>
|
|
833
871
|
<div
|
|
834
|
-
|
|
835
|
-
aria-hidden="true"
|
|
836
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
872
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
837
873
|
>
|
|
838
|
-
<
|
|
839
|
-
|
|
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"
|
|
840
880
|
>
|
|
841
|
-
<
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
viewBox="0 0 24 24"
|
|
846
|
-
>
|
|
847
|
-
<path
|
|
848
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
849
|
-
/>
|
|
850
|
-
</svg>
|
|
851
|
-
</span>
|
|
852
|
-
<span
|
|
853
|
-
class="MuiTouchRipple-root"
|
|
854
|
-
/>
|
|
881
|
+
<path
|
|
882
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
883
|
+
/>
|
|
884
|
+
</svg>
|
|
855
885
|
</div>
|
|
856
886
|
</div>
|
|
857
887
|
<div
|
|
858
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
888
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
859
889
|
style="min-height: 0px;"
|
|
860
890
|
>
|
|
861
891
|
<div
|
|
862
|
-
class="MuiCollapse-wrapper"
|
|
892
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
863
893
|
>
|
|
864
894
|
<div
|
|
865
|
-
class="MuiCollapse-wrapperInner"
|
|
895
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
866
896
|
>
|
|
867
897
|
<div
|
|
898
|
+
class="MuiAccordion-region"
|
|
868
899
|
role="region"
|
|
869
900
|
>
|
|
870
901
|
<div
|
|
871
|
-
class="MuiAccordionDetails-root
|
|
902
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
872
903
|
data-testid="configEditor"
|
|
873
904
|
>
|
|
874
905
|
<div
|
|
875
|
-
class="MuiPaper-root
|
|
906
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
876
907
|
>
|
|
877
908
|
<div
|
|
878
|
-
class="
|
|
909
|
+
class="tss-1962tgi-paperContent"
|
|
879
910
|
>
|
|
880
911
|
<div
|
|
881
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
912
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
882
913
|
>
|
|
883
914
|
<label
|
|
884
|
-
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"
|
|
885
916
|
data-shrink="true"
|
|
917
|
+
for="mui-12"
|
|
918
|
+
id="mui-12-label"
|
|
886
919
|
>
|
|
887
920
|
maxFeatureScreenDensity
|
|
888
921
|
</label>
|
|
889
922
|
<div
|
|
890
|
-
class="
|
|
923
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
891
924
|
>
|
|
892
925
|
<input
|
|
926
|
+
aria-describedby="mui-12-helper-text"
|
|
893
927
|
aria-invalid="false"
|
|
894
|
-
class="MuiInputBase-input
|
|
928
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
929
|
+
id="mui-12"
|
|
895
930
|
type="number"
|
|
896
931
|
value="0.3"
|
|
897
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>
|
|
898
945
|
</div>
|
|
899
946
|
<div
|
|
900
|
-
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"
|
|
901
949
|
>
|
|
902
950
|
<div>
|
|
903
951
|
maximum features per pixel that is displayed in the view, used if byte size estimates not available
|
|
@@ -906,36 +954,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
906
954
|
</div>
|
|
907
955
|
</div>
|
|
908
956
|
<div
|
|
909
|
-
class="
|
|
957
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
910
958
|
/>
|
|
911
959
|
</div>
|
|
912
960
|
<div
|
|
913
|
-
class="MuiPaper-root
|
|
961
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
914
962
|
>
|
|
915
963
|
<div
|
|
916
|
-
class="
|
|
964
|
+
class="tss-1962tgi-paperContent"
|
|
917
965
|
>
|
|
918
966
|
<div
|
|
919
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
967
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
920
968
|
>
|
|
921
969
|
<label
|
|
922
|
-
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"
|
|
923
971
|
data-shrink="true"
|
|
972
|
+
for="mui-13"
|
|
973
|
+
id="mui-13-label"
|
|
924
974
|
>
|
|
925
975
|
fetchSizeLimit
|
|
926
976
|
</label>
|
|
927
977
|
<div
|
|
928
|
-
class="
|
|
978
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
929
979
|
>
|
|
930
980
|
<input
|
|
981
|
+
aria-describedby="mui-13-helper-text"
|
|
931
982
|
aria-invalid="false"
|
|
932
|
-
class="MuiInputBase-input
|
|
983
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
984
|
+
id="mui-13"
|
|
933
985
|
type="number"
|
|
934
986
|
value="1000000"
|
|
935
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>
|
|
936
1000
|
</div>
|
|
937
1001
|
<div
|
|
938
|
-
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"
|
|
939
1004
|
>
|
|
940
1005
|
<div>
|
|
941
1006
|
maximum data to attempt to download for a given track, used if adapter doesn't specify one
|
|
@@ -944,218 +1009,194 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
944
1009
|
</div>
|
|
945
1010
|
</div>
|
|
946
1011
|
<div
|
|
947
|
-
class="
|
|
1012
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
948
1013
|
/>
|
|
949
1014
|
</div>
|
|
950
1015
|
<div
|
|
951
|
-
class="MuiPaper-root
|
|
1016
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
952
1017
|
>
|
|
953
1018
|
<div
|
|
954
|
-
class="
|
|
1019
|
+
class="tss-1962tgi-paperContent"
|
|
955
1020
|
>
|
|
956
1021
|
<div
|
|
957
|
-
class="MuiFormControl-root"
|
|
1022
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
958
1023
|
>
|
|
959
1024
|
<label
|
|
960
|
-
class="
|
|
1025
|
+
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
961
1026
|
data-shrink="true"
|
|
962
1027
|
for="callback-editor"
|
|
963
1028
|
>
|
|
964
1029
|
mouseover
|
|
965
1030
|
</label>
|
|
966
1031
|
<div
|
|
967
|
-
class="
|
|
968
|
-
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"
|
|
969
1033
|
>
|
|
970
|
-
<
|
|
971
|
-
|
|
972
|
-
autocomplete="off"
|
|
973
|
-
autocorrect="off"
|
|
974
|
-
class="npm__react-simple-code-editor__textarea"
|
|
975
|
-
data-gramm="false"
|
|
976
|
-
spellcheck="false"
|
|
977
|
-
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;"
|
|
978
|
-
>
|
|
979
|
-
get(feature,'name')
|
|
980
|
-
</textarea>
|
|
981
|
-
<pre
|
|
982
|
-
aria-hidden="true"
|
|
983
|
-
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;"
|
|
984
|
-
>
|
|
985
|
-
get(feature,'name')
|
|
986
|
-
<br />
|
|
987
|
-
</pre>
|
|
988
|
-
<style
|
|
989
|
-
type="text/css"
|
|
1034
|
+
<div
|
|
1035
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-multiline css-dpjnhs-MuiInputBase-root-MuiOutlinedInput-root"
|
|
990
1036
|
>
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
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>
|
|
1019
1067
|
</div>
|
|
1020
1068
|
<p
|
|
1021
|
-
class="MuiFormHelperText-root"
|
|
1069
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
1022
1070
|
>
|
|
1023
1071
|
what to display in a given mouseover
|
|
1024
1072
|
</p>
|
|
1025
1073
|
</div>
|
|
1026
1074
|
<button
|
|
1027
|
-
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"
|
|
1028
1077
|
tabindex="0"
|
|
1029
1078
|
type="button"
|
|
1030
1079
|
>
|
|
1031
|
-
<
|
|
1032
|
-
|
|
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"
|
|
1033
1086
|
>
|
|
1034
|
-
<
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
viewBox="0 0 24 24"
|
|
1039
|
-
>
|
|
1040
|
-
<path
|
|
1041
|
-
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"
|
|
1042
|
-
/>
|
|
1043
|
-
</svg>
|
|
1044
|
-
</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>
|
|
1045
1091
|
<span
|
|
1046
|
-
class="MuiTouchRipple-root"
|
|
1092
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1047
1093
|
/>
|
|
1048
1094
|
</button>
|
|
1049
1095
|
</div>
|
|
1050
1096
|
<div
|
|
1051
|
-
class="
|
|
1097
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1052
1098
|
>
|
|
1053
1099
|
<button
|
|
1054
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
1100
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
1055
1101
|
tabindex="0"
|
|
1056
1102
|
title="convert to regular value"
|
|
1057
1103
|
type="button"
|
|
1058
1104
|
>
|
|
1059
|
-
<
|
|
1060
|
-
|
|
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"
|
|
1061
1110
|
>
|
|
1062
|
-
<
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
viewBox="0 0 24 24"
|
|
1067
|
-
>
|
|
1068
|
-
<path
|
|
1069
|
-
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"
|
|
1070
|
-
/>
|
|
1071
|
-
</svg>
|
|
1072
|
-
</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>
|
|
1073
1115
|
<span
|
|
1074
|
-
class="MuiTouchRipple-root"
|
|
1116
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1075
1117
|
/>
|
|
1076
1118
|
</button>
|
|
1077
1119
|
</div>
|
|
1078
1120
|
</div>
|
|
1079
1121
|
<div
|
|
1080
|
-
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"
|
|
1081
1123
|
>
|
|
1082
1124
|
<div
|
|
1083
|
-
aria-disabled="false"
|
|
1084
1125
|
aria-expanded="true"
|
|
1085
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
1126
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
1086
1127
|
role="button"
|
|
1087
1128
|
tabindex="0"
|
|
1088
1129
|
>
|
|
1089
1130
|
<div
|
|
1090
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
1131
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
1091
1132
|
>
|
|
1092
1133
|
<p
|
|
1093
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
1134
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
1094
1135
|
>
|
|
1095
1136
|
renderer
|
|
1096
1137
|
</p>
|
|
1097
1138
|
</div>
|
|
1098
1139
|
<div
|
|
1099
|
-
|
|
1100
|
-
aria-hidden="true"
|
|
1101
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
1140
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
1102
1141
|
>
|
|
1103
|
-
<
|
|
1104
|
-
|
|
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"
|
|
1105
1148
|
>
|
|
1106
|
-
<
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
viewBox="0 0 24 24"
|
|
1111
|
-
>
|
|
1112
|
-
<path
|
|
1113
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1114
|
-
/>
|
|
1115
|
-
</svg>
|
|
1116
|
-
</span>
|
|
1117
|
-
<span
|
|
1118
|
-
class="MuiTouchRipple-root"
|
|
1119
|
-
/>
|
|
1149
|
+
<path
|
|
1150
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1151
|
+
/>
|
|
1152
|
+
</svg>
|
|
1120
1153
|
</div>
|
|
1121
1154
|
</div>
|
|
1122
1155
|
<div
|
|
1123
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
1156
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
1124
1157
|
style="min-height: 0px;"
|
|
1125
1158
|
>
|
|
1126
1159
|
<div
|
|
1127
|
-
class="MuiCollapse-wrapper"
|
|
1160
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
1128
1161
|
>
|
|
1129
1162
|
<div
|
|
1130
|
-
class="MuiCollapse-wrapperInner"
|
|
1163
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
1131
1164
|
>
|
|
1132
1165
|
<div
|
|
1166
|
+
class="MuiAccordion-region"
|
|
1133
1167
|
role="region"
|
|
1134
1168
|
>
|
|
1135
1169
|
<div
|
|
1136
|
-
class="MuiAccordionDetails-root
|
|
1170
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
1137
1171
|
>
|
|
1138
1172
|
<div
|
|
1139
|
-
class="MuiPaper-root
|
|
1173
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1140
1174
|
>
|
|
1141
1175
|
<div
|
|
1142
|
-
class="
|
|
1176
|
+
class="tss-1962tgi-paperContent"
|
|
1143
1177
|
>
|
|
1144
1178
|
<div
|
|
1145
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1179
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1146
1180
|
>
|
|
1147
1181
|
<label
|
|
1148
|
-
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"
|
|
1149
1183
|
data-shrink="true"
|
|
1184
|
+
for="mui-16"
|
|
1185
|
+
id="mui-16-label"
|
|
1150
1186
|
>
|
|
1151
1187
|
Type
|
|
1152
1188
|
</label>
|
|
1153
1189
|
<div
|
|
1154
|
-
class="
|
|
1190
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1191
|
+
variant="outlined"
|
|
1155
1192
|
>
|
|
1156
1193
|
<div
|
|
1194
|
+
aria-describedby="mui-16-helper-text"
|
|
1195
|
+
aria-expanded="false"
|
|
1157
1196
|
aria-haspopup="listbox"
|
|
1158
|
-
|
|
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"
|
|
1159
1200
|
role="button"
|
|
1160
1201
|
tabindex="0"
|
|
1161
1202
|
>
|
|
@@ -1163,13 +1204,14 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1163
1204
|
</div>
|
|
1164
1205
|
<input
|
|
1165
1206
|
aria-hidden="true"
|
|
1166
|
-
class="MuiSelect-nativeInput"
|
|
1207
|
+
class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput"
|
|
1167
1208
|
tabindex="-1"
|
|
1168
1209
|
value="PileupRenderer"
|
|
1169
1210
|
/>
|
|
1170
1211
|
<svg
|
|
1171
1212
|
aria-hidden="true"
|
|
1172
|
-
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"
|
|
1173
1215
|
focusable="false"
|
|
1174
1216
|
viewBox="0 0 24 24"
|
|
1175
1217
|
>
|
|
@@ -1177,9 +1219,22 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1177
1219
|
d="M7 10l5 5 5-5z"
|
|
1178
1220
|
/>
|
|
1179
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>
|
|
1180
1234
|
</div>
|
|
1181
1235
|
<p
|
|
1182
|
-
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"
|
|
1183
1238
|
>
|
|
1184
1239
|
Type of renderer to use
|
|
1185
1240
|
</p>
|
|
@@ -1187,91 +1242,112 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1187
1242
|
</div>
|
|
1188
1243
|
</div>
|
|
1189
1244
|
<div
|
|
1190
|
-
class="MuiFormGroup-root"
|
|
1245
|
+
class="MuiFormGroup-root css-dmmspl-MuiFormGroup-root"
|
|
1191
1246
|
>
|
|
1192
1247
|
<div
|
|
1193
|
-
class="MuiPaper-root
|
|
1248
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1194
1249
|
>
|
|
1195
1250
|
<div
|
|
1196
|
-
class="
|
|
1251
|
+
class="tss-1962tgi-paperContent"
|
|
1197
1252
|
>
|
|
1198
1253
|
<div
|
|
1199
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1254
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1200
1255
|
>
|
|
1201
1256
|
<label
|
|
1202
|
-
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"
|
|
1203
1258
|
data-shrink="true"
|
|
1259
|
+
for="mui-17"
|
|
1260
|
+
id="mui-17-label"
|
|
1204
1261
|
>
|
|
1205
1262
|
color
|
|
1206
1263
|
</label>
|
|
1207
1264
|
<div
|
|
1208
|
-
class="
|
|
1265
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1209
1266
|
style="color: rgb(255, 0, 255); border-right-width: 25px; border-right-style: solid; border-right-color: #f0f;"
|
|
1210
1267
|
>
|
|
1211
1268
|
<input
|
|
1269
|
+
aria-describedby="mui-17-helper-text"
|
|
1212
1270
|
aria-invalid="false"
|
|
1213
|
-
class="MuiInputBase-input
|
|
1271
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1272
|
+
id="mui-17"
|
|
1214
1273
|
type="text"
|
|
1215
1274
|
value="#f0f"
|
|
1216
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>
|
|
1217
1288
|
</div>
|
|
1218
1289
|
<p
|
|
1219
|
-
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"
|
|
1220
1292
|
>
|
|
1221
1293
|
the color of each feature in a pileup alignment
|
|
1222
1294
|
</p>
|
|
1223
1295
|
</div>
|
|
1224
1296
|
</div>
|
|
1225
1297
|
<div
|
|
1226
|
-
class="
|
|
1298
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1227
1299
|
>
|
|
1228
1300
|
<button
|
|
1229
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
1301
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
1230
1302
|
tabindex="0"
|
|
1231
1303
|
title="convert to callback"
|
|
1232
1304
|
type="button"
|
|
1233
1305
|
>
|
|
1234
|
-
<
|
|
1235
|
-
|
|
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"
|
|
1236
1312
|
>
|
|
1237
|
-
<
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
viewBox="0 0 24 24"
|
|
1242
|
-
>
|
|
1243
|
-
<path
|
|
1244
|
-
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"
|
|
1245
|
-
/>
|
|
1246
|
-
</svg>
|
|
1247
|
-
</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>
|
|
1248
1317
|
<span
|
|
1249
|
-
class="MuiTouchRipple-root"
|
|
1318
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1250
1319
|
/>
|
|
1251
1320
|
</button>
|
|
1252
1321
|
</div>
|
|
1253
1322
|
</div>
|
|
1254
1323
|
<div
|
|
1255
|
-
class="MuiPaper-root
|
|
1324
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1256
1325
|
>
|
|
1257
1326
|
<div
|
|
1258
|
-
class="
|
|
1327
|
+
class="tss-1962tgi-paperContent"
|
|
1259
1328
|
>
|
|
1260
1329
|
<div
|
|
1261
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1330
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1262
1331
|
>
|
|
1263
1332
|
<label
|
|
1264
|
-
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"
|
|
1265
1334
|
data-shrink="true"
|
|
1335
|
+
for="mui-18"
|
|
1336
|
+
id="mui-18-label"
|
|
1266
1337
|
>
|
|
1267
1338
|
orientationType
|
|
1268
1339
|
</label>
|
|
1269
1340
|
<div
|
|
1270
|
-
class="
|
|
1341
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1342
|
+
variant="outlined"
|
|
1271
1343
|
>
|
|
1272
1344
|
<div
|
|
1345
|
+
aria-describedby="mui-18-helper-text"
|
|
1346
|
+
aria-expanded="false"
|
|
1273
1347
|
aria-haspopup="listbox"
|
|
1274
|
-
|
|
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"
|
|
1275
1351
|
role="button"
|
|
1276
1352
|
tabindex="0"
|
|
1277
1353
|
>
|
|
@@ -1279,13 +1355,14 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1279
1355
|
</div>
|
|
1280
1356
|
<input
|
|
1281
1357
|
aria-hidden="true"
|
|
1282
|
-
class="MuiSelect-nativeInput"
|
|
1358
|
+
class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput"
|
|
1283
1359
|
tabindex="-1"
|
|
1284
1360
|
value="fr"
|
|
1285
1361
|
/>
|
|
1286
1362
|
<svg
|
|
1287
1363
|
aria-hidden="true"
|
|
1288
|
-
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"
|
|
1289
1366
|
focusable="false"
|
|
1290
1367
|
viewBox="0 0 24 24"
|
|
1291
1368
|
>
|
|
@@ -1293,9 +1370,22 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1293
1370
|
d="M7 10l5 5 5-5z"
|
|
1294
1371
|
/>
|
|
1295
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>
|
|
1296
1385
|
</div>
|
|
1297
1386
|
<div
|
|
1298
|
-
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"
|
|
1299
1389
|
>
|
|
1300
1390
|
<div>
|
|
1301
1391
|
read sequencer orienation. fr is normal "reads pointing at each other ---> <--- while some other sequencers can use other options
|
|
@@ -1304,30 +1394,37 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1304
1394
|
</div>
|
|
1305
1395
|
</div>
|
|
1306
1396
|
<div
|
|
1307
|
-
class="
|
|
1397
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1308
1398
|
/>
|
|
1309
1399
|
</div>
|
|
1310
1400
|
<div
|
|
1311
|
-
class="MuiPaper-root
|
|
1401
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1312
1402
|
>
|
|
1313
1403
|
<div
|
|
1314
|
-
class="
|
|
1404
|
+
class="tss-1962tgi-paperContent"
|
|
1315
1405
|
>
|
|
1316
1406
|
<div
|
|
1317
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1407
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1318
1408
|
>
|
|
1319
1409
|
<label
|
|
1320
|
-
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"
|
|
1321
1411
|
data-shrink="true"
|
|
1412
|
+
for="mui-19"
|
|
1413
|
+
id="mui-19-label"
|
|
1322
1414
|
>
|
|
1323
1415
|
displayMode
|
|
1324
1416
|
</label>
|
|
1325
1417
|
<div
|
|
1326
|
-
class="
|
|
1418
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1419
|
+
variant="outlined"
|
|
1327
1420
|
>
|
|
1328
1421
|
<div
|
|
1422
|
+
aria-describedby="mui-19-helper-text"
|
|
1423
|
+
aria-expanded="false"
|
|
1329
1424
|
aria-haspopup="listbox"
|
|
1330
|
-
|
|
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"
|
|
1331
1428
|
role="button"
|
|
1332
1429
|
tabindex="0"
|
|
1333
1430
|
>
|
|
@@ -1335,13 +1432,14 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1335
1432
|
</div>
|
|
1336
1433
|
<input
|
|
1337
1434
|
aria-hidden="true"
|
|
1338
|
-
class="MuiSelect-nativeInput"
|
|
1435
|
+
class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput"
|
|
1339
1436
|
tabindex="-1"
|
|
1340
1437
|
value="normal"
|
|
1341
1438
|
/>
|
|
1342
1439
|
<svg
|
|
1343
1440
|
aria-hidden="true"
|
|
1344
|
-
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"
|
|
1345
1443
|
focusable="false"
|
|
1346
1444
|
viewBox="0 0 24 24"
|
|
1347
1445
|
>
|
|
@@ -1349,9 +1447,22 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1349
1447
|
d="M7 10l5 5 5-5z"
|
|
1350
1448
|
/>
|
|
1351
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>
|
|
1352
1462
|
</div>
|
|
1353
1463
|
<div
|
|
1354
|
-
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"
|
|
1355
1466
|
>
|
|
1356
1467
|
<div>
|
|
1357
1468
|
Alternative display modes
|
|
@@ -1360,36 +1471,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1360
1471
|
</div>
|
|
1361
1472
|
</div>
|
|
1362
1473
|
<div
|
|
1363
|
-
class="
|
|
1474
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1364
1475
|
/>
|
|
1365
1476
|
</div>
|
|
1366
1477
|
<div
|
|
1367
|
-
class="MuiPaper-root
|
|
1478
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1368
1479
|
>
|
|
1369
1480
|
<div
|
|
1370
|
-
class="
|
|
1481
|
+
class="tss-1962tgi-paperContent"
|
|
1371
1482
|
>
|
|
1372
1483
|
<div
|
|
1373
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1484
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1374
1485
|
>
|
|
1375
1486
|
<label
|
|
1376
|
-
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"
|
|
1377
1488
|
data-shrink="true"
|
|
1489
|
+
for="mui-20"
|
|
1490
|
+
id="mui-20-label"
|
|
1378
1491
|
>
|
|
1379
1492
|
minSubfeatureWidth
|
|
1380
1493
|
</label>
|
|
1381
1494
|
<div
|
|
1382
|
-
class="
|
|
1495
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1383
1496
|
>
|
|
1384
1497
|
<input
|
|
1498
|
+
aria-describedby="mui-20-helper-text"
|
|
1385
1499
|
aria-invalid="false"
|
|
1386
|
-
class="MuiInputBase-input
|
|
1500
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1501
|
+
id="mui-20"
|
|
1387
1502
|
type="number"
|
|
1388
1503
|
value="0.7"
|
|
1389
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>
|
|
1390
1517
|
</div>
|
|
1391
1518
|
<div
|
|
1392
|
-
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"
|
|
1393
1521
|
>
|
|
1394
1522
|
<div>
|
|
1395
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
|
|
@@ -1398,36 +1526,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1398
1526
|
</div>
|
|
1399
1527
|
</div>
|
|
1400
1528
|
<div
|
|
1401
|
-
class="
|
|
1529
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1402
1530
|
/>
|
|
1403
1531
|
</div>
|
|
1404
1532
|
<div
|
|
1405
|
-
class="MuiPaper-root
|
|
1533
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1406
1534
|
>
|
|
1407
1535
|
<div
|
|
1408
|
-
class="
|
|
1536
|
+
class="tss-1962tgi-paperContent"
|
|
1409
1537
|
>
|
|
1410
1538
|
<div
|
|
1411
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1539
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1412
1540
|
>
|
|
1413
1541
|
<label
|
|
1414
|
-
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"
|
|
1415
1543
|
data-shrink="true"
|
|
1544
|
+
for="mui-21"
|
|
1545
|
+
id="mui-21-label"
|
|
1416
1546
|
>
|
|
1417
1547
|
maxHeight
|
|
1418
1548
|
</label>
|
|
1419
1549
|
<div
|
|
1420
|
-
class="
|
|
1550
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1421
1551
|
>
|
|
1422
1552
|
<input
|
|
1553
|
+
aria-describedby="mui-21-helper-text"
|
|
1423
1554
|
aria-invalid="false"
|
|
1424
|
-
class="MuiInputBase-input
|
|
1555
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1556
|
+
id="mui-21"
|
|
1425
1557
|
type="number"
|
|
1426
1558
|
value="1200"
|
|
1427
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>
|
|
1428
1572
|
</div>
|
|
1429
1573
|
<div
|
|
1430
|
-
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"
|
|
1431
1576
|
>
|
|
1432
1577
|
<div>
|
|
1433
1578
|
the maximum height to be used in a pileup rendering
|
|
@@ -1436,36 +1581,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1436
1581
|
</div>
|
|
1437
1582
|
</div>
|
|
1438
1583
|
<div
|
|
1439
|
-
class="
|
|
1584
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1440
1585
|
/>
|
|
1441
1586
|
</div>
|
|
1442
1587
|
<div
|
|
1443
|
-
class="MuiPaper-root
|
|
1588
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1444
1589
|
>
|
|
1445
1590
|
<div
|
|
1446
|
-
class="
|
|
1591
|
+
class="tss-1962tgi-paperContent"
|
|
1447
1592
|
>
|
|
1448
1593
|
<div
|
|
1449
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1594
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1450
1595
|
>
|
|
1451
1596
|
<label
|
|
1452
|
-
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"
|
|
1453
1598
|
data-shrink="true"
|
|
1599
|
+
for="mui-22"
|
|
1600
|
+
id="mui-22-label"
|
|
1454
1601
|
>
|
|
1455
1602
|
maxClippingSize
|
|
1456
1603
|
</label>
|
|
1457
1604
|
<div
|
|
1458
|
-
class="
|
|
1605
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1459
1606
|
>
|
|
1460
1607
|
<input
|
|
1608
|
+
aria-describedby="mui-22-helper-text"
|
|
1461
1609
|
aria-invalid="false"
|
|
1462
|
-
class="MuiInputBase-input
|
|
1610
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1611
|
+
id="mui-22"
|
|
1463
1612
|
type="number"
|
|
1464
1613
|
value="10000"
|
|
1465
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>
|
|
1466
1627
|
</div>
|
|
1467
1628
|
<div
|
|
1468
|
-
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"
|
|
1469
1631
|
>
|
|
1470
1632
|
<div>
|
|
1471
1633
|
the max clip size to be used in a pileup rendering
|
|
@@ -1474,36 +1636,53 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1474
1636
|
</div>
|
|
1475
1637
|
</div>
|
|
1476
1638
|
<div
|
|
1477
|
-
class="
|
|
1639
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1478
1640
|
/>
|
|
1479
1641
|
</div>
|
|
1480
1642
|
<div
|
|
1481
|
-
class="MuiPaper-root
|
|
1643
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1482
1644
|
>
|
|
1483
1645
|
<div
|
|
1484
|
-
class="
|
|
1646
|
+
class="tss-1962tgi-paperContent"
|
|
1485
1647
|
>
|
|
1486
1648
|
<div
|
|
1487
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1649
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1488
1650
|
>
|
|
1489
1651
|
<label
|
|
1490
|
-
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"
|
|
1491
1653
|
data-shrink="true"
|
|
1654
|
+
for="mui-23"
|
|
1655
|
+
id="mui-23-label"
|
|
1492
1656
|
>
|
|
1493
1657
|
height
|
|
1494
1658
|
</label>
|
|
1495
1659
|
<div
|
|
1496
|
-
class="
|
|
1660
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1497
1661
|
>
|
|
1498
1662
|
<input
|
|
1663
|
+
aria-describedby="mui-23-helper-text"
|
|
1499
1664
|
aria-invalid="false"
|
|
1500
|
-
class="MuiInputBase-input
|
|
1665
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1666
|
+
id="mui-23"
|
|
1501
1667
|
type="number"
|
|
1502
1668
|
value="7"
|
|
1503
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>
|
|
1504
1682
|
</div>
|
|
1505
1683
|
<div
|
|
1506
|
-
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"
|
|
1507
1686
|
>
|
|
1508
1687
|
<div>
|
|
1509
1688
|
the height of each feature in a pileup alignment
|
|
@@ -1512,118 +1691,127 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1512
1691
|
</div>
|
|
1513
1692
|
</div>
|
|
1514
1693
|
<div
|
|
1515
|
-
class="
|
|
1694
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1516
1695
|
>
|
|
1517
1696
|
<button
|
|
1518
|
-
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary"
|
|
1697
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorSecondary MuiIconButton-sizeMedium css-1gws2xf-MuiButtonBase-root-MuiIconButton-root"
|
|
1519
1698
|
tabindex="0"
|
|
1520
1699
|
title="convert to callback"
|
|
1521
1700
|
type="button"
|
|
1522
1701
|
>
|
|
1523
|
-
<
|
|
1524
|
-
|
|
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"
|
|
1525
1708
|
>
|
|
1526
|
-
<
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
viewBox="0 0 24 24"
|
|
1531
|
-
>
|
|
1532
|
-
<path
|
|
1533
|
-
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"
|
|
1534
|
-
/>
|
|
1535
|
-
</svg>
|
|
1536
|
-
</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>
|
|
1537
1713
|
<span
|
|
1538
|
-
class="MuiTouchRipple-root"
|
|
1714
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1539
1715
|
/>
|
|
1540
1716
|
</button>
|
|
1541
1717
|
</div>
|
|
1542
1718
|
</div>
|
|
1543
1719
|
<div
|
|
1544
|
-
class="MuiPaper-root
|
|
1720
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1545
1721
|
>
|
|
1546
1722
|
<div
|
|
1547
|
-
class="
|
|
1723
|
+
class="tss-1962tgi-paperContent"
|
|
1548
1724
|
>
|
|
1549
1725
|
<div
|
|
1550
|
-
class="MuiFormControl-root"
|
|
1726
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
1551
1727
|
>
|
|
1552
1728
|
<label
|
|
1553
|
-
class="MuiFormControlLabel-root"
|
|
1729
|
+
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
1554
1730
|
>
|
|
1555
1731
|
<span
|
|
1556
|
-
|
|
1557
|
-
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"
|
|
1558
1733
|
>
|
|
1559
|
-
<
|
|
1560
|
-
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"
|
|
1561
1745
|
>
|
|
1562
|
-
<
|
|
1563
|
-
|
|
1564
|
-
data-indeterminate="false"
|
|
1565
|
-
type="checkbox"
|
|
1566
|
-
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"
|
|
1567
1748
|
/>
|
|
1568
|
-
|
|
1569
|
-
aria-hidden="true"
|
|
1570
|
-
class="MuiSvgIcon-root"
|
|
1571
|
-
focusable="false"
|
|
1572
|
-
viewBox="0 0 24 24"
|
|
1573
|
-
>
|
|
1574
|
-
<path
|
|
1575
|
-
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"
|
|
1576
|
-
/>
|
|
1577
|
-
</svg>
|
|
1578
|
-
</span>
|
|
1749
|
+
</svg>
|
|
1579
1750
|
<span
|
|
1580
|
-
class="MuiTouchRipple-root"
|
|
1751
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1581
1752
|
/>
|
|
1582
1753
|
</span>
|
|
1583
1754
|
<span
|
|
1584
|
-
class="MuiTypography-root MuiFormControlLabel-label MuiTypography-
|
|
1755
|
+
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label css-ahj2mt-MuiTypography-root"
|
|
1585
1756
|
>
|
|
1586
1757
|
noSpacing
|
|
1587
1758
|
</span>
|
|
1588
1759
|
</label>
|
|
1589
1760
|
<p
|
|
1590
|
-
class="MuiFormHelperText-root"
|
|
1761
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
1591
1762
|
>
|
|
1592
1763
|
remove spacing between features
|
|
1593
1764
|
</p>
|
|
1594
1765
|
</div>
|
|
1595
1766
|
</div>
|
|
1596
1767
|
<div
|
|
1597
|
-
class="
|
|
1768
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1598
1769
|
/>
|
|
1599
1770
|
</div>
|
|
1600
1771
|
<div
|
|
1601
|
-
class="MuiPaper-root
|
|
1772
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1602
1773
|
>
|
|
1603
1774
|
<div
|
|
1604
|
-
class="
|
|
1775
|
+
class="tss-1962tgi-paperContent"
|
|
1605
1776
|
>
|
|
1606
1777
|
<div
|
|
1607
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1778
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1608
1779
|
>
|
|
1609
1780
|
<label
|
|
1610
|
-
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"
|
|
1611
1782
|
data-shrink="true"
|
|
1783
|
+
for="mui-24"
|
|
1784
|
+
id="mui-24-label"
|
|
1612
1785
|
>
|
|
1613
1786
|
largeInsertionIndicatorScale
|
|
1614
1787
|
</label>
|
|
1615
1788
|
<div
|
|
1616
|
-
class="
|
|
1789
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1617
1790
|
>
|
|
1618
1791
|
<input
|
|
1792
|
+
aria-describedby="mui-24-helper-text"
|
|
1619
1793
|
aria-invalid="false"
|
|
1620
|
-
class="MuiInputBase-input
|
|
1794
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1795
|
+
id="mui-24"
|
|
1621
1796
|
type="number"
|
|
1622
1797
|
value="10"
|
|
1623
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>
|
|
1624
1811
|
</div>
|
|
1625
1812
|
<div
|
|
1626
|
-
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"
|
|
1627
1815
|
>
|
|
1628
1816
|
<div>
|
|
1629
1817
|
scale at which to draw the large insertion indicators (bp/pixel)
|
|
@@ -1632,64 +1820,59 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1632
1820
|
</div>
|
|
1633
1821
|
</div>
|
|
1634
1822
|
<div
|
|
1635
|
-
class="
|
|
1823
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1636
1824
|
/>
|
|
1637
1825
|
</div>
|
|
1638
1826
|
<div
|
|
1639
|
-
class="MuiPaper-root
|
|
1827
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1640
1828
|
>
|
|
1641
1829
|
<div
|
|
1642
|
-
class="
|
|
1830
|
+
class="tss-1962tgi-paperContent"
|
|
1643
1831
|
>
|
|
1644
1832
|
<div
|
|
1645
|
-
class="MuiFormControl-root"
|
|
1833
|
+
class="MuiFormControl-root css-1nrlq1o-MuiFormControl-root"
|
|
1646
1834
|
>
|
|
1647
1835
|
<label
|
|
1648
|
-
class="MuiFormControlLabel-root"
|
|
1836
|
+
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
1649
1837
|
>
|
|
1650
1838
|
<span
|
|
1651
|
-
|
|
1652
|
-
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"
|
|
1653
1840
|
>
|
|
1654
|
-
<
|
|
1655
|
-
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"
|
|
1656
1852
|
>
|
|
1657
|
-
<
|
|
1658
|
-
|
|
1659
|
-
data-indeterminate="false"
|
|
1660
|
-
type="checkbox"
|
|
1661
|
-
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"
|
|
1662
1855
|
/>
|
|
1663
|
-
|
|
1664
|
-
aria-hidden="true"
|
|
1665
|
-
class="MuiSvgIcon-root"
|
|
1666
|
-
focusable="false"
|
|
1667
|
-
viewBox="0 0 24 24"
|
|
1668
|
-
>
|
|
1669
|
-
<path
|
|
1670
|
-
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"
|
|
1671
|
-
/>
|
|
1672
|
-
</svg>
|
|
1673
|
-
</span>
|
|
1856
|
+
</svg>
|
|
1674
1857
|
<span
|
|
1675
|
-
class="MuiTouchRipple-root"
|
|
1858
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1676
1859
|
/>
|
|
1677
1860
|
</span>
|
|
1678
1861
|
<span
|
|
1679
|
-
class="MuiTypography-root MuiFormControlLabel-label MuiTypography-
|
|
1862
|
+
class="MuiTypography-root MuiTypography-body1 MuiFormControlLabel-label css-ahj2mt-MuiTypography-root"
|
|
1680
1863
|
>
|
|
1681
1864
|
mismatchAlpha
|
|
1682
1865
|
</span>
|
|
1683
1866
|
</label>
|
|
1684
1867
|
<p
|
|
1685
|
-
class="MuiFormHelperText-root"
|
|
1868
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
1686
1869
|
>
|
|
1687
1870
|
Fade low quality mismatches
|
|
1688
1871
|
</p>
|
|
1689
1872
|
</div>
|
|
1690
1873
|
</div>
|
|
1691
1874
|
<div
|
|
1692
|
-
class="
|
|
1875
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1693
1876
|
/>
|
|
1694
1877
|
</div>
|
|
1695
1878
|
</div>
|
|
@@ -1709,99 +1892,108 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1709
1892
|
|
|
1710
1893
|
exports[`ConfigurationEditor widget renders with just the required model elements 1`] = `
|
|
1711
1894
|
<div
|
|
1712
|
-
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"
|
|
1713
1896
|
>
|
|
1714
1897
|
<div
|
|
1715
|
-
aria-disabled="false"
|
|
1716
1898
|
aria-expanded="true"
|
|
1717
|
-
class="MuiButtonBase-root MuiAccordionSummary-root MuiAccordionSummary-
|
|
1899
|
+
class="MuiButtonBase-root MuiAccordionSummary-root Mui-expanded MuiAccordionSummary-gutters css-sh22l5-MuiButtonBase-root-MuiAccordionSummary-root"
|
|
1718
1900
|
role="button"
|
|
1719
1901
|
tabindex="0"
|
|
1720
1902
|
>
|
|
1721
1903
|
<div
|
|
1722
|
-
class="MuiAccordionSummary-content MuiAccordionSummary-
|
|
1904
|
+
class="MuiAccordionSummary-content Mui-expanded MuiAccordionSummary-contentGutters css-o4b71y-MuiAccordionSummary-content"
|
|
1723
1905
|
>
|
|
1724
1906
|
<p
|
|
1725
|
-
class="MuiTypography-root MuiTypography-body1"
|
|
1907
|
+
class="MuiTypography-root MuiTypography-body1 css-ahj2mt-MuiTypography-root"
|
|
1726
1908
|
>
|
|
1727
1909
|
Configuration
|
|
1728
1910
|
</p>
|
|
1729
1911
|
</div>
|
|
1730
1912
|
<div
|
|
1731
|
-
|
|
1732
|
-
aria-hidden="true"
|
|
1733
|
-
class="MuiButtonBase-root MuiIconButton-root MuiAccordionSummary-expandIcon MuiAccordionSummary-expanded MuiIconButton-edgeEnd"
|
|
1913
|
+
class="MuiAccordionSummary-expandIconWrapper Mui-expanded css-yw020d-MuiAccordionSummary-expandIconWrapper"
|
|
1734
1914
|
>
|
|
1735
|
-
<
|
|
1736
|
-
|
|
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"
|
|
1737
1921
|
>
|
|
1738
|
-
<
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
viewBox="0 0 24 24"
|
|
1743
|
-
>
|
|
1744
|
-
<path
|
|
1745
|
-
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1746
|
-
/>
|
|
1747
|
-
</svg>
|
|
1748
|
-
</span>
|
|
1749
|
-
<span
|
|
1750
|
-
class="MuiTouchRipple-root"
|
|
1751
|
-
/>
|
|
1922
|
+
<path
|
|
1923
|
+
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
|
1924
|
+
/>
|
|
1925
|
+
</svg>
|
|
1752
1926
|
</div>
|
|
1753
1927
|
</div>
|
|
1754
1928
|
<div
|
|
1755
|
-
class="MuiCollapse-root MuiCollapse-entered"
|
|
1929
|
+
class="MuiCollapse-root MuiCollapse-vertical MuiCollapse-entered css-pwcg7p-MuiCollapse-root"
|
|
1756
1930
|
style="min-height: 0px;"
|
|
1757
1931
|
>
|
|
1758
1932
|
<div
|
|
1759
|
-
class="MuiCollapse-wrapper"
|
|
1933
|
+
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
1760
1934
|
>
|
|
1761
1935
|
<div
|
|
1762
|
-
class="MuiCollapse-wrapperInner"
|
|
1936
|
+
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
1763
1937
|
>
|
|
1764
1938
|
<div
|
|
1939
|
+
class="MuiAccordion-region"
|
|
1765
1940
|
role="region"
|
|
1766
1941
|
>
|
|
1767
1942
|
<div
|
|
1768
|
-
class="MuiAccordionDetails-root
|
|
1943
|
+
class="MuiAccordionDetails-root tss-1g973hk-expansionPanelDetails css-15v22id-MuiAccordionDetails-root"
|
|
1769
1944
|
data-testid="configEditor"
|
|
1770
1945
|
>
|
|
1771
1946
|
<div
|
|
1772
|
-
class="MuiPaper-root
|
|
1947
|
+
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
1773
1948
|
>
|
|
1774
1949
|
<div
|
|
1775
|
-
class="
|
|
1950
|
+
class="tss-1962tgi-paperContent"
|
|
1776
1951
|
>
|
|
1777
1952
|
<div
|
|
1778
|
-
class="MuiFormControl-root MuiTextField-root MuiFormControl-
|
|
1953
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1779
1954
|
>
|
|
1780
1955
|
<label
|
|
1781
|
-
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"
|
|
1782
1957
|
data-shrink="true"
|
|
1958
|
+
for="mui-1"
|
|
1959
|
+
id="mui-1-label"
|
|
1783
1960
|
>
|
|
1784
1961
|
foo
|
|
1785
1962
|
</label>
|
|
1786
1963
|
<div
|
|
1787
|
-
class="
|
|
1964
|
+
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1788
1965
|
>
|
|
1789
1966
|
<input
|
|
1967
|
+
aria-describedby="mui-1-helper-text"
|
|
1790
1968
|
aria-invalid="false"
|
|
1791
|
-
class="MuiInputBase-input
|
|
1969
|
+
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1970
|
+
id="mui-1"
|
|
1792
1971
|
type="text"
|
|
1793
1972
|
value="bar"
|
|
1794
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>
|
|
1795
1986
|
</div>
|
|
1796
1987
|
<div
|
|
1797
|
-
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"
|
|
1798
1990
|
>
|
|
1799
1991
|
<div />
|
|
1800
1992
|
</div>
|
|
1801
1993
|
</div>
|
|
1802
1994
|
</div>
|
|
1803
1995
|
<div
|
|
1804
|
-
class="
|
|
1996
|
+
class="tss-8lz2mt-slotModeSwitch"
|
|
1805
1997
|
/>
|
|
1806
1998
|
</div>
|
|
1807
1999
|
</div>
|