@truedat/qx 7.13.7 → 7.13.9
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/package.json +3 -3
- package/src/components/QxRoutes.js +8 -6
- package/src/components/common/ResourceSelector.js +25 -6
- package/src/components/common/TypeSelector.js +14 -9
- package/src/components/common/__tests__/__snapshots__/ResourceSelector.spec.js.snap +269 -241
- package/src/components/common/__tests__/__snapshots__/TypeSelector.spec.js.snap +198 -190
- package/src/components/common/expressions/Clauses.js +19 -11
- package/src/components/common/expressions/Condition.js +32 -31
- package/src/components/common/expressions/FieldSelector.js +30 -16
- package/src/components/common/expressions/FunctionSelector.js +38 -23
- package/src/components/common/expressions/ShapeSelector.js +6 -5
- package/src/components/common/expressions/__tests__/ShapeSelector.spec.js +1 -1
- package/src/components/common/expressions/__tests__/__snapshots__/Clauses.spec.js.snap +36 -12
- package/src/components/common/expressions/__tests__/__snapshots__/Condition.spec.js.snap +87 -75
- package/src/components/common/expressions/__tests__/__snapshots__/ConstantSelector.spec.js.snap +99 -97
- package/src/components/common/expressions/__tests__/__snapshots__/Expression.spec.js.snap +236 -216
- package/src/components/common/expressions/__tests__/__snapshots__/FunctionArgs.spec.js.snap +97 -89
- package/src/components/common/expressions/__tests__/__snapshots__/FunctionSelector.spec.js.snap +373 -345
- package/src/components/common/expressions/constantInputs/AnySelector.js +2 -1
- package/src/components/common/expressions/constantInputs/BooleanSelector.js +20 -15
- package/src/components/common/expressions/constantInputs/DefaultSelector.js +0 -1
- package/src/components/common/expressions/constantInputs/__tests__/__snapshots__/AnySelector.spec.js.snap +189 -182
- package/src/components/common/expressions/constantInputs/__tests__/__snapshots__/BooleanSelector.spec.js.snap +74 -66
- package/src/components/common/expressions/constantInputs/__tests__/__snapshots__/DefaultSelector.spec.js.snap +2 -4
- package/src/components/common/resourceSelectors/DataStructureSelector.js +5 -4
- package/src/components/common/resourceSelectors/DataViewSelector.js +4 -3
- package/src/components/common/resourceSelectors/ReferenceDatasetSelector.js +4 -3
- package/src/components/common/resourceSelectors/__tests__/__snapshots__/DataStructureSelector.spec.js.snap +65 -61
- package/src/components/common/resourceSelectors/__tests__/__snapshots__/DataViewSelector.spec.js.snap +38 -34
- package/src/components/common/resourceSelectors/__tests__/__snapshots__/ReferenceDatasetSelector.spec.js.snap +38 -34
- package/src/components/dataViews/BreadCrumb.js +20 -0
- package/src/components/dataViews/DataViewEditor.js +169 -178
- package/src/components/dataViews/DataViews.js +113 -135
- package/src/components/dataViews/__tests__/AdvancedDataViewEditor.spec.js +260 -0
- package/src/components/dataViews/__tests__/DataViewEditor.spec.js +173 -239
- package/src/components/dataViews/__tests__/DataViewSelect.spec.js +1 -1
- package/src/components/dataViews/__tests__/DataViews.spec.js +124 -51
- package/src/components/dataViews/__tests__/Queryable.spec.js +1 -1
- package/src/components/dataViews/__tests__/Queryables.spec.js +1 -1
- package/src/components/dataViews/__tests__/SimpleDataViewEditor.spec.js +164 -0
- package/src/components/dataViews/__tests__/__snapshots__/{DataViewEditor.spec.js.snap → AdvancedDataViewEditor.spec.js.snap} +230 -200
- package/src/components/dataViews/__tests__/__snapshots__/DataViews.spec.js.snap +141 -29
- package/src/components/dataViews/__tests__/__snapshots__/Queryable.spec.js.snap +184 -141
- package/src/components/dataViews/__tests__/__snapshots__/Queryables.spec.js.snap +126 -91
- package/src/components/dataViews/actions/CancelButton.js +33 -0
- package/src/components/dataViews/actions/DeleteButton.js +33 -0
- package/src/components/dataViews/advancedForm/AdvancedDataViewEditor.js +159 -0
- package/src/components/dataViews/{DataViewSelect.js → advancedForm/DataViewSelect.js} +2 -2
- package/src/components/dataViews/{Queryable.js → advancedForm/Queryable.js} +2 -2
- package/src/components/dataViews/queryableFunctions.js +7 -0
- package/src/components/dataViews/queryableProperties/GroupBy.js +23 -27
- package/src/components/dataViews/queryableProperties/Join.js +0 -3
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/From.spec.js.snap +30 -26
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/GroupBy.spec.js.snap +130 -102
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/Join.spec.js.snap +42 -31
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/Select.spec.js.snap +81 -69
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/SelectField.spec.js.snap +62 -54
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/Where.spec.js.snap +12 -4
- package/src/components/dataViews/simpleForm/AggregationForm.js +179 -0
- package/src/components/dataViews/simpleForm/DatasetForm.js +199 -0
- package/src/components/dataViews/simpleForm/FormQueryable.js +114 -0
- package/src/components/dataViews/simpleForm/InformationForm.js +107 -0
- package/src/components/dataViews/simpleForm/SelectionForm.js +50 -0
- package/src/components/dataViews/simpleForm/SimpleDataViewEditor.js +265 -0
- package/src/components/functions/__tests__/__snapshots__/FunctionEditor.spec.js.snap +663 -631
- package/src/components/functions/__tests__/__snapshots__/FunctionParams.spec.js.snap +113 -109
- package/src/components/qualityControls/__tests__/__snapshots__/ControlProperties.spec.js.snap +92 -76
- package/src/components/qualityControls/__tests__/__snapshots__/EditQualityControl.spec.js.snap +108 -80
- package/src/components/qualityControls/__tests__/__snapshots__/NewDraftQualityControl.spec.js.snap +108 -80
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControlEditor.spec.js.snap +108 -80
- package/src/components/qualityControls/controlProperties/__tests__/__snapshots__/Count.spec.js.snap +40 -36
- package/src/components/qualityControls/controlProperties/__tests__/__snapshots__/Ratio.spec.js.snap +92 -76
- package/src/hooks/useDataViews.js +7 -0
- /package/src/components/dataViews/{Queryables.js → advancedForm/Queryables.js} +0 -0
|
@@ -9,38 +9,42 @@ exports[`<ResourceSelector /> matches the latest snapshot 1`] = `
|
|
|
9
9
|
queryables.form.resource
|
|
10
10
|
</label>
|
|
11
11
|
<div
|
|
12
|
-
|
|
13
|
-
class="ui selection dropdown"
|
|
14
|
-
role="listbox"
|
|
15
|
-
tabindex="0"
|
|
12
|
+
class="field"
|
|
16
13
|
>
|
|
17
14
|
<div
|
|
18
|
-
aria-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
>
|
|
23
|
-
queryables.resource.type
|
|
24
|
-
</div>
|
|
25
|
-
<i
|
|
26
|
-
aria-hidden="true"
|
|
27
|
-
class="dropdown icon"
|
|
28
|
-
/>
|
|
29
|
-
<div
|
|
30
|
-
class="menu transition"
|
|
15
|
+
aria-expanded="false"
|
|
16
|
+
class="ui selection dropdown"
|
|
17
|
+
role="listbox"
|
|
18
|
+
tabindex="0"
|
|
31
19
|
>
|
|
32
20
|
<div
|
|
33
|
-
aria-
|
|
34
|
-
aria-
|
|
35
|
-
class="
|
|
36
|
-
role="
|
|
37
|
-
style="pointer-events: all;"
|
|
21
|
+
aria-atomic="true"
|
|
22
|
+
aria-live="polite"
|
|
23
|
+
class="divider default text"
|
|
24
|
+
role="alert"
|
|
38
25
|
>
|
|
39
|
-
|
|
40
|
-
|
|
26
|
+
queryables.resource.type
|
|
27
|
+
</div>
|
|
28
|
+
<i
|
|
29
|
+
aria-hidden="true"
|
|
30
|
+
class="dropdown icon"
|
|
31
|
+
/>
|
|
32
|
+
<div
|
|
33
|
+
class="menu transition"
|
|
34
|
+
>
|
|
35
|
+
<div
|
|
36
|
+
aria-checked="false"
|
|
37
|
+
aria-selected="true"
|
|
38
|
+
class="selected item"
|
|
39
|
+
role="option"
|
|
40
|
+
style="pointer-events: all;"
|
|
41
41
|
>
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
<span
|
|
43
|
+
class="text"
|
|
44
|
+
>
|
|
45
|
+
queryables.resource.type.data_structure
|
|
46
|
+
</span>
|
|
47
|
+
</div>
|
|
44
48
|
</div>
|
|
45
49
|
</div>
|
|
46
50
|
</div>
|
|
@@ -57,76 +61,11 @@ exports[`<ResourceSelector /> select data_structure 1`] = `
|
|
|
57
61
|
queryables.form.resource
|
|
58
62
|
</label>
|
|
59
63
|
<div
|
|
60
|
-
|
|
61
|
-
class="ui selection dropdown"
|
|
62
|
-
role="listbox"
|
|
63
|
-
tabindex="0"
|
|
64
|
+
class="field"
|
|
64
65
|
>
|
|
65
66
|
<div
|
|
66
|
-
aria-atomic="true"
|
|
67
|
-
aria-live="polite"
|
|
68
|
-
class="divider text"
|
|
69
|
-
role="alert"
|
|
70
|
-
>
|
|
71
|
-
queryables.resource.type.data_structure
|
|
72
|
-
</div>
|
|
73
|
-
<i
|
|
74
|
-
aria-hidden="true"
|
|
75
|
-
class="dropdown icon"
|
|
76
|
-
/>
|
|
77
|
-
<div
|
|
78
|
-
class="menu transition"
|
|
79
|
-
>
|
|
80
|
-
<div
|
|
81
|
-
aria-checked="true"
|
|
82
|
-
aria-selected="true"
|
|
83
|
-
class="active selected item"
|
|
84
|
-
role="option"
|
|
85
|
-
style="pointer-events: all;"
|
|
86
|
-
>
|
|
87
|
-
<span
|
|
88
|
-
class="text"
|
|
89
|
-
>
|
|
90
|
-
queryables.resource.type.data_structure
|
|
91
|
-
</span>
|
|
92
|
-
</div>
|
|
93
|
-
</div>
|
|
94
|
-
</div>
|
|
95
|
-
</div>
|
|
96
|
-
<div>
|
|
97
|
-
<i
|
|
98
|
-
aria-hidden="true"
|
|
99
|
-
class="dropdown icon"
|
|
100
|
-
/>
|
|
101
|
-
</div>
|
|
102
|
-
<div
|
|
103
|
-
class="ui segment"
|
|
104
|
-
>
|
|
105
|
-
<div
|
|
106
|
-
class="ui loading action left icon input"
|
|
107
|
-
>
|
|
108
|
-
<i
|
|
109
|
-
aria-hidden="true"
|
|
110
|
-
class="search link icon"
|
|
111
|
-
/>
|
|
112
|
-
<input
|
|
113
|
-
placeholder="search.placeholder"
|
|
114
|
-
type="text"
|
|
115
|
-
value=""
|
|
116
|
-
/>
|
|
117
|
-
<button
|
|
118
|
-
class="ui icon button"
|
|
119
|
-
>
|
|
120
|
-
<i
|
|
121
|
-
aria-hidden="true"
|
|
122
|
-
class="calendar alternate outline icon"
|
|
123
|
-
/>
|
|
124
|
-
</button>
|
|
125
|
-
<div
|
|
126
|
-
aria-busy="true"
|
|
127
|
-
aria-disabled="false"
|
|
128
67
|
aria-expanded="false"
|
|
129
|
-
class="ui
|
|
68
|
+
class="ui selection dropdown"
|
|
130
69
|
role="listbox"
|
|
131
70
|
tabindex="0"
|
|
132
71
|
>
|
|
@@ -136,58 +75,131 @@ exports[`<ResourceSelector /> select data_structure 1`] = `
|
|
|
136
75
|
class="divider text"
|
|
137
76
|
role="alert"
|
|
138
77
|
>
|
|
139
|
-
|
|
78
|
+
queryables.resource.type.data_structure
|
|
140
79
|
</div>
|
|
141
80
|
<i
|
|
142
81
|
aria-hidden="true"
|
|
143
|
-
class="
|
|
82
|
+
class="dropdown icon"
|
|
144
83
|
/>
|
|
145
84
|
<div
|
|
146
85
|
class="menu transition"
|
|
147
86
|
>
|
|
148
87
|
<div
|
|
149
|
-
|
|
88
|
+
aria-checked="true"
|
|
89
|
+
aria-selected="true"
|
|
90
|
+
class="active selected item"
|
|
150
91
|
role="option"
|
|
92
|
+
style="pointer-events: all;"
|
|
151
93
|
>
|
|
152
|
-
<
|
|
153
|
-
|
|
154
|
-
|
|
94
|
+
<span
|
|
95
|
+
class="text"
|
|
96
|
+
>
|
|
97
|
+
queryables.resource.type.data_structure
|
|
98
|
+
</span>
|
|
155
99
|
</div>
|
|
156
100
|
</div>
|
|
157
101
|
</div>
|
|
158
102
|
</div>
|
|
103
|
+
</div>
|
|
104
|
+
<div
|
|
105
|
+
class="field"
|
|
106
|
+
>
|
|
107
|
+
<div>
|
|
108
|
+
<i
|
|
109
|
+
aria-hidden="true"
|
|
110
|
+
class="dropdown icon"
|
|
111
|
+
/>
|
|
112
|
+
</div>
|
|
159
113
|
<div
|
|
160
|
-
class="
|
|
161
|
-
/>
|
|
162
|
-
<div
|
|
163
|
-
class="dimmed dimmable structure-table-overflow"
|
|
114
|
+
class="ui segment"
|
|
164
115
|
>
|
|
165
116
|
<div
|
|
166
|
-
class="ui
|
|
167
|
-
style="display: flex;"
|
|
117
|
+
class="ui loading action left icon input"
|
|
168
118
|
>
|
|
119
|
+
<i
|
|
120
|
+
aria-hidden="true"
|
|
121
|
+
class="search link icon"
|
|
122
|
+
/>
|
|
123
|
+
<input
|
|
124
|
+
placeholder="search.placeholder"
|
|
125
|
+
type="text"
|
|
126
|
+
value=""
|
|
127
|
+
/>
|
|
128
|
+
<button
|
|
129
|
+
class="ui icon button"
|
|
130
|
+
>
|
|
131
|
+
<i
|
|
132
|
+
aria-hidden="true"
|
|
133
|
+
class="calendar alternate outline icon"
|
|
134
|
+
/>
|
|
135
|
+
</button>
|
|
169
136
|
<div
|
|
170
|
-
|
|
137
|
+
aria-busy="true"
|
|
138
|
+
aria-disabled="false"
|
|
139
|
+
aria-expanded="false"
|
|
140
|
+
class="ui loading button floating labeled scrolling dropdown icon"
|
|
141
|
+
role="listbox"
|
|
142
|
+
tabindex="0"
|
|
171
143
|
>
|
|
172
144
|
<div
|
|
173
|
-
|
|
145
|
+
aria-atomic="true"
|
|
146
|
+
aria-live="polite"
|
|
147
|
+
class="divider text"
|
|
148
|
+
role="alert"
|
|
149
|
+
>
|
|
150
|
+
Filters
|
|
151
|
+
</div>
|
|
152
|
+
<i
|
|
153
|
+
aria-hidden="true"
|
|
154
|
+
class="filter icon"
|
|
174
155
|
/>
|
|
156
|
+
<div
|
|
157
|
+
class="menu transition"
|
|
158
|
+
>
|
|
159
|
+
<div
|
|
160
|
+
class="item"
|
|
161
|
+
role="option"
|
|
162
|
+
>
|
|
163
|
+
<em>
|
|
164
|
+
(reset filters)
|
|
165
|
+
</em>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
175
168
|
</div>
|
|
176
169
|
</div>
|
|
177
170
|
<div
|
|
178
|
-
class="
|
|
171
|
+
class="selectedFilters"
|
|
172
|
+
/>
|
|
173
|
+
<div
|
|
174
|
+
class="dimmed dimmable structure-table-overflow"
|
|
179
175
|
>
|
|
180
|
-
<i
|
|
181
|
-
aria-hidden="true"
|
|
182
|
-
class="search icon"
|
|
183
|
-
/>
|
|
184
176
|
<div
|
|
185
|
-
class="
|
|
177
|
+
class="ui active transition visible inverted dimmer"
|
|
178
|
+
style="display: flex;"
|
|
186
179
|
>
|
|
187
180
|
<div
|
|
188
|
-
class="
|
|
181
|
+
class="content"
|
|
189
182
|
>
|
|
190
|
-
|
|
183
|
+
<div
|
|
184
|
+
class="ui large loader"
|
|
185
|
+
/>
|
|
186
|
+
</div>
|
|
187
|
+
</div>
|
|
188
|
+
<div
|
|
189
|
+
class="ui icon info message"
|
|
190
|
+
>
|
|
191
|
+
<i
|
|
192
|
+
aria-hidden="true"
|
|
193
|
+
class="search icon"
|
|
194
|
+
/>
|
|
195
|
+
<div
|
|
196
|
+
class="content"
|
|
197
|
+
>
|
|
198
|
+
<div
|
|
199
|
+
class="header"
|
|
200
|
+
>
|
|
201
|
+
structures.loading.header
|
|
202
|
+
</div>
|
|
191
203
|
</div>
|
|
192
204
|
</div>
|
|
193
205
|
</div>
|
|
@@ -205,39 +217,91 @@ exports[`<ResourceSelector /> select data_view 1`] = `
|
|
|
205
217
|
queryables.form.resource
|
|
206
218
|
</label>
|
|
207
219
|
<div
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
220
|
+
class="field"
|
|
221
|
+
>
|
|
222
|
+
<div
|
|
223
|
+
aria-expanded="false"
|
|
224
|
+
class="ui selection dropdown"
|
|
225
|
+
role="listbox"
|
|
226
|
+
tabindex="0"
|
|
227
|
+
>
|
|
228
|
+
<div
|
|
229
|
+
aria-atomic="true"
|
|
230
|
+
aria-live="polite"
|
|
231
|
+
class="divider text"
|
|
232
|
+
role="alert"
|
|
233
|
+
>
|
|
234
|
+
queryables.resource.type.data_view
|
|
235
|
+
</div>
|
|
236
|
+
<i
|
|
237
|
+
aria-hidden="true"
|
|
238
|
+
class="dropdown icon"
|
|
239
|
+
/>
|
|
240
|
+
<div
|
|
241
|
+
class="menu transition"
|
|
242
|
+
>
|
|
243
|
+
<div
|
|
244
|
+
aria-checked="false"
|
|
245
|
+
aria-selected="false"
|
|
246
|
+
class="item"
|
|
247
|
+
role="option"
|
|
248
|
+
style="pointer-events: all;"
|
|
249
|
+
>
|
|
250
|
+
<span
|
|
251
|
+
class="text"
|
|
252
|
+
>
|
|
253
|
+
queryables.resource.type.data_structure
|
|
254
|
+
</span>
|
|
255
|
+
</div>
|
|
256
|
+
<div
|
|
257
|
+
aria-checked="true"
|
|
258
|
+
aria-selected="true"
|
|
259
|
+
class="active selected item"
|
|
260
|
+
role="option"
|
|
261
|
+
style="pointer-events: all;"
|
|
262
|
+
>
|
|
263
|
+
<span
|
|
264
|
+
class="text"
|
|
265
|
+
>
|
|
266
|
+
queryables.resource.type.data_view
|
|
267
|
+
</span>
|
|
268
|
+
</div>
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
</div>
|
|
272
|
+
</div>
|
|
273
|
+
<div
|
|
274
|
+
class="field"
|
|
275
|
+
>
|
|
276
|
+
<div
|
|
277
|
+
aria-expanded="true"
|
|
278
|
+
class="ui active visible fluid search selection dropdown"
|
|
279
|
+
role="combobox"
|
|
212
280
|
>
|
|
281
|
+
<input
|
|
282
|
+
aria-autocomplete="list"
|
|
283
|
+
autocomplete="off"
|
|
284
|
+
class="search"
|
|
285
|
+
tabindex="0"
|
|
286
|
+
type="text"
|
|
287
|
+
value=""
|
|
288
|
+
/>
|
|
213
289
|
<div
|
|
214
290
|
aria-atomic="true"
|
|
215
291
|
aria-live="polite"
|
|
216
292
|
class="divider text"
|
|
217
293
|
role="alert"
|
|
218
294
|
>
|
|
219
|
-
|
|
295
|
+
UserDataView
|
|
220
296
|
</div>
|
|
221
297
|
<i
|
|
222
298
|
aria-hidden="true"
|
|
223
299
|
class="dropdown icon"
|
|
224
300
|
/>
|
|
225
301
|
<div
|
|
226
|
-
class="menu transition"
|
|
302
|
+
class="visible menu transition"
|
|
303
|
+
role="listbox"
|
|
227
304
|
>
|
|
228
|
-
<div
|
|
229
|
-
aria-checked="false"
|
|
230
|
-
aria-selected="false"
|
|
231
|
-
class="item"
|
|
232
|
-
role="option"
|
|
233
|
-
style="pointer-events: all;"
|
|
234
|
-
>
|
|
235
|
-
<span
|
|
236
|
-
class="text"
|
|
237
|
-
>
|
|
238
|
-
queryables.resource.type.data_structure
|
|
239
|
-
</span>
|
|
240
|
-
</div>
|
|
241
305
|
<div
|
|
242
306
|
aria-checked="true"
|
|
243
307
|
aria-selected="true"
|
|
@@ -248,101 +312,109 @@ exports[`<ResourceSelector /> select data_view 1`] = `
|
|
|
248
312
|
<span
|
|
249
313
|
class="text"
|
|
250
314
|
>
|
|
251
|
-
|
|
315
|
+
UserDataView
|
|
252
316
|
</span>
|
|
253
317
|
</div>
|
|
254
318
|
</div>
|
|
255
319
|
</div>
|
|
256
320
|
</div>
|
|
321
|
+
</div>
|
|
322
|
+
`;
|
|
323
|
+
|
|
324
|
+
exports[`<ResourceSelector /> select reference_dataset 1`] = `
|
|
325
|
+
<div>
|
|
257
326
|
<div
|
|
258
|
-
|
|
259
|
-
class="ui active visible fluid search selection dropdown"
|
|
260
|
-
role="combobox"
|
|
327
|
+
class="field"
|
|
261
328
|
>
|
|
262
|
-
<
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
class="search"
|
|
266
|
-
tabindex="0"
|
|
267
|
-
type="text"
|
|
268
|
-
value=""
|
|
269
|
-
/>
|
|
270
|
-
<div
|
|
271
|
-
aria-atomic="true"
|
|
272
|
-
aria-live="polite"
|
|
273
|
-
class="divider text"
|
|
274
|
-
role="alert"
|
|
275
|
-
>
|
|
276
|
-
UserDataView
|
|
277
|
-
</div>
|
|
278
|
-
<i
|
|
279
|
-
aria-hidden="true"
|
|
280
|
-
class="dropdown icon"
|
|
281
|
-
/>
|
|
329
|
+
<label>
|
|
330
|
+
queryables.form.resource
|
|
331
|
+
</label>
|
|
282
332
|
<div
|
|
283
|
-
class="
|
|
284
|
-
role="listbox"
|
|
333
|
+
class="field"
|
|
285
334
|
>
|
|
286
335
|
<div
|
|
287
|
-
aria-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
style="pointer-events: all;"
|
|
336
|
+
aria-expanded="false"
|
|
337
|
+
class="ui selection dropdown"
|
|
338
|
+
role="listbox"
|
|
339
|
+
tabindex="0"
|
|
292
340
|
>
|
|
293
|
-
<
|
|
294
|
-
|
|
341
|
+
<div
|
|
342
|
+
aria-atomic="true"
|
|
343
|
+
aria-live="polite"
|
|
344
|
+
class="divider text"
|
|
345
|
+
role="alert"
|
|
295
346
|
>
|
|
296
|
-
|
|
297
|
-
</
|
|
347
|
+
queryables.resource.type.reference_dataset
|
|
348
|
+
</div>
|
|
349
|
+
<i
|
|
350
|
+
aria-hidden="true"
|
|
351
|
+
class="dropdown icon"
|
|
352
|
+
/>
|
|
353
|
+
<div
|
|
354
|
+
class="menu transition"
|
|
355
|
+
>
|
|
356
|
+
<div
|
|
357
|
+
aria-checked="false"
|
|
358
|
+
aria-selected="false"
|
|
359
|
+
class="item"
|
|
360
|
+
role="option"
|
|
361
|
+
style="pointer-events: all;"
|
|
362
|
+
>
|
|
363
|
+
<span
|
|
364
|
+
class="text"
|
|
365
|
+
>
|
|
366
|
+
queryables.resource.type.data_structure
|
|
367
|
+
</span>
|
|
368
|
+
</div>
|
|
369
|
+
<div
|
|
370
|
+
aria-checked="true"
|
|
371
|
+
aria-selected="true"
|
|
372
|
+
class="active selected item"
|
|
373
|
+
role="option"
|
|
374
|
+
style="pointer-events: all;"
|
|
375
|
+
>
|
|
376
|
+
<span
|
|
377
|
+
class="text"
|
|
378
|
+
>
|
|
379
|
+
queryables.resource.type.reference_dataset
|
|
380
|
+
</span>
|
|
381
|
+
</div>
|
|
382
|
+
</div>
|
|
298
383
|
</div>
|
|
299
384
|
</div>
|
|
300
385
|
</div>
|
|
301
|
-
</div>
|
|
302
|
-
`;
|
|
303
|
-
|
|
304
|
-
exports[`<ResourceSelector /> select reference_dataset 1`] = `
|
|
305
|
-
<div>
|
|
306
386
|
<div
|
|
307
387
|
class="field"
|
|
308
388
|
>
|
|
309
|
-
<label>
|
|
310
|
-
queryables.form.resource
|
|
311
|
-
</label>
|
|
312
389
|
<div
|
|
313
|
-
aria-expanded="
|
|
314
|
-
class="ui selection dropdown"
|
|
315
|
-
role="
|
|
316
|
-
tabindex="0"
|
|
390
|
+
aria-expanded="true"
|
|
391
|
+
class="ui active visible fluid search selection dropdown"
|
|
392
|
+
role="combobox"
|
|
317
393
|
>
|
|
394
|
+
<input
|
|
395
|
+
aria-autocomplete="list"
|
|
396
|
+
autocomplete="off"
|
|
397
|
+
class="search"
|
|
398
|
+
tabindex="0"
|
|
399
|
+
type="text"
|
|
400
|
+
value=""
|
|
401
|
+
/>
|
|
318
402
|
<div
|
|
319
403
|
aria-atomic="true"
|
|
320
404
|
aria-live="polite"
|
|
321
405
|
class="divider text"
|
|
322
406
|
role="alert"
|
|
323
407
|
>
|
|
324
|
-
|
|
408
|
+
UserReferenceDataset
|
|
325
409
|
</div>
|
|
326
410
|
<i
|
|
327
411
|
aria-hidden="true"
|
|
328
412
|
class="dropdown icon"
|
|
329
413
|
/>
|
|
330
414
|
<div
|
|
331
|
-
class="menu transition"
|
|
415
|
+
class="visible menu transition"
|
|
416
|
+
role="listbox"
|
|
332
417
|
>
|
|
333
|
-
<div
|
|
334
|
-
aria-checked="false"
|
|
335
|
-
aria-selected="false"
|
|
336
|
-
class="item"
|
|
337
|
-
role="option"
|
|
338
|
-
style="pointer-events: all;"
|
|
339
|
-
>
|
|
340
|
-
<span
|
|
341
|
-
class="text"
|
|
342
|
-
>
|
|
343
|
-
queryables.resource.type.data_structure
|
|
344
|
-
</span>
|
|
345
|
-
</div>
|
|
346
418
|
<div
|
|
347
419
|
aria-checked="true"
|
|
348
420
|
aria-selected="true"
|
|
@@ -353,55 +425,11 @@ exports[`<ResourceSelector /> select reference_dataset 1`] = `
|
|
|
353
425
|
<span
|
|
354
426
|
class="text"
|
|
355
427
|
>
|
|
356
|
-
|
|
428
|
+
UserReferenceDataset
|
|
357
429
|
</span>
|
|
358
430
|
</div>
|
|
359
431
|
</div>
|
|
360
432
|
</div>
|
|
361
433
|
</div>
|
|
362
|
-
<div
|
|
363
|
-
aria-expanded="true"
|
|
364
|
-
class="ui active visible fluid search selection dropdown"
|
|
365
|
-
role="combobox"
|
|
366
|
-
>
|
|
367
|
-
<input
|
|
368
|
-
aria-autocomplete="list"
|
|
369
|
-
autocomplete="off"
|
|
370
|
-
class="search"
|
|
371
|
-
tabindex="0"
|
|
372
|
-
type="text"
|
|
373
|
-
value=""
|
|
374
|
-
/>
|
|
375
|
-
<div
|
|
376
|
-
aria-atomic="true"
|
|
377
|
-
aria-live="polite"
|
|
378
|
-
class="divider text"
|
|
379
|
-
role="alert"
|
|
380
|
-
>
|
|
381
|
-
UserReferenceDataset
|
|
382
|
-
</div>
|
|
383
|
-
<i
|
|
384
|
-
aria-hidden="true"
|
|
385
|
-
class="dropdown icon"
|
|
386
|
-
/>
|
|
387
|
-
<div
|
|
388
|
-
class="visible menu transition"
|
|
389
|
-
role="listbox"
|
|
390
|
-
>
|
|
391
|
-
<div
|
|
392
|
-
aria-checked="true"
|
|
393
|
-
aria-selected="true"
|
|
394
|
-
class="active selected item"
|
|
395
|
-
role="option"
|
|
396
|
-
style="pointer-events: all;"
|
|
397
|
-
>
|
|
398
|
-
<span
|
|
399
|
-
class="text"
|
|
400
|
-
>
|
|
401
|
-
UserReferenceDataset
|
|
402
|
-
</span>
|
|
403
|
-
</div>
|
|
404
|
-
</div>
|
|
405
|
-
</div>
|
|
406
434
|
</div>
|
|
407
435
|
`;
|