@jbrowse/plugin-config 2.0.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ConfigurationEditorWidget/components/CallbackEditor.js +49 -57
- package/dist/ConfigurationEditorWidget/components/CallbackEditor.js.map +1 -1
- package/dist/ConfigurationEditorWidget/components/ColorEditor.js +14 -56
- package/dist/ConfigurationEditorWidget/components/ColorEditor.js.map +1 -1
- package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.js +37 -74
- package/dist/ConfigurationEditorWidget/components/ConfigurationEditor.js.map +1 -1
- package/dist/ConfigurationEditorWidget/components/JsonEditor.d.ts +9 -7
- package/dist/ConfigurationEditorWidget/components/JsonEditor.js +42 -43
- package/dist/ConfigurationEditorWidget/components/JsonEditor.js.map +1 -1
- package/dist/ConfigurationEditorWidget/components/SlotEditor.d.ts +7 -5
- package/dist/ConfigurationEditorWidget/components/SlotEditor.js +97 -142
- package/dist/ConfigurationEditorWidget/components/SlotEditor.js.map +1 -1
- package/dist/ConfigurationEditorWidget/components/StringArrayEditor.js +15 -32
- package/dist/ConfigurationEditorWidget/components/StringArrayEditor.js.map +1 -1
- package/dist/ConfigurationEditorWidget/components/TypeSelector.js +7 -8
- package/dist/ConfigurationEditorWidget/components/TypeSelector.js.map +1 -1
- package/dist/ConfigurationEditorWidget/index.d.ts +10 -3
- package/dist/ConfigurationEditorWidget/index.js +9 -9
- package/dist/ConfigurationEditorWidget/index.js.map +1 -1
- package/dist/ConfigurationEditorWidget/model.d.ts +3 -2
- package/dist/ConfigurationEditorWidget/model.js +16 -17
- package/dist/ConfigurationEditorWidget/model.js.map +1 -1
- package/dist/FromConfigAdapter/FromConfigAdapter.js +44 -158
- package/dist/FromConfigAdapter/FromConfigAdapter.js.map +1 -1
- package/dist/FromConfigAdapter/FromConfigRegionsAdapter.js +37 -144
- package/dist/FromConfigAdapter/FromConfigRegionsAdapter.js.map +1 -1
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.d.ts +2 -1
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.js +48 -179
- package/dist/FromConfigAdapter/FromConfigSequenceAdapter.js.map +1 -1
- package/dist/FromConfigAdapter/configSchema.js +1 -1
- package/dist/FromConfigAdapter/configSchema.js.map +1 -1
- package/dist/RefNameAliasAdapter/RefNameAliasAdapter.js +22 -108
- package/dist/RefNameAliasAdapter/RefNameAliasAdapter.js.map +1 -1
- package/dist/RefNameAliasAdapter/configSchema.js +1 -1
- package/dist/RefNameAliasAdapter/configSchema.js.map +1 -1
- package/dist/index.js +60 -94
- package/dist/index.js.map +1 -1
- package/esm/ConfigurationEditorWidget/components/CallbackEditor.js +28 -19
- package/esm/ConfigurationEditorWidget/components/CallbackEditor.js.map +1 -1
- package/esm/ConfigurationEditorWidget/components/ColorEditor.js +6 -21
- package/esm/ConfigurationEditorWidget/components/ColorEditor.js.map +1 -1
- package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.js +6 -2
- package/esm/ConfigurationEditorWidget/components/ConfigurationEditor.js.map +1 -1
- package/esm/ConfigurationEditorWidget/components/JsonEditor.d.ts +9 -7
- package/esm/ConfigurationEditorWidget/components/JsonEditor.js +38 -22
- package/esm/ConfigurationEditorWidget/components/JsonEditor.js.map +1 -1
- package/esm/ConfigurationEditorWidget/components/SlotEditor.d.ts +7 -5
- package/esm/ConfigurationEditorWidget/components/SlotEditor.js +33 -27
- package/esm/ConfigurationEditorWidget/components/SlotEditor.js.map +1 -1
- package/esm/ConfigurationEditorWidget/index.d.ts +10 -3
- package/esm/ConfigurationEditorWidget/index.js +4 -3
- package/esm/ConfigurationEditorWidget/index.js.map +1 -1
- package/esm/ConfigurationEditorWidget/model.d.ts +3 -2
- package/esm/ConfigurationEditorWidget/model.js +2 -1
- package/esm/ConfigurationEditorWidget/model.js.map +1 -1
- package/esm/FromConfigAdapter/FromConfigSequenceAdapter.d.ts +2 -1
- package/esm/FromConfigAdapter/FromConfigSequenceAdapter.js +1 -9
- package/esm/FromConfigAdapter/FromConfigSequenceAdapter.js.map +1 -1
- package/package.json +4 -6
- package/src/ConfigurationEditorWidget/components/CallbackEditor.tsx +44 -45
- package/src/ConfigurationEditorWidget/components/ColorEditor.tsx +6 -28
- package/src/ConfigurationEditorWidget/components/{ConfigurationEditor.test.js → ConfigurationEditor.test.tsx} +0 -0
- package/src/ConfigurationEditorWidget/components/ConfigurationEditor.tsx +6 -2
- package/src/ConfigurationEditorWidget/components/JsonEditor.tsx +84 -0
- package/src/ConfigurationEditorWidget/components/SlotEditor.tsx +484 -0
- package/src/ConfigurationEditorWidget/components/__snapshots__/{ConfigurationEditor.test.js.snap → ConfigurationEditor.test.tsx.snap} +186 -167
- package/src/ConfigurationEditorWidget/index.tsx +25 -0
- package/src/ConfigurationEditorWidget/{model.js → model.ts} +4 -2
- package/src/FromConfigAdapter/FromConfigSequenceAdapter.ts +6 -10
- package/dist/ConfigurationEditorWidget/components/CodeEditor.d.ts +0 -5
- package/dist/ConfigurationEditorWidget/components/CodeEditor.js +0 -85
- package/dist/ConfigurationEditorWidget/components/CodeEditor.js.map +0 -1
- package/dist/ConfigurationEditorWidget/components/ColorPicker.d.ts +0 -7
- package/dist/ConfigurationEditorWidget/components/ColorPicker.js +0 -69
- package/dist/ConfigurationEditorWidget/components/ColorPicker.js.map +0 -1
- package/esm/ConfigurationEditorWidget/components/CodeEditor.d.ts +0 -5
- package/esm/ConfigurationEditorWidget/components/CodeEditor.js +0 -42
- package/esm/ConfigurationEditorWidget/components/CodeEditor.js.map +0 -1
- package/esm/ConfigurationEditorWidget/components/ColorPicker.d.ts +0 -7
- package/esm/ConfigurationEditorWidget/components/ColorPicker.js +0 -26
- package/esm/ConfigurationEditorWidget/components/ColorPicker.js.map +0 -1
- package/src/ConfigurationEditorWidget/components/CodeEditor.tsx +0 -59
- package/src/ConfigurationEditorWidget/components/ColorPicker.tsx +0 -43
- package/src/ConfigurationEditorWidget/components/JsonEditor.js +0 -52
- package/src/ConfigurationEditorWidget/components/SlotEditor.js +0 -376
- package/src/ConfigurationEditorWidget/index.js +0 -20
|
@@ -63,7 +63,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
63
63
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
64
64
|
>
|
|
65
65
|
<label
|
|
66
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
66
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
67
67
|
data-shrink="true"
|
|
68
68
|
for="mui-2"
|
|
69
69
|
id="mui-2-label"
|
|
@@ -71,12 +71,12 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
71
71
|
stringTest
|
|
72
72
|
</label>
|
|
73
73
|
<div
|
|
74
|
-
class="
|
|
74
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
75
75
|
>
|
|
76
76
|
<input
|
|
77
77
|
aria-describedby="mui-2-helper-text"
|
|
78
78
|
aria-invalid="false"
|
|
79
|
-
class="
|
|
79
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
80
80
|
id="mui-2"
|
|
81
81
|
type="text"
|
|
82
82
|
value="string1"
|
|
@@ -118,7 +118,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
118
118
|
class="MuiBox-root css-k008qs"
|
|
119
119
|
>
|
|
120
120
|
<label
|
|
121
|
-
class="MuiInputLabel-root MuiInputLabel-animated MuiInputLabel-shrink MuiFormLabel-
|
|
121
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-animated MuiInputLabel-shrink MuiFormLabel-colorPrimary css-1foa3kv-MuiFormLabel-root-MuiInputLabel-root"
|
|
122
122
|
data-shrink="true"
|
|
123
123
|
>
|
|
124
124
|
fileLocationTest
|
|
@@ -168,7 +168,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
168
168
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
169
169
|
>
|
|
170
170
|
<label
|
|
171
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
171
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
172
172
|
data-shrink="true"
|
|
173
173
|
for="mui-3"
|
|
174
174
|
id="mui-3-label"
|
|
@@ -176,11 +176,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
176
176
|
Enter URL
|
|
177
177
|
</label>
|
|
178
178
|
<div
|
|
179
|
-
class="
|
|
179
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
180
180
|
>
|
|
181
181
|
<input
|
|
182
182
|
aria-invalid="false"
|
|
183
|
-
class="
|
|
183
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
184
184
|
data-testid="urlInput"
|
|
185
185
|
id="mui-3"
|
|
186
186
|
type="text"
|
|
@@ -217,7 +217,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
217
217
|
class="tss-1962tgi-paperContent"
|
|
218
218
|
>
|
|
219
219
|
<label
|
|
220
|
-
class="MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-
|
|
220
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-colorPrimary css-9npbnl-MuiFormLabel-root-MuiInputLabel-root"
|
|
221
221
|
>
|
|
222
222
|
stringArrayTest
|
|
223
223
|
</label>
|
|
@@ -231,11 +231,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
231
231
|
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
232
232
|
>
|
|
233
233
|
<div
|
|
234
|
-
class="
|
|
234
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
235
235
|
>
|
|
236
236
|
<input
|
|
237
237
|
aria-invalid="false"
|
|
238
|
-
class="
|
|
238
|
+
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
239
239
|
id="mui-4"
|
|
240
240
|
type="text"
|
|
241
241
|
value="string1"
|
|
@@ -288,11 +288,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
288
288
|
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
289
289
|
>
|
|
290
290
|
<div
|
|
291
|
-
class="
|
|
291
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
292
292
|
>
|
|
293
293
|
<input
|
|
294
294
|
aria-invalid="false"
|
|
295
|
-
class="
|
|
295
|
+
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
296
296
|
id="mui-5"
|
|
297
297
|
type="text"
|
|
298
298
|
value="string2"
|
|
@@ -339,7 +339,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
339
339
|
</div>
|
|
340
340
|
</li>
|
|
341
341
|
<button
|
|
342
|
-
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium
|
|
342
|
+
class="MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
343
343
|
style="margin: 4px;"
|
|
344
344
|
tabindex="0"
|
|
345
345
|
type="button"
|
|
@@ -367,7 +367,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
367
367
|
class="tss-1962tgi-paperContent"
|
|
368
368
|
>
|
|
369
369
|
<label
|
|
370
|
-
class="MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-
|
|
370
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-colorPrimary css-9npbnl-MuiFormLabel-root-MuiInputLabel-root"
|
|
371
371
|
>
|
|
372
372
|
stringArrayMapTest
|
|
373
373
|
</label>
|
|
@@ -414,6 +414,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
414
414
|
<div
|
|
415
415
|
class="MuiCardContent-root css-46bh2p-MuiCardContent-root"
|
|
416
416
|
>
|
|
417
|
+
<label
|
|
418
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-animated MuiFormLabel-colorPrimary css-9npbnl-MuiFormLabel-root-MuiInputLabel-root"
|
|
419
|
+
>
|
|
420
|
+
stringArrayMapTest
|
|
421
|
+
</label>
|
|
417
422
|
<ul
|
|
418
423
|
class="MuiList-root css-1mk9mw3-MuiList-root"
|
|
419
424
|
>
|
|
@@ -424,11 +429,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
424
429
|
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
425
430
|
>
|
|
426
431
|
<div
|
|
427
|
-
class="
|
|
432
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
428
433
|
>
|
|
429
434
|
<input
|
|
430
435
|
aria-invalid="false"
|
|
431
|
-
class="
|
|
436
|
+
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
432
437
|
id="mui-6"
|
|
433
438
|
type="text"
|
|
434
439
|
value="string1"
|
|
@@ -481,11 +486,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
481
486
|
class="MuiFormControl-root MuiTextField-root css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
482
487
|
>
|
|
483
488
|
<div
|
|
484
|
-
class="
|
|
489
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-adornedEnd css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root"
|
|
485
490
|
>
|
|
486
491
|
<input
|
|
487
492
|
aria-invalid="false"
|
|
488
|
-
class="
|
|
493
|
+
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
489
494
|
id="mui-7"
|
|
490
495
|
type="text"
|
|
491
496
|
value="string2"
|
|
@@ -532,7 +537,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
532
537
|
</div>
|
|
533
538
|
</li>
|
|
534
539
|
<button
|
|
535
|
-
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium
|
|
540
|
+
class="MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
536
541
|
style="margin: 4px;"
|
|
537
542
|
tabindex="0"
|
|
538
543
|
type="button"
|
|
@@ -563,11 +568,11 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
563
568
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
564
569
|
>
|
|
565
570
|
<div
|
|
566
|
-
class="
|
|
571
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-adornedEnd css-154xyx0-MuiInputBase-root-MuiOutlinedInput-root"
|
|
567
572
|
>
|
|
568
573
|
<input
|
|
569
574
|
aria-invalid="false"
|
|
570
|
-
class="
|
|
575
|
+
class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputAdornedEnd css-nxo287-MuiInputBase-input-MuiOutlinedInput-input"
|
|
571
576
|
id="mui-8"
|
|
572
577
|
placeholder="add new"
|
|
573
578
|
type="text"
|
|
@@ -634,7 +639,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
634
639
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
635
640
|
>
|
|
636
641
|
<label
|
|
637
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
642
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
638
643
|
data-shrink="true"
|
|
639
644
|
for="mui-9"
|
|
640
645
|
id="mui-9-label"
|
|
@@ -642,12 +647,12 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
642
647
|
numberTest
|
|
643
648
|
</label>
|
|
644
649
|
<div
|
|
645
|
-
class="
|
|
650
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
646
651
|
>
|
|
647
652
|
<input
|
|
648
653
|
aria-describedby="mui-9-helper-text"
|
|
649
654
|
aria-invalid="false"
|
|
650
|
-
class="
|
|
655
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
651
656
|
id="mui-9"
|
|
652
657
|
type="number"
|
|
653
658
|
value="88.5"
|
|
@@ -689,7 +694,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
689
694
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
690
695
|
>
|
|
691
696
|
<label
|
|
692
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
697
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
693
698
|
data-shrink="true"
|
|
694
699
|
for="mui-10"
|
|
695
700
|
id="mui-10-label"
|
|
@@ -697,12 +702,12 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
697
702
|
integerTest
|
|
698
703
|
</label>
|
|
699
704
|
<div
|
|
700
|
-
class="
|
|
705
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
701
706
|
>
|
|
702
707
|
<input
|
|
703
708
|
aria-describedby="mui-10-helper-text"
|
|
704
709
|
aria-invalid="false"
|
|
705
|
-
class="
|
|
710
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
706
711
|
id="mui-10"
|
|
707
712
|
type="number"
|
|
708
713
|
value="42"
|
|
@@ -741,47 +746,55 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
741
746
|
class="tss-1962tgi-paperContent"
|
|
742
747
|
>
|
|
743
748
|
<div
|
|
744
|
-
|
|
749
|
+
style="display: flex;"
|
|
745
750
|
>
|
|
746
|
-
<label
|
|
747
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
748
|
-
data-shrink="true"
|
|
749
|
-
for="mui-11"
|
|
750
|
-
id="mui-11-label"
|
|
751
|
-
>
|
|
752
|
-
colorTest
|
|
753
|
-
</label>
|
|
754
751
|
<div
|
|
755
|
-
class="
|
|
756
|
-
style="color: rgb(57, 100, 148); border-right-width: 25px; border-right-style: solid; border-right-color: #396494;"
|
|
752
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
757
753
|
>
|
|
758
|
-
<
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
id="mui-11"
|
|
763
|
-
type="text"
|
|
764
|
-
value="#396494"
|
|
765
|
-
/>
|
|
766
|
-
<fieldset
|
|
767
|
-
aria-hidden="true"
|
|
768
|
-
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
754
|
+
<label
|
|
755
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
756
|
+
data-shrink="true"
|
|
757
|
+
for="mui-11"
|
|
758
|
+
id="mui-11-label"
|
|
769
759
|
>
|
|
770
|
-
|
|
771
|
-
|
|
760
|
+
colorTest
|
|
761
|
+
</label>
|
|
762
|
+
<div
|
|
763
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
764
|
+
>
|
|
765
|
+
<input
|
|
766
|
+
aria-describedby="mui-11-helper-text"
|
|
767
|
+
aria-invalid="false"
|
|
768
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
769
|
+
id="mui-11"
|
|
770
|
+
type="text"
|
|
771
|
+
value="#396494"
|
|
772
|
+
/>
|
|
773
|
+
<fieldset
|
|
774
|
+
aria-hidden="true"
|
|
775
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
772
776
|
>
|
|
773
|
-
<
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
777
|
+
<legend
|
|
778
|
+
class="css-1in441m"
|
|
779
|
+
>
|
|
780
|
+
<span>
|
|
781
|
+
colorTest
|
|
782
|
+
</span>
|
|
783
|
+
</legend>
|
|
784
|
+
</fieldset>
|
|
785
|
+
</div>
|
|
786
|
+
<p
|
|
787
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
788
|
+
id="mui-11-helper-text"
|
|
789
|
+
>
|
|
790
|
+
colorTest
|
|
791
|
+
</p>
|
|
778
792
|
</div>
|
|
779
|
-
<
|
|
780
|
-
|
|
781
|
-
id="mui-11-helper-text"
|
|
793
|
+
<div
|
|
794
|
+
style="margin-top: 10px;"
|
|
782
795
|
>
|
|
783
|
-
|
|
784
|
-
</
|
|
796
|
+
<div />
|
|
797
|
+
</div>
|
|
785
798
|
</div>
|
|
786
799
|
</div>
|
|
787
800
|
<div
|
|
@@ -801,7 +814,7 @@ exports[`ConfigurationEditor widget renders all the different types of built-in
|
|
|
801
814
|
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
802
815
|
>
|
|
803
816
|
<span
|
|
804
|
-
class="MuiCheckbox-root MuiCheckbox-colorPrimary
|
|
817
|
+
class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary Mui-checked css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
|
|
805
818
|
>
|
|
806
819
|
<input
|
|
807
820
|
checked=""
|
|
@@ -912,7 +925,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
912
925
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
913
926
|
>
|
|
914
927
|
<label
|
|
915
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
928
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
916
929
|
data-shrink="true"
|
|
917
930
|
for="mui-12"
|
|
918
931
|
id="mui-12-label"
|
|
@@ -920,12 +933,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
920
933
|
maxFeatureScreenDensity
|
|
921
934
|
</label>
|
|
922
935
|
<div
|
|
923
|
-
class="
|
|
936
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
924
937
|
>
|
|
925
938
|
<input
|
|
926
939
|
aria-describedby="mui-12-helper-text"
|
|
927
940
|
aria-invalid="false"
|
|
928
|
-
class="
|
|
941
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
929
942
|
id="mui-12"
|
|
930
943
|
type="number"
|
|
931
944
|
value="0.3"
|
|
@@ -967,7 +980,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
967
980
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
968
981
|
>
|
|
969
982
|
<label
|
|
970
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
983
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
971
984
|
data-shrink="true"
|
|
972
985
|
for="mui-13"
|
|
973
986
|
id="mui-13-label"
|
|
@@ -975,12 +988,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
975
988
|
fetchSizeLimit
|
|
976
989
|
</label>
|
|
977
990
|
<div
|
|
978
|
-
class="
|
|
991
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
979
992
|
>
|
|
980
993
|
<input
|
|
981
994
|
aria-describedby="mui-13-helper-text"
|
|
982
995
|
aria-invalid="false"
|
|
983
|
-
class="
|
|
996
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
984
997
|
id="mui-13"
|
|
985
998
|
type="number"
|
|
986
999
|
value="1000000"
|
|
@@ -1019,24 +1032,17 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1019
1032
|
class="tss-1962tgi-paperContent"
|
|
1020
1033
|
>
|
|
1021
1034
|
<div
|
|
1022
|
-
class="
|
|
1035
|
+
class="tss-15g9652-callbackContainer"
|
|
1023
1036
|
>
|
|
1024
|
-
<label
|
|
1025
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1026
|
-
data-shrink="true"
|
|
1027
|
-
for="callback-editor"
|
|
1028
|
-
>
|
|
1029
|
-
mouseover
|
|
1030
|
-
</label>
|
|
1031
1037
|
<div
|
|
1032
|
-
class="MuiFormControl-root MuiTextField-root tss-
|
|
1038
|
+
class="MuiFormControl-root MuiTextField-root tss-46fzrl-callbackEditor css-1u3bzj6-MuiFormControl-root-MuiTextField-root"
|
|
1033
1039
|
>
|
|
1034
1040
|
<div
|
|
1035
|
-
class="
|
|
1041
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-formControl MuiInputBase-multiline css-dpjnhs-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1036
1042
|
>
|
|
1037
1043
|
<textarea
|
|
1038
1044
|
aria-invalid="false"
|
|
1039
|
-
class="
|
|
1045
|
+
class="MuiInputBase-input MuiOutlinedInput-input tss-hg8p6g-textAreaFont MuiInputBase-inputMultiline css-1sqnrkk-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1040
1046
|
id="mui-14"
|
|
1041
1047
|
style="height: 0px; overflow: hidden;"
|
|
1042
1048
|
>
|
|
@@ -1044,7 +1050,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1044
1050
|
</textarea>
|
|
1045
1051
|
<textarea
|
|
1046
1052
|
aria-hidden="true"
|
|
1047
|
-
class="
|
|
1053
|
+
class="MuiInputBase-input MuiOutlinedInput-input tss-hg8p6g-textAreaFont MuiInputBase-inputMultiline css-1sqnrkk-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1048
1054
|
readonly=""
|
|
1049
1055
|
style="visibility: hidden; position: absolute; overflow: hidden; height: 0px; top: 0px; left: 0px; transform: translateZ(0); padding: 0px; width: 100%;"
|
|
1050
1056
|
tabindex="-1"
|
|
@@ -1065,33 +1071,31 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1065
1071
|
</fieldset>
|
|
1066
1072
|
</div>
|
|
1067
1073
|
</div>
|
|
1068
|
-
<p
|
|
1069
|
-
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained css-1wc848c-MuiFormHelperText-root"
|
|
1070
|
-
>
|
|
1074
|
+
<p>
|
|
1071
1075
|
what to display in a given mouseover
|
|
1072
1076
|
</p>
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
type="button"
|
|
1079
|
-
>
|
|
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"
|
|
1077
|
+
<button
|
|
1078
|
+
class="MuiButtonBase-root MuiIconButton-root MuiIconButton-colorPrimary MuiIconButton-sizeMedium css-1kuq5xv-MuiButtonBase-root-MuiIconButton-root"
|
|
1079
|
+
data-mui-internal-clone-element="true"
|
|
1080
|
+
tabindex="0"
|
|
1081
|
+
type="button"
|
|
1086
1082
|
>
|
|
1087
|
-
<
|
|
1088
|
-
|
|
1083
|
+
<svg
|
|
1084
|
+
aria-hidden="true"
|
|
1085
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root"
|
|
1086
|
+
data-testid="HelpIcon"
|
|
1087
|
+
focusable="false"
|
|
1088
|
+
viewBox="0 0 24 24"
|
|
1089
|
+
>
|
|
1090
|
+
<path
|
|
1091
|
+
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"
|
|
1092
|
+
/>
|
|
1093
|
+
</svg>
|
|
1094
|
+
<span
|
|
1095
|
+
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1089
1096
|
/>
|
|
1090
|
-
</
|
|
1091
|
-
|
|
1092
|
-
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
1093
|
-
/>
|
|
1094
|
-
</button>
|
|
1097
|
+
</button>
|
|
1098
|
+
</div>
|
|
1095
1099
|
</div>
|
|
1096
1100
|
<div
|
|
1097
1101
|
class="tss-8lz2mt-slotModeSwitch"
|
|
@@ -1179,7 +1183,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1179
1183
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1180
1184
|
>
|
|
1181
1185
|
<label
|
|
1182
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1186
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1183
1187
|
data-shrink="true"
|
|
1184
1188
|
for="mui-16"
|
|
1185
1189
|
id="mui-16-label"
|
|
@@ -1187,7 +1191,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1187
1191
|
Type
|
|
1188
1192
|
</label>
|
|
1189
1193
|
<div
|
|
1190
|
-
class="
|
|
1194
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1191
1195
|
variant="outlined"
|
|
1192
1196
|
>
|
|
1193
1197
|
<div
|
|
@@ -1195,7 +1199,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1195
1199
|
aria-expanded="false"
|
|
1196
1200
|
aria-haspopup="listbox"
|
|
1197
1201
|
aria-labelledby="mui-16-label mui-16"
|
|
1198
|
-
class="MuiSelect-select MuiSelect-outlined
|
|
1202
|
+
class="MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input css-11u53oe-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1199
1203
|
id="mui-16"
|
|
1200
1204
|
role="button"
|
|
1201
1205
|
tabindex="0"
|
|
@@ -1242,7 +1246,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1242
1246
|
</div>
|
|
1243
1247
|
</div>
|
|
1244
1248
|
<div
|
|
1245
|
-
class="MuiFormGroup-root css-dmmspl-MuiFormGroup-root"
|
|
1249
|
+
class="MuiFormGroup-root tss-vdq470-noOverflow css-dmmspl-MuiFormGroup-root"
|
|
1246
1250
|
>
|
|
1247
1251
|
<div
|
|
1248
1252
|
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-en0npb-paper css-1ps6pg7-MuiPaper-root"
|
|
@@ -1251,47 +1255,62 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1251
1255
|
class="tss-1962tgi-paperContent"
|
|
1252
1256
|
>
|
|
1253
1257
|
<div
|
|
1254
|
-
|
|
1258
|
+
style="display: flex;"
|
|
1255
1259
|
>
|
|
1256
|
-
<label
|
|
1257
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1258
|
-
data-shrink="true"
|
|
1259
|
-
for="mui-17"
|
|
1260
|
-
id="mui-17-label"
|
|
1261
|
-
>
|
|
1262
|
-
color
|
|
1263
|
-
</label>
|
|
1264
1260
|
<div
|
|
1265
|
-
class="
|
|
1266
|
-
style="color: rgb(255, 0, 255); border-right-width: 25px; border-right-style: solid; border-right-color: #f0f;"
|
|
1261
|
+
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1267
1262
|
>
|
|
1268
|
-
<
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
id="mui-17"
|
|
1273
|
-
type="text"
|
|
1274
|
-
value="#f0f"
|
|
1275
|
-
/>
|
|
1276
|
-
<fieldset
|
|
1277
|
-
aria-hidden="true"
|
|
1278
|
-
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1263
|
+
<label
|
|
1264
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1265
|
+
data-shrink="true"
|
|
1266
|
+
for="mui-17"
|
|
1267
|
+
id="mui-17-label"
|
|
1279
1268
|
>
|
|
1280
|
-
|
|
1281
|
-
|
|
1269
|
+
color
|
|
1270
|
+
</label>
|
|
1271
|
+
<div
|
|
1272
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1273
|
+
>
|
|
1274
|
+
<input
|
|
1275
|
+
aria-describedby="mui-17-helper-text"
|
|
1276
|
+
aria-invalid="false"
|
|
1277
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1278
|
+
id="mui-17"
|
|
1279
|
+
type="text"
|
|
1280
|
+
value="#f0f"
|
|
1281
|
+
/>
|
|
1282
|
+
<fieldset
|
|
1283
|
+
aria-hidden="true"
|
|
1284
|
+
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
1282
1285
|
>
|
|
1283
|
-
<
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1286
|
+
<legend
|
|
1287
|
+
class="css-1in441m"
|
|
1288
|
+
>
|
|
1289
|
+
<span>
|
|
1290
|
+
color
|
|
1291
|
+
</span>
|
|
1292
|
+
</legend>
|
|
1293
|
+
</fieldset>
|
|
1294
|
+
</div>
|
|
1295
|
+
<p
|
|
1296
|
+
class="MuiFormHelperText-root MuiFormHelperText-sizeMedium MuiFormHelperText-contained MuiFormHelperText-filled css-1wc848c-MuiFormHelperText-root"
|
|
1297
|
+
id="mui-17-helper-text"
|
|
1298
|
+
>
|
|
1299
|
+
the color of each feature in a pileup alignment
|
|
1300
|
+
</p>
|
|
1288
1301
|
</div>
|
|
1289
|
-
<
|
|
1290
|
-
|
|
1291
|
-
id="mui-17-helper-text"
|
|
1302
|
+
<div
|
|
1303
|
+
style="margin-top: 10px;"
|
|
1292
1304
|
>
|
|
1293
|
-
|
|
1294
|
-
|
|
1305
|
+
<div
|
|
1306
|
+
class="tss-7h64ut-picker"
|
|
1307
|
+
>
|
|
1308
|
+
<div
|
|
1309
|
+
class="tss-hl2wx9-swatch"
|
|
1310
|
+
style="background-color: rgb(255, 0, 255);"
|
|
1311
|
+
/>
|
|
1312
|
+
</div>
|
|
1313
|
+
</div>
|
|
1295
1314
|
</div>
|
|
1296
1315
|
</div>
|
|
1297
1316
|
<div
|
|
@@ -1330,7 +1349,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1330
1349
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1331
1350
|
>
|
|
1332
1351
|
<label
|
|
1333
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1352
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1334
1353
|
data-shrink="true"
|
|
1335
1354
|
for="mui-18"
|
|
1336
1355
|
id="mui-18-label"
|
|
@@ -1338,7 +1357,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1338
1357
|
orientationType
|
|
1339
1358
|
</label>
|
|
1340
1359
|
<div
|
|
1341
|
-
class="
|
|
1360
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1342
1361
|
variant="outlined"
|
|
1343
1362
|
>
|
|
1344
1363
|
<div
|
|
@@ -1346,7 +1365,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1346
1365
|
aria-expanded="false"
|
|
1347
1366
|
aria-haspopup="listbox"
|
|
1348
1367
|
aria-labelledby="mui-18-label mui-18"
|
|
1349
|
-
class="MuiSelect-select MuiSelect-outlined
|
|
1368
|
+
class="MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input css-11u53oe-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1350
1369
|
id="mui-18"
|
|
1351
1370
|
role="button"
|
|
1352
1371
|
tabindex="0"
|
|
@@ -1407,7 +1426,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1407
1426
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1408
1427
|
>
|
|
1409
1428
|
<label
|
|
1410
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1429
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1411
1430
|
data-shrink="true"
|
|
1412
1431
|
for="mui-19"
|
|
1413
1432
|
id="mui-19-label"
|
|
@@ -1415,7 +1434,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1415
1434
|
displayMode
|
|
1416
1435
|
</label>
|
|
1417
1436
|
<div
|
|
1418
|
-
class="
|
|
1437
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1419
1438
|
variant="outlined"
|
|
1420
1439
|
>
|
|
1421
1440
|
<div
|
|
@@ -1423,7 +1442,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1423
1442
|
aria-expanded="false"
|
|
1424
1443
|
aria-haspopup="listbox"
|
|
1425
1444
|
aria-labelledby="mui-19-label mui-19"
|
|
1426
|
-
class="MuiSelect-select MuiSelect-outlined
|
|
1445
|
+
class="MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input css-11u53oe-MuiSelect-select-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1427
1446
|
id="mui-19"
|
|
1428
1447
|
role="button"
|
|
1429
1448
|
tabindex="0"
|
|
@@ -1484,7 +1503,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1484
1503
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1485
1504
|
>
|
|
1486
1505
|
<label
|
|
1487
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1506
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1488
1507
|
data-shrink="true"
|
|
1489
1508
|
for="mui-20"
|
|
1490
1509
|
id="mui-20-label"
|
|
@@ -1492,12 +1511,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1492
1511
|
minSubfeatureWidth
|
|
1493
1512
|
</label>
|
|
1494
1513
|
<div
|
|
1495
|
-
class="
|
|
1514
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1496
1515
|
>
|
|
1497
1516
|
<input
|
|
1498
1517
|
aria-describedby="mui-20-helper-text"
|
|
1499
1518
|
aria-invalid="false"
|
|
1500
|
-
class="
|
|
1519
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1501
1520
|
id="mui-20"
|
|
1502
1521
|
type="number"
|
|
1503
1522
|
value="0.7"
|
|
@@ -1539,7 +1558,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1539
1558
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1540
1559
|
>
|
|
1541
1560
|
<label
|
|
1542
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1561
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1543
1562
|
data-shrink="true"
|
|
1544
1563
|
for="mui-21"
|
|
1545
1564
|
id="mui-21-label"
|
|
@@ -1547,12 +1566,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1547
1566
|
maxHeight
|
|
1548
1567
|
</label>
|
|
1549
1568
|
<div
|
|
1550
|
-
class="
|
|
1569
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1551
1570
|
>
|
|
1552
1571
|
<input
|
|
1553
1572
|
aria-describedby="mui-21-helper-text"
|
|
1554
1573
|
aria-invalid="false"
|
|
1555
|
-
class="
|
|
1574
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1556
1575
|
id="mui-21"
|
|
1557
1576
|
type="number"
|
|
1558
1577
|
value="1200"
|
|
@@ -1594,7 +1613,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1594
1613
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1595
1614
|
>
|
|
1596
1615
|
<label
|
|
1597
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1616
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1598
1617
|
data-shrink="true"
|
|
1599
1618
|
for="mui-22"
|
|
1600
1619
|
id="mui-22-label"
|
|
@@ -1602,12 +1621,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1602
1621
|
maxClippingSize
|
|
1603
1622
|
</label>
|
|
1604
1623
|
<div
|
|
1605
|
-
class="
|
|
1624
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1606
1625
|
>
|
|
1607
1626
|
<input
|
|
1608
1627
|
aria-describedby="mui-22-helper-text"
|
|
1609
1628
|
aria-invalid="false"
|
|
1610
|
-
class="
|
|
1629
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1611
1630
|
id="mui-22"
|
|
1612
1631
|
type="number"
|
|
1613
1632
|
value="10000"
|
|
@@ -1649,7 +1668,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1649
1668
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1650
1669
|
>
|
|
1651
1670
|
<label
|
|
1652
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1671
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1653
1672
|
data-shrink="true"
|
|
1654
1673
|
for="mui-23"
|
|
1655
1674
|
id="mui-23-label"
|
|
@@ -1657,12 +1676,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1657
1676
|
height
|
|
1658
1677
|
</label>
|
|
1659
1678
|
<div
|
|
1660
|
-
class="
|
|
1679
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1661
1680
|
>
|
|
1662
1681
|
<input
|
|
1663
1682
|
aria-describedby="mui-23-helper-text"
|
|
1664
1683
|
aria-invalid="false"
|
|
1665
|
-
class="
|
|
1684
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1666
1685
|
id="mui-23"
|
|
1667
1686
|
type="number"
|
|
1668
1687
|
value="7"
|
|
@@ -1729,7 +1748,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1729
1748
|
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
1730
1749
|
>
|
|
1731
1750
|
<span
|
|
1732
|
-
class="MuiCheckbox-root MuiCheckbox-colorPrimary
|
|
1751
|
+
class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
|
|
1733
1752
|
>
|
|
1734
1753
|
<input
|
|
1735
1754
|
class="PrivateSwitchBase-input css-1m9pwf3"
|
|
@@ -1778,7 +1797,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1778
1797
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1779
1798
|
>
|
|
1780
1799
|
<label
|
|
1781
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1800
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1782
1801
|
data-shrink="true"
|
|
1783
1802
|
for="mui-24"
|
|
1784
1803
|
id="mui-24-label"
|
|
@@ -1786,12 +1805,12 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1786
1805
|
largeInsertionIndicatorScale
|
|
1787
1806
|
</label>
|
|
1788
1807
|
<div
|
|
1789
|
-
class="
|
|
1808
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1790
1809
|
>
|
|
1791
1810
|
<input
|
|
1792
1811
|
aria-describedby="mui-24-helper-text"
|
|
1793
1812
|
aria-invalid="false"
|
|
1794
|
-
class="
|
|
1813
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1795
1814
|
id="mui-24"
|
|
1796
1815
|
type="number"
|
|
1797
1816
|
value="10"
|
|
@@ -1836,7 +1855,7 @@ exports[`ConfigurationEditor widget renders with defaults of the PileupTrack sch
|
|
|
1836
1855
|
class="MuiFormControlLabel-root MuiFormControlLabel-labelPlacementEnd css-j204z7-MuiFormControlLabel-root"
|
|
1837
1856
|
>
|
|
1838
1857
|
<span
|
|
1839
|
-
class="MuiCheckbox-root MuiCheckbox-colorPrimary
|
|
1858
|
+
class="MuiButtonBase-root MuiCheckbox-root MuiCheckbox-colorPrimary PrivateSwitchBase-root MuiCheckbox-root MuiCheckbox-colorPrimary css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root"
|
|
1840
1859
|
>
|
|
1841
1860
|
<input
|
|
1842
1861
|
class="PrivateSwitchBase-input css-1m9pwf3"
|
|
@@ -1953,7 +1972,7 @@ exports[`ConfigurationEditor widget renders with just the required model element
|
|
|
1953
1972
|
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
1954
1973
|
>
|
|
1955
1974
|
<label
|
|
1956
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-
|
|
1975
|
+
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-shrink MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiFormLabel-filled css-1sumxir-MuiFormLabel-root-MuiInputLabel-root"
|
|
1957
1976
|
data-shrink="true"
|
|
1958
1977
|
for="mui-1"
|
|
1959
1978
|
id="mui-1-label"
|
|
@@ -1961,12 +1980,12 @@ exports[`ConfigurationEditor widget renders with just the required model element
|
|
|
1961
1980
|
foo
|
|
1962
1981
|
</label>
|
|
1963
1982
|
<div
|
|
1964
|
-
class="
|
|
1983
|
+
class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
1965
1984
|
>
|
|
1966
1985
|
<input
|
|
1967
1986
|
aria-describedby="mui-1-helper-text"
|
|
1968
1987
|
aria-invalid="false"
|
|
1969
|
-
class="
|
|
1988
|
+
class="MuiInputBase-input MuiOutlinedInput-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
1970
1989
|
id="mui-1"
|
|
1971
1990
|
type="text"
|
|
1972
1991
|
value="bar"
|