@jbrowse/plugin-data-management 2.0.1 → 2.1.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/AddTrackWidget/components/AddTrackWidget.d.ts +2 -2
- package/dist/AddTrackWidget/components/AddTrackWidget.js +18 -189
- package/dist/AddTrackWidget/components/AddTrackWidget.js.map +1 -1
- package/dist/AddTrackWidget/components/ConfirmTrack.js +5 -6
- package/dist/AddTrackWidget/components/ConfirmTrack.js.map +1 -1
- package/dist/AddTrackWidget/components/DefaultAddTrackWorkflow.d.ts +7 -0
- package/dist/AddTrackWidget/components/DefaultAddTrackWorkflow.js +222 -0
- package/dist/AddTrackWidget/components/DefaultAddTrackWorkflow.js.map +1 -0
- package/dist/HierarchicalTrackSelectorWidget/components/Header.d.ts +10 -0
- package/dist/HierarchicalTrackSelectorWidget/components/Header.js +209 -0
- package/dist/HierarchicalTrackSelectorWidget/components/Header.js.map +1 -0
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +22 -231
- package/dist/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js.map +1 -1
- package/dist/HierarchicalTrackSelectorWidget/components/Node.d.ts +29 -0
- package/dist/HierarchicalTrackSelectorWidget/components/Node.js +207 -0
- package/dist/HierarchicalTrackSelectorWidget/components/Node.js.map +1 -0
- package/dist/HierarchicalTrackSelectorWidget/components/util.d.ts +3 -0
- package/dist/HierarchicalTrackSelectorWidget/components/util.js +11 -0
- package/dist/HierarchicalTrackSelectorWidget/components/util.js.map +1 -0
- package/dist/HierarchicalTrackSelectorWidget/configSchema.d.ts +2 -0
- package/dist/HierarchicalTrackSelectorWidget/configSchema.js +6 -0
- package/dist/HierarchicalTrackSelectorWidget/configSchema.js.map +1 -0
- package/dist/HierarchicalTrackSelectorWidget/index.d.ts +4 -2
- package/dist/HierarchicalTrackSelectorWidget/index.js +4 -4
- package/dist/HierarchicalTrackSelectorWidget/index.js.map +1 -1
- package/dist/HierarchicalTrackSelectorWidget/model.d.ts +10 -2
- package/dist/HierarchicalTrackSelectorWidget/model.js +35 -31
- package/dist/HierarchicalTrackSelectorWidget/model.js.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/esm/AddTrackWidget/components/AddTrackWidget.d.ts +2 -2
- package/esm/AddTrackWidget/components/AddTrackWidget.js +22 -135
- package/esm/AddTrackWidget/components/AddTrackWidget.js.map +1 -1
- package/esm/AddTrackWidget/components/ConfirmTrack.js +5 -6
- package/esm/AddTrackWidget/components/ConfirmTrack.js.map +1 -1
- package/esm/AddTrackWidget/components/DefaultAddTrackWorkflow.d.ts +7 -0
- package/esm/AddTrackWidget/components/DefaultAddTrackWorkflow.js +134 -0
- package/esm/AddTrackWidget/components/DefaultAddTrackWorkflow.js.map +1 -0
- package/esm/HierarchicalTrackSelectorWidget/components/Header.d.ts +10 -0
- package/esm/HierarchicalTrackSelectorWidget/components/Header.js +149 -0
- package/esm/HierarchicalTrackSelectorWidget/components/Header.js.map +1 -0
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js +24 -223
- package/esm/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.js.map +1 -1
- package/esm/HierarchicalTrackSelectorWidget/components/Node.d.ts +29 -0
- package/esm/HierarchicalTrackSelectorWidget/components/Node.js +149 -0
- package/esm/HierarchicalTrackSelectorWidget/components/Node.js.map +1 -0
- package/esm/HierarchicalTrackSelectorWidget/components/util.d.ts +3 -0
- package/esm/HierarchicalTrackSelectorWidget/components/util.js +5 -0
- package/esm/HierarchicalTrackSelectorWidget/components/util.js.map +1 -0
- package/esm/HierarchicalTrackSelectorWidget/configSchema.d.ts +2 -0
- package/esm/HierarchicalTrackSelectorWidget/configSchema.js +4 -0
- package/esm/HierarchicalTrackSelectorWidget/configSchema.js.map +1 -0
- package/esm/HierarchicalTrackSelectorWidget/index.d.ts +4 -2
- package/esm/HierarchicalTrackSelectorWidget/index.js +3 -3
- package/esm/HierarchicalTrackSelectorWidget/index.js.map +1 -1
- package/esm/HierarchicalTrackSelectorWidget/model.d.ts +10 -2
- package/esm/HierarchicalTrackSelectorWidget/model.js +36 -32
- package/esm/HierarchicalTrackSelectorWidget/model.js.map +1 -1
- package/esm/index.d.ts +4 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +2 -2
- package/src/AddTrackWidget/components/{AddTrackWidget.test.js → AddTrackWidget.test.tsx} +17 -32
- package/src/AddTrackWidget/components/AddTrackWidget.tsx +36 -200
- package/src/AddTrackWidget/components/ConfirmTrack.tsx +10 -10
- package/src/AddTrackWidget/components/DefaultAddTrackWorkflow.tsx +205 -0
- package/src/HierarchicalTrackSelectorWidget/components/Header.tsx +287 -0
- package/src/HierarchicalTrackSelectorWidget/components/HierarchicalTrackSelector.tsx +19 -438
- package/src/HierarchicalTrackSelectorWidget/components/Node.tsx +284 -0
- package/src/HierarchicalTrackSelectorWidget/components/util.ts +11 -0
- package/src/HierarchicalTrackSelectorWidget/configSchema.ts +3 -0
- package/src/HierarchicalTrackSelectorWidget/index.ts +4 -6
- package/src/HierarchicalTrackSelectorWidget/model.ts +45 -41
- package/src/index.ts +4 -1
- package/src/AddTrackWidget/components/__snapshots__/AddTrackWidget.test.js.snap +0 -331
|
@@ -1,331 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`<AddTrackWidget /> renders 1`] = `
|
|
4
|
-
<div
|
|
5
|
-
class="tss-1ohm0fb-root"
|
|
6
|
-
>
|
|
7
|
-
<div
|
|
8
|
-
class="MuiStepper-root MuiStepper-vertical tss-1v8zuu8-stepper css-9tmuzo-MuiStepper-root"
|
|
9
|
-
>
|
|
10
|
-
<div
|
|
11
|
-
class="MuiStep-root MuiStep-vertical css-8wcvy5-MuiStep-root"
|
|
12
|
-
>
|
|
13
|
-
<span
|
|
14
|
-
class="MuiStepLabel-root MuiStepLabel-vertical css-14sza3e-MuiStepLabel-root"
|
|
15
|
-
>
|
|
16
|
-
<span
|
|
17
|
-
class="MuiStepLabel-iconContainer css-vnkopk-MuiStepLabel-iconContainer"
|
|
18
|
-
>
|
|
19
|
-
<svg
|
|
20
|
-
aria-hidden="true"
|
|
21
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiStepIcon-root Mui-active css-1u4zpwo-MuiSvgIcon-root-MuiStepIcon-root"
|
|
22
|
-
focusable="false"
|
|
23
|
-
viewBox="0 0 24 24"
|
|
24
|
-
>
|
|
25
|
-
<circle
|
|
26
|
-
cx="12"
|
|
27
|
-
cy="12"
|
|
28
|
-
r="12"
|
|
29
|
-
/>
|
|
30
|
-
<text
|
|
31
|
-
class="MuiStepIcon-text css-117w1su-MuiStepIcon-text"
|
|
32
|
-
dominant-baseline="central"
|
|
33
|
-
text-anchor="middle"
|
|
34
|
-
x="12"
|
|
35
|
-
y="12"
|
|
36
|
-
>
|
|
37
|
-
1
|
|
38
|
-
</text>
|
|
39
|
-
</svg>
|
|
40
|
-
</span>
|
|
41
|
-
<span
|
|
42
|
-
class="MuiStepLabel-labelContainer css-16ubnlw-MuiStepLabel-labelContainer"
|
|
43
|
-
>
|
|
44
|
-
<span
|
|
45
|
-
class="MuiStepLabel-label Mui-active css-qivjh0-MuiStepLabel-label"
|
|
46
|
-
>
|
|
47
|
-
Enter track data
|
|
48
|
-
</span>
|
|
49
|
-
</span>
|
|
50
|
-
</span>
|
|
51
|
-
<div
|
|
52
|
-
class="MuiStepContent-root css-14yr603-MuiStepContent-root"
|
|
53
|
-
>
|
|
54
|
-
<div
|
|
55
|
-
class="MuiCollapse-root MuiCollapse-vertical MuiStepContent-transition MuiCollapse-entered css-1rw7nzj-MuiCollapse-root-MuiStepContent-transition"
|
|
56
|
-
style="min-height: 0px;"
|
|
57
|
-
>
|
|
58
|
-
<div
|
|
59
|
-
class="MuiCollapse-wrapper MuiCollapse-vertical css-smkl36-MuiCollapse-wrapper"
|
|
60
|
-
>
|
|
61
|
-
<div
|
|
62
|
-
class="MuiCollapse-wrapperInner MuiCollapse-vertical css-9l5vo-MuiCollapse-wrapperInner"
|
|
63
|
-
>
|
|
64
|
-
<div
|
|
65
|
-
class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation1 tss-hhqfdh-paper css-1ps6pg7-MuiPaper-root"
|
|
66
|
-
>
|
|
67
|
-
<div
|
|
68
|
-
class="MuiBox-root css-k008qs"
|
|
69
|
-
>
|
|
70
|
-
<label
|
|
71
|
-
class="MuiInputLabel-root MuiInputLabel-animated MuiInputLabel-shrink MuiFormLabel-root MuiFormLabel-colorPrimary css-1foa3kv-MuiFormLabel-root-MuiInputLabel-root"
|
|
72
|
-
data-shrink="true"
|
|
73
|
-
>
|
|
74
|
-
Main file
|
|
75
|
-
</label>
|
|
76
|
-
</div>
|
|
77
|
-
<div
|
|
78
|
-
class="MuiBox-root css-1xhj18k"
|
|
79
|
-
>
|
|
80
|
-
<div
|
|
81
|
-
class="MuiBox-root css-0"
|
|
82
|
-
>
|
|
83
|
-
<div
|
|
84
|
-
aria-label="file, url, or account picker"
|
|
85
|
-
class="MuiToggleButtonGroup-root css-1gjgmky-MuiToggleButtonGroup-root"
|
|
86
|
-
role="group"
|
|
87
|
-
>
|
|
88
|
-
<button
|
|
89
|
-
aria-label="local file"
|
|
90
|
-
aria-pressed="false"
|
|
91
|
-
class="MuiButtonBase-root MuiToggleButton-root MuiToggleButton-sizeMedium MuiToggleButton-standard MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal css-ueukts-MuiButtonBase-root-MuiToggleButton-root"
|
|
92
|
-
tabindex="0"
|
|
93
|
-
type="button"
|
|
94
|
-
value="file"
|
|
95
|
-
>
|
|
96
|
-
File
|
|
97
|
-
<span
|
|
98
|
-
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
99
|
-
/>
|
|
100
|
-
</button>
|
|
101
|
-
<button
|
|
102
|
-
aria-label="url"
|
|
103
|
-
aria-pressed="true"
|
|
104
|
-
class="MuiButtonBase-root MuiToggleButton-root Mui-selected MuiToggleButton-sizeMedium MuiToggleButton-standard MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal css-ueukts-MuiButtonBase-root-MuiToggleButton-root"
|
|
105
|
-
tabindex="0"
|
|
106
|
-
type="button"
|
|
107
|
-
value="url"
|
|
108
|
-
>
|
|
109
|
-
URL
|
|
110
|
-
<span
|
|
111
|
-
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
112
|
-
/>
|
|
113
|
-
</button>
|
|
114
|
-
</div>
|
|
115
|
-
</div>
|
|
116
|
-
</div>
|
|
117
|
-
<div
|
|
118
|
-
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
119
|
-
>
|
|
120
|
-
<label
|
|
121
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root"
|
|
122
|
-
data-shrink="false"
|
|
123
|
-
for="mui-1"
|
|
124
|
-
id="mui-1-label"
|
|
125
|
-
>
|
|
126
|
-
Enter URL
|
|
127
|
-
</label>
|
|
128
|
-
<div
|
|
129
|
-
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
130
|
-
>
|
|
131
|
-
<input
|
|
132
|
-
aria-invalid="false"
|
|
133
|
-
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
134
|
-
data-testid="urlInput"
|
|
135
|
-
id="mui-1"
|
|
136
|
-
type="text"
|
|
137
|
-
value=""
|
|
138
|
-
/>
|
|
139
|
-
<fieldset
|
|
140
|
-
aria-hidden="true"
|
|
141
|
-
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
142
|
-
>
|
|
143
|
-
<legend
|
|
144
|
-
class="css-1ftyaf0"
|
|
145
|
-
>
|
|
146
|
-
<span>
|
|
147
|
-
Enter URL
|
|
148
|
-
</span>
|
|
149
|
-
</legend>
|
|
150
|
-
</fieldset>
|
|
151
|
-
</div>
|
|
152
|
-
</div>
|
|
153
|
-
<p
|
|
154
|
-
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
155
|
-
/>
|
|
156
|
-
<div
|
|
157
|
-
class="tss-ehv88g-spacer"
|
|
158
|
-
/>
|
|
159
|
-
<div
|
|
160
|
-
class="MuiBox-root css-k008qs"
|
|
161
|
-
>
|
|
162
|
-
<label
|
|
163
|
-
class="MuiInputLabel-root MuiInputLabel-animated MuiInputLabel-shrink MuiFormLabel-root MuiFormLabel-colorPrimary css-1foa3kv-MuiFormLabel-root-MuiInputLabel-root"
|
|
164
|
-
data-shrink="true"
|
|
165
|
-
>
|
|
166
|
-
Index file
|
|
167
|
-
</label>
|
|
168
|
-
</div>
|
|
169
|
-
<div
|
|
170
|
-
class="MuiBox-root css-1xhj18k"
|
|
171
|
-
>
|
|
172
|
-
<div
|
|
173
|
-
class="MuiBox-root css-0"
|
|
174
|
-
>
|
|
175
|
-
<div
|
|
176
|
-
aria-label="file, url, or account picker"
|
|
177
|
-
class="MuiToggleButtonGroup-root css-1gjgmky-MuiToggleButtonGroup-root"
|
|
178
|
-
role="group"
|
|
179
|
-
>
|
|
180
|
-
<button
|
|
181
|
-
aria-label="local file"
|
|
182
|
-
aria-pressed="false"
|
|
183
|
-
class="MuiButtonBase-root MuiToggleButton-root MuiToggleButton-sizeMedium MuiToggleButton-standard MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal css-ueukts-MuiButtonBase-root-MuiToggleButton-root"
|
|
184
|
-
tabindex="0"
|
|
185
|
-
type="button"
|
|
186
|
-
value="file"
|
|
187
|
-
>
|
|
188
|
-
File
|
|
189
|
-
<span
|
|
190
|
-
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
191
|
-
/>
|
|
192
|
-
</button>
|
|
193
|
-
<button
|
|
194
|
-
aria-label="url"
|
|
195
|
-
aria-pressed="true"
|
|
196
|
-
class="MuiButtonBase-root MuiToggleButton-root Mui-selected MuiToggleButton-sizeMedium MuiToggleButton-standard MuiToggleButtonGroup-grouped MuiToggleButtonGroup-groupedHorizontal css-ueukts-MuiButtonBase-root-MuiToggleButton-root"
|
|
197
|
-
tabindex="0"
|
|
198
|
-
type="button"
|
|
199
|
-
value="url"
|
|
200
|
-
>
|
|
201
|
-
URL
|
|
202
|
-
<span
|
|
203
|
-
class="MuiTouchRipple-root css-8je8zh-MuiTouchRipple-root"
|
|
204
|
-
/>
|
|
205
|
-
</button>
|
|
206
|
-
</div>
|
|
207
|
-
</div>
|
|
208
|
-
</div>
|
|
209
|
-
<div
|
|
210
|
-
class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-wb57ya-MuiFormControl-root-MuiTextField-root"
|
|
211
|
-
>
|
|
212
|
-
<label
|
|
213
|
-
class="MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-outlined MuiFormLabel-root MuiFormLabel-colorPrimary css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root"
|
|
214
|
-
data-shrink="false"
|
|
215
|
-
for="mui-2"
|
|
216
|
-
id="mui-2-label"
|
|
217
|
-
>
|
|
218
|
-
Enter URL
|
|
219
|
-
</label>
|
|
220
|
-
<div
|
|
221
|
-
class="MuiOutlinedInput-root MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl css-md26zr-MuiInputBase-root-MuiOutlinedInput-root"
|
|
222
|
-
>
|
|
223
|
-
<input
|
|
224
|
-
aria-invalid="false"
|
|
225
|
-
class="MuiOutlinedInput-input MuiInputBase-input css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input"
|
|
226
|
-
data-testid="urlInput"
|
|
227
|
-
id="mui-2"
|
|
228
|
-
type="text"
|
|
229
|
-
value=""
|
|
230
|
-
/>
|
|
231
|
-
<fieldset
|
|
232
|
-
aria-hidden="true"
|
|
233
|
-
class="MuiOutlinedInput-notchedOutline css-1d3z3hw-MuiOutlinedInput-notchedOutline"
|
|
234
|
-
>
|
|
235
|
-
<legend
|
|
236
|
-
class="css-1ftyaf0"
|
|
237
|
-
>
|
|
238
|
-
<span>
|
|
239
|
-
Enter URL
|
|
240
|
-
</span>
|
|
241
|
-
</legend>
|
|
242
|
-
</fieldset>
|
|
243
|
-
</div>
|
|
244
|
-
</div>
|
|
245
|
-
<p
|
|
246
|
-
class="MuiFormHelperText-root css-1d1r5q-MuiFormHelperText-root"
|
|
247
|
-
>
|
|
248
|
-
(Optional) The URL of the index file is automatically inferred from the URL of the main file if it is not supplied.
|
|
249
|
-
</p>
|
|
250
|
-
</div>
|
|
251
|
-
<div
|
|
252
|
-
class="tss-1spe31o-actionsContainer"
|
|
253
|
-
>
|
|
254
|
-
<button
|
|
255
|
-
class="MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButtonBase-root Mui-disabled tss-11xjtta-button css-1e6y48t-MuiButtonBase-root-MuiButton-root"
|
|
256
|
-
disabled=""
|
|
257
|
-
tabindex="-1"
|
|
258
|
-
type="button"
|
|
259
|
-
>
|
|
260
|
-
Back
|
|
261
|
-
</button>
|
|
262
|
-
<button
|
|
263
|
-
class="MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButtonBase-root Mui-disabled tss-11xjtta-button css-sghohy-MuiButtonBase-root-MuiButton-root"
|
|
264
|
-
data-testid="addTrackNextButton"
|
|
265
|
-
disabled=""
|
|
266
|
-
tabindex="-1"
|
|
267
|
-
type="button"
|
|
268
|
-
>
|
|
269
|
-
Next
|
|
270
|
-
</button>
|
|
271
|
-
</div>
|
|
272
|
-
</div>
|
|
273
|
-
</div>
|
|
274
|
-
</div>
|
|
275
|
-
</div>
|
|
276
|
-
</div>
|
|
277
|
-
<div
|
|
278
|
-
class="MuiStepConnector-root MuiStepConnector-vertical Mui-disabled css-1pe7n21-MuiStepConnector-root"
|
|
279
|
-
>
|
|
280
|
-
<span
|
|
281
|
-
class="MuiStepConnector-line MuiStepConnector-lineVertical css-8t49rw-MuiStepConnector-line"
|
|
282
|
-
/>
|
|
283
|
-
</div>
|
|
284
|
-
<div
|
|
285
|
-
class="MuiStep-root MuiStep-vertical css-8wcvy5-MuiStep-root"
|
|
286
|
-
>
|
|
287
|
-
<span
|
|
288
|
-
class="MuiStepLabel-root MuiStepLabel-vertical Mui-disabled css-14sza3e-MuiStepLabel-root"
|
|
289
|
-
>
|
|
290
|
-
<span
|
|
291
|
-
class="MuiStepLabel-iconContainer css-vnkopk-MuiStepLabel-iconContainer"
|
|
292
|
-
>
|
|
293
|
-
<svg
|
|
294
|
-
aria-hidden="true"
|
|
295
|
-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiStepIcon-root css-1u4zpwo-MuiSvgIcon-root-MuiStepIcon-root"
|
|
296
|
-
focusable="false"
|
|
297
|
-
viewBox="0 0 24 24"
|
|
298
|
-
>
|
|
299
|
-
<circle
|
|
300
|
-
cx="12"
|
|
301
|
-
cy="12"
|
|
302
|
-
r="12"
|
|
303
|
-
/>
|
|
304
|
-
<text
|
|
305
|
-
class="MuiStepIcon-text css-117w1su-MuiStepIcon-text"
|
|
306
|
-
dominant-baseline="central"
|
|
307
|
-
text-anchor="middle"
|
|
308
|
-
x="12"
|
|
309
|
-
y="12"
|
|
310
|
-
>
|
|
311
|
-
2
|
|
312
|
-
</text>
|
|
313
|
-
</svg>
|
|
314
|
-
</span>
|
|
315
|
-
<span
|
|
316
|
-
class="MuiStepLabel-labelContainer css-16ubnlw-MuiStepLabel-labelContainer"
|
|
317
|
-
>
|
|
318
|
-
<span
|
|
319
|
-
class="MuiStepLabel-label Mui-disabled css-qivjh0-MuiStepLabel-label"
|
|
320
|
-
>
|
|
321
|
-
Confirm track type
|
|
322
|
-
</span>
|
|
323
|
-
</span>
|
|
324
|
-
</span>
|
|
325
|
-
<div
|
|
326
|
-
class="MuiStepContent-root MuiStepContent-last css-1mz1l2x-MuiStepContent-root"
|
|
327
|
-
/>
|
|
328
|
-
</div>
|
|
329
|
-
</div>
|
|
330
|
-
</div>
|
|
331
|
-
`;
|