@truedat/bg 6.3.2 → 6.3.4
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 +6 -6
- package/src/concepts/api.js +3 -7
- package/src/concepts/components/ConceptActions.js +1 -0
- package/src/concepts/components/ConceptCreate.js +6 -4
- package/src/concepts/components/ConceptRoutes.js +10 -33
- package/src/concepts/components/Concepts.js +25 -16
- package/src/concepts/components/ConceptsActions.js +8 -14
- package/src/concepts/components/ConceptsBulkUpdate.js +25 -64
- package/src/concepts/components/ConceptsLabelResults.js +13 -26
- package/src/concepts/components/ConceptsLinksManagement.js +6 -92
- package/src/concepts/components/ConceptsPagination.js +13 -11
- package/src/concepts/components/ConceptsPanel.js +51 -22
- package/src/concepts/components/ConceptsTable.js +77 -106
- package/src/concepts/components/ConceptsUpdateButton.js +49 -37
- package/src/concepts/components/DomainConcepts.js +2 -11
- package/src/concepts/components/LinkedMessage.js +81 -0
- package/src/concepts/components/__tests__/ConceptLinksManagement.spec.js +60 -12
- package/src/concepts/components/__tests__/Concepts.spec.js +66 -11
- package/src/concepts/components/__tests__/ConceptsActions.spec.js +47 -3
- package/src/concepts/components/__tests__/ConceptsBulkUpdate.spec.js +7 -3
- package/src/concepts/components/__tests__/ConceptsLabelResults.spec.js +34 -4
- package/src/concepts/components/__tests__/ConceptsPanel.spec.js +59 -13
- package/src/concepts/components/__tests__/ConceptsTable.spec.js +53 -6
- package/src/concepts/components/__tests__/ConceptsUpdateButton.spec.js +26 -13
- package/src/concepts/components/__tests__/__snapshots__/ConceptLinksManagement.spec.js.snap +164 -8
- package/src/concepts/components/__tests__/__snapshots__/Concepts.spec.js.snap +284 -34
- package/src/concepts/components/__tests__/__snapshots__/ConceptsActions.spec.js.snap +1 -1
- package/src/concepts/components/__tests__/__snapshots__/ConceptsPanel.spec.js.snap +125 -2
- package/src/concepts/components/__tests__/__snapshots__/ConceptsTable.spec.js.snap +28 -44
- package/src/concepts/components/__tests__/__snapshots__/ConceptsUpdateButton.spec.js.snap +10 -47
- package/src/concepts/hooks/useConcepts.js +34 -0
- package/src/concepts/reducers/bulkUpdateQueryInfo.js +12 -0
- package/src/concepts/reducers/index.js +2 -26
- package/src/concepts/relations/components/ConceptRelationsRoutes.js +39 -35
- package/src/concepts/relations/components/ConceptSelector.js +37 -31
- package/src/concepts/relations/components/__tests__/ConceptRelationForm.spec.js +63 -23
- package/src/concepts/relations/components/__tests__/ConceptSelector.spec.js +74 -41
- package/src/concepts/relations/components/__tests__/ConceptSelector2.spec.js +72 -0
- package/src/concepts/relations/components/__tests__/__snapshots__/ConceptRelationForm.spec.js.snap +44 -8
- package/src/concepts/relations/components/__tests__/__snapshots__/ConceptSelector.spec.js.snap +44 -27
- package/src/concepts/routines.js +2 -29
- package/src/concepts/sagas/__tests__/bulkUpdate.spec.js +6 -10
- package/src/concepts/sagas/__tests__/downloadConcepts.spec.js +4 -8
- package/src/concepts/sagas/bulkUpdate.js +6 -5
- package/src/concepts/sagas/downloadConcepts.js +3 -4
- package/src/concepts/sagas/index.js +2 -17
- package/src/concepts/selectors/getConceptColumns.js +12 -21
- package/src/concepts/selectors/index.js +1 -7
- package/src/concepts/utils/filterOptions.js +6 -5
- package/src/concepts/components/ConceptFilters.js +0 -20
- package/src/concepts/components/ConceptFiltersLoader.js +0 -27
- package/src/concepts/components/ConceptSelectedFilters.js +0 -29
- package/src/concepts/components/ConceptSelectedFiltersDefault.js +0 -42
- package/src/concepts/components/ConceptSelectedFiltersPending.js +0 -41
- package/src/concepts/components/ConceptSelectedFiltersPublished.js +0 -73
- package/src/concepts/components/ConceptUserFiltersLoader.js +0 -27
- package/src/concepts/components/ConceptsLoader.js +0 -38
- package/src/concepts/components/ConceptsSearch.js +0 -32
- package/src/concepts/components/__tests__/ConceptFilters.spec.js +0 -19
- package/src/concepts/components/__tests__/ConceptSelectedFilters.spec.js +0 -10
- package/src/concepts/components/__tests__/ConceptUserFiltersLoader.spec.js +0 -27
- package/src/concepts/components/__tests__/ConceptsLoader.spec.js +0 -34
- package/src/concepts/components/__tests__/__snapshots__/ConceptFilters.spec.js.snap +0 -47
- package/src/concepts/components/__tests__/__snapshots__/ConceptSelectedFilters.spec.js.snap +0 -9
- package/src/concepts/components/__tests__/__snapshots__/ConceptUserFiltersLoader.spec.js.snap +0 -3
- package/src/concepts/reducers/__tests__/conceptActiveFilters.spec.js +0 -83
- package/src/concepts/reducers/__tests__/conceptCount.spec.js +0 -33
- package/src/concepts/reducers/__tests__/conceptFilters.spec.js +0 -49
- package/src/concepts/reducers/__tests__/conceptFiltersLoading.spec.js +0 -28
- package/src/concepts/reducers/__tests__/conceptQuery.spec.js +0 -75
- package/src/concepts/reducers/__tests__/conceptSelectedFilter.spec.js +0 -66
- package/src/concepts/reducers/__tests__/conceptSelectedUserFilter.spec.js +0 -53
- package/src/concepts/reducers/__tests__/conceptUserFilters.spec.js +0 -76
- package/src/concepts/reducers/__tests__/concepts.spec.js +0 -40
- package/src/concepts/reducers/__tests__/conceptsActions.spec.js +0 -38
- package/src/concepts/reducers/__tests__/conceptsLoading.spec.js +0 -32
- package/src/concepts/reducers/__tests__/conceptsPageSize.spec.js +0 -33
- package/src/concepts/reducers/__tests__/previousConceptQuery.spec.js +0 -23
- package/src/concepts/reducers/conceptActiveFilters.js +0 -58
- package/src/concepts/reducers/conceptCount.js +0 -20
- package/src/concepts/reducers/conceptFilters.js +0 -21
- package/src/concepts/reducers/conceptFiltersLoading.js +0 -14
- package/src/concepts/reducers/conceptQuery.js +0 -60
- package/src/concepts/reducers/conceptSelectedFilter.js +0 -34
- package/src/concepts/reducers/conceptSelectedUserFilter.js +0 -31
- package/src/concepts/reducers/conceptUserFilters.js +0 -36
- package/src/concepts/reducers/concepts.js +0 -21
- package/src/concepts/reducers/conceptsActions.js +0 -24
- package/src/concepts/reducers/conceptsLoading.js +0 -16
- package/src/concepts/reducers/conceptsPageSize.js +0 -16
- package/src/concepts/reducers/previousConceptQuery.js +0 -15
- package/src/concepts/sagas/__tests__/deleteConceptUserFilter.spec.js +0 -75
- package/src/concepts/sagas/__tests__/fetchConceptUserFilters.spec.js +0 -70
- package/src/concepts/sagas/__tests__/fetchConcepts.spec.js +0 -87
- package/src/concepts/sagas/__tests__/saveConceptFilters.spec.js +0 -78
- package/src/concepts/sagas/deleteConceptUserFilter.js +0 -34
- package/src/concepts/sagas/fecthConceptUserFilters.js +0 -30
- package/src/concepts/sagas/fetchConceptFilters.js +0 -29
- package/src/concepts/sagas/fetchConcepts.js +0 -27
- package/src/concepts/sagas/saveConceptFilters.js +0 -30
- package/src/concepts/selectors/__tests__/getConceptAvailableFilters.spec.js +0 -16
- package/src/concepts/selectors/__tests__/getConceptFilterTypes.spec.js +0 -19
- package/src/concepts/selectors/__tests__/getConceptSelectedFilterActiveValues.spec.js +0 -16
- package/src/concepts/selectors/__tests__/getConceptSelectedFilterValues.spec.js +0 -15
- package/src/concepts/selectors/__tests__/getConceptSelectedFilters.spec.js +0 -15
- package/src/concepts/selectors/__tests__/mapSelectedFilterStateToPropsByStatus.spec.js +0 -37
- package/src/concepts/selectors/getConceptAvailableFilters.js +0 -15
- package/src/concepts/selectors/getConceptFilterTypes.js +0 -7
- package/src/concepts/selectors/getConceptSelectedFilterActiveValues.js +0 -9
- package/src/concepts/selectors/getConceptSelectedFilterValues.js +0 -12
- package/src/concepts/selectors/getConceptSelectedFilters.js +0 -7
- package/src/concepts/selectors/getPreviousConceptQuery.js +0 -1
- package/src/concepts/selectors/mapSelectedFilterStateToPropsByStatus.js +0 -47
|
@@ -138,8 +138,10 @@ exports[`<ConceptsLinksManagement /> matches the latest snapshot 1`] = `
|
|
|
138
138
|
class="search link icon"
|
|
139
139
|
/>
|
|
140
140
|
<div
|
|
141
|
-
aria-
|
|
142
|
-
|
|
141
|
+
aria-busy="false"
|
|
142
|
+
aria-disabled="false"
|
|
143
|
+
aria-expanded="true"
|
|
144
|
+
class="ui active visible button floating labeled scrolling dropdown icon"
|
|
143
145
|
role="listbox"
|
|
144
146
|
tabindex="0"
|
|
145
147
|
>
|
|
@@ -156,7 +158,7 @@ exports[`<ConceptsLinksManagement /> matches the latest snapshot 1`] = `
|
|
|
156
158
|
class="filter icon"
|
|
157
159
|
/>
|
|
158
160
|
<div
|
|
159
|
-
class="menu transition"
|
|
161
|
+
class="menu transition visible"
|
|
160
162
|
>
|
|
161
163
|
<div
|
|
162
164
|
class="item"
|
|
@@ -178,23 +180,57 @@ exports[`<ConceptsLinksManagement /> matches the latest snapshot 1`] = `
|
|
|
178
180
|
apply filters
|
|
179
181
|
</div>
|
|
180
182
|
<div
|
|
181
|
-
aria-expanded="
|
|
182
|
-
class="ui floating item scrolling dropdown"
|
|
183
|
+
aria-expanded="true"
|
|
184
|
+
class="ui active visible floating item scrolling dropdown"
|
|
183
185
|
role="listbox"
|
|
184
186
|
tabindex="0"
|
|
185
187
|
>
|
|
186
188
|
<div
|
|
187
189
|
class="ui label"
|
|
188
190
|
>
|
|
189
|
-
|
|
191
|
+
some
|
|
190
192
|
<i
|
|
191
193
|
aria-hidden="true"
|
|
192
194
|
class="delete icon"
|
|
193
195
|
/>
|
|
194
196
|
</div>
|
|
195
197
|
<div
|
|
196
|
-
class="menu transition dimmable"
|
|
197
|
-
|
|
198
|
+
class="menu transition dimmable visible"
|
|
199
|
+
>
|
|
200
|
+
<div
|
|
201
|
+
aria-checked="false"
|
|
202
|
+
class="item"
|
|
203
|
+
role="option"
|
|
204
|
+
>
|
|
205
|
+
<i
|
|
206
|
+
aria-hidden="true"
|
|
207
|
+
class="square outline icon"
|
|
208
|
+
/>
|
|
209
|
+
some_xwy
|
|
210
|
+
</div>
|
|
211
|
+
<div
|
|
212
|
+
aria-checked="false"
|
|
213
|
+
class="item"
|
|
214
|
+
role="option"
|
|
215
|
+
>
|
|
216
|
+
<i
|
|
217
|
+
aria-hidden="true"
|
|
218
|
+
class="square outline icon"
|
|
219
|
+
/>
|
|
220
|
+
some_xxx
|
|
221
|
+
</div>
|
|
222
|
+
<div
|
|
223
|
+
aria-checked="false"
|
|
224
|
+
class="item"
|
|
225
|
+
role="option"
|
|
226
|
+
>
|
|
227
|
+
<i
|
|
228
|
+
aria-hidden="true"
|
|
229
|
+
class="square outline icon"
|
|
230
|
+
/>
|
|
231
|
+
some_yyy
|
|
232
|
+
</div>
|
|
233
|
+
</div>
|
|
198
234
|
</div>
|
|
199
235
|
<a
|
|
200
236
|
class="resetFilters"
|
|
@@ -261,6 +297,126 @@ exports[`<ConceptsLinksManagement /> matches the latest snapshot 1`] = `
|
|
|
261
297
|
</tr>
|
|
262
298
|
</tbody>
|
|
263
299
|
</table>
|
|
300
|
+
<div
|
|
301
|
+
aria-label="Pagination Navigation"
|
|
302
|
+
class="ui pagination menu"
|
|
303
|
+
role="navigation"
|
|
304
|
+
>
|
|
305
|
+
<a
|
|
306
|
+
aria-current="false"
|
|
307
|
+
aria-disabled="false"
|
|
308
|
+
aria-label="First item"
|
|
309
|
+
class="item"
|
|
310
|
+
tabindex="0"
|
|
311
|
+
type="firstItem"
|
|
312
|
+
value="1"
|
|
313
|
+
>
|
|
314
|
+
«
|
|
315
|
+
</a>
|
|
316
|
+
<a
|
|
317
|
+
aria-current="false"
|
|
318
|
+
aria-disabled="false"
|
|
319
|
+
aria-label="Previous item"
|
|
320
|
+
class="item"
|
|
321
|
+
tabindex="0"
|
|
322
|
+
type="prevItem"
|
|
323
|
+
value="1"
|
|
324
|
+
>
|
|
325
|
+
⟨
|
|
326
|
+
</a>
|
|
327
|
+
<a
|
|
328
|
+
aria-current="true"
|
|
329
|
+
aria-disabled="false"
|
|
330
|
+
class="active item"
|
|
331
|
+
tabindex="0"
|
|
332
|
+
type="pageItem"
|
|
333
|
+
value="1"
|
|
334
|
+
>
|
|
335
|
+
1
|
|
336
|
+
</a>
|
|
337
|
+
<a
|
|
338
|
+
aria-current="false"
|
|
339
|
+
aria-disabled="false"
|
|
340
|
+
class="item"
|
|
341
|
+
tabindex="0"
|
|
342
|
+
type="pageItem"
|
|
343
|
+
value="2"
|
|
344
|
+
>
|
|
345
|
+
2
|
|
346
|
+
</a>
|
|
347
|
+
<a
|
|
348
|
+
aria-current="false"
|
|
349
|
+
aria-disabled="false"
|
|
350
|
+
class="item"
|
|
351
|
+
tabindex="0"
|
|
352
|
+
type="pageItem"
|
|
353
|
+
value="3"
|
|
354
|
+
>
|
|
355
|
+
3
|
|
356
|
+
</a>
|
|
357
|
+
<a
|
|
358
|
+
aria-current="false"
|
|
359
|
+
aria-disabled="false"
|
|
360
|
+
class="item"
|
|
361
|
+
tabindex="0"
|
|
362
|
+
type="pageItem"
|
|
363
|
+
value="4"
|
|
364
|
+
>
|
|
365
|
+
4
|
|
366
|
+
</a>
|
|
367
|
+
<a
|
|
368
|
+
aria-current="false"
|
|
369
|
+
aria-disabled="false"
|
|
370
|
+
class="item"
|
|
371
|
+
tabindex="0"
|
|
372
|
+
type="pageItem"
|
|
373
|
+
value="5"
|
|
374
|
+
>
|
|
375
|
+
5
|
|
376
|
+
</a>
|
|
377
|
+
<a
|
|
378
|
+
aria-current="false"
|
|
379
|
+
aria-disabled="true"
|
|
380
|
+
class="item"
|
|
381
|
+
tabindex="-1"
|
|
382
|
+
type="ellipsisItem"
|
|
383
|
+
value="6"
|
|
384
|
+
>
|
|
385
|
+
...
|
|
386
|
+
</a>
|
|
387
|
+
<a
|
|
388
|
+
aria-current="false"
|
|
389
|
+
aria-disabled="false"
|
|
390
|
+
class="item"
|
|
391
|
+
tabindex="0"
|
|
392
|
+
type="pageItem"
|
|
393
|
+
value="18"
|
|
394
|
+
>
|
|
395
|
+
18
|
|
396
|
+
</a>
|
|
397
|
+
<a
|
|
398
|
+
aria-current="false"
|
|
399
|
+
aria-disabled="false"
|
|
400
|
+
aria-label="Next item"
|
|
401
|
+
class="item"
|
|
402
|
+
tabindex="0"
|
|
403
|
+
type="nextItem"
|
|
404
|
+
value="2"
|
|
405
|
+
>
|
|
406
|
+
⟩
|
|
407
|
+
</a>
|
|
408
|
+
<a
|
|
409
|
+
aria-current="false"
|
|
410
|
+
aria-disabled="false"
|
|
411
|
+
aria-label="Last item"
|
|
412
|
+
class="item"
|
|
413
|
+
tabindex="0"
|
|
414
|
+
type="lastItem"
|
|
415
|
+
value="18"
|
|
416
|
+
>
|
|
417
|
+
»
|
|
418
|
+
</a>
|
|
419
|
+
</div>
|
|
264
420
|
</div>
|
|
265
421
|
</div>
|
|
266
422
|
</div>
|
|
@@ -1,44 +1,294 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<Concepts /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="ui segment"
|
|
7
|
+
>
|
|
8
|
+
<h2
|
|
9
|
+
class="ui header"
|
|
9
10
|
>
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
circular
|
|
13
|
-
name="edit"
|
|
11
|
+
<i
|
|
12
|
+
aria-hidden="true"
|
|
13
|
+
class="edit circular icon"
|
|
14
14
|
/>
|
|
15
|
-
<
|
|
15
|
+
<div
|
|
16
|
+
class="content"
|
|
17
|
+
>
|
|
16
18
|
concepts.header.manage
|
|
17
|
-
<
|
|
19
|
+
<div
|
|
20
|
+
class="sub header"
|
|
21
|
+
>
|
|
18
22
|
concepts.subheader.manage
|
|
19
|
-
</
|
|
20
|
-
</
|
|
21
|
-
</
|
|
22
|
-
<
|
|
23
|
-
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</h2>
|
|
26
|
+
<div
|
|
27
|
+
class="ui bottom attached segment"
|
|
24
28
|
>
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
29
|
+
<div
|
|
30
|
+
class="ui action left icon input"
|
|
31
|
+
>
|
|
32
|
+
<input
|
|
33
|
+
placeholder="Search concepts..."
|
|
34
|
+
type="text"
|
|
35
|
+
value=""
|
|
36
|
+
/>
|
|
37
|
+
<i
|
|
38
|
+
aria-hidden="true"
|
|
39
|
+
class="search link icon"
|
|
40
|
+
/>
|
|
41
|
+
<div
|
|
42
|
+
aria-busy="false"
|
|
43
|
+
aria-disabled="false"
|
|
44
|
+
aria-expanded="false"
|
|
45
|
+
class="ui button floating labeled scrolling dropdown icon"
|
|
46
|
+
role="listbox"
|
|
47
|
+
tabindex="0"
|
|
48
|
+
>
|
|
49
|
+
<div
|
|
50
|
+
aria-atomic="true"
|
|
51
|
+
aria-live="polite"
|
|
52
|
+
class="divider text"
|
|
53
|
+
role="alert"
|
|
54
|
+
>
|
|
55
|
+
Filters
|
|
56
|
+
</div>
|
|
57
|
+
<i
|
|
58
|
+
aria-hidden="true"
|
|
59
|
+
class="filter icon"
|
|
60
|
+
/>
|
|
61
|
+
<div
|
|
62
|
+
class="menu transition"
|
|
63
|
+
>
|
|
64
|
+
<div
|
|
65
|
+
class="item"
|
|
66
|
+
role="option"
|
|
67
|
+
>
|
|
68
|
+
<em>
|
|
69
|
+
(reset filters)
|
|
70
|
+
</em>
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
<div
|
|
76
|
+
class="selectedFilters"
|
|
40
77
|
/>
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
78
|
+
<div
|
|
79
|
+
class="dimmable"
|
|
80
|
+
>
|
|
81
|
+
<div
|
|
82
|
+
class="ui inverted dimmer"
|
|
83
|
+
style=""
|
|
84
|
+
>
|
|
85
|
+
<div
|
|
86
|
+
class="content"
|
|
87
|
+
>
|
|
88
|
+
<div
|
|
89
|
+
class="ui loader"
|
|
90
|
+
/>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
<div
|
|
94
|
+
class="ui label concepts-label-results"
|
|
95
|
+
>
|
|
96
|
+
123 concepts found
|
|
97
|
+
</div>
|
|
98
|
+
<table
|
|
99
|
+
class="ui selectable sortable table"
|
|
100
|
+
>
|
|
101
|
+
<thead
|
|
102
|
+
class=""
|
|
103
|
+
>
|
|
104
|
+
<tr
|
|
105
|
+
class=""
|
|
106
|
+
>
|
|
107
|
+
<th
|
|
108
|
+
class="seven wide ascending sorted"
|
|
109
|
+
>
|
|
110
|
+
Term
|
|
111
|
+
</th>
|
|
112
|
+
<th
|
|
113
|
+
class="three wide"
|
|
114
|
+
>
|
|
115
|
+
Domain
|
|
116
|
+
</th>
|
|
117
|
+
<th
|
|
118
|
+
class="one wide"
|
|
119
|
+
>
|
|
120
|
+
Quality rules
|
|
121
|
+
</th>
|
|
122
|
+
<th
|
|
123
|
+
class="one wide"
|
|
124
|
+
>
|
|
125
|
+
Link to field
|
|
126
|
+
</th>
|
|
127
|
+
<th
|
|
128
|
+
class="two wide"
|
|
129
|
+
>
|
|
130
|
+
Last modification date
|
|
131
|
+
</th>
|
|
132
|
+
</tr>
|
|
133
|
+
</thead>
|
|
134
|
+
<tbody
|
|
135
|
+
class=""
|
|
136
|
+
>
|
|
137
|
+
<tr
|
|
138
|
+
class=""
|
|
139
|
+
>
|
|
140
|
+
<td
|
|
141
|
+
class=""
|
|
142
|
+
>
|
|
143
|
+
s1
|
|
144
|
+
</td>
|
|
145
|
+
<td
|
|
146
|
+
class=""
|
|
147
|
+
/>
|
|
148
|
+
<td
|
|
149
|
+
class="center aligned"
|
|
150
|
+
>
|
|
151
|
+
|
|
152
|
+
</td>
|
|
153
|
+
<td
|
|
154
|
+
class="center aligned"
|
|
155
|
+
>
|
|
156
|
+
|
|
157
|
+
</td>
|
|
158
|
+
<td
|
|
159
|
+
class="center aligned"
|
|
160
|
+
>
|
|
161
|
+
<time
|
|
162
|
+
datetime="1577836800000"
|
|
163
|
+
>
|
|
164
|
+
2020-01-01 00:00
|
|
165
|
+
</time>
|
|
166
|
+
</td>
|
|
167
|
+
</tr>
|
|
168
|
+
</tbody>
|
|
169
|
+
</table>
|
|
170
|
+
<div
|
|
171
|
+
aria-label="Pagination Navigation"
|
|
172
|
+
class="ui pagination menu"
|
|
173
|
+
role="navigation"
|
|
174
|
+
>
|
|
175
|
+
<a
|
|
176
|
+
aria-current="false"
|
|
177
|
+
aria-disabled="false"
|
|
178
|
+
aria-label="First item"
|
|
179
|
+
class="item"
|
|
180
|
+
tabindex="0"
|
|
181
|
+
type="firstItem"
|
|
182
|
+
value="1"
|
|
183
|
+
>
|
|
184
|
+
«
|
|
185
|
+
</a>
|
|
186
|
+
<a
|
|
187
|
+
aria-current="false"
|
|
188
|
+
aria-disabled="false"
|
|
189
|
+
aria-label="Previous item"
|
|
190
|
+
class="item"
|
|
191
|
+
tabindex="0"
|
|
192
|
+
type="prevItem"
|
|
193
|
+
value="1"
|
|
194
|
+
>
|
|
195
|
+
⟨
|
|
196
|
+
</a>
|
|
197
|
+
<a
|
|
198
|
+
aria-current="true"
|
|
199
|
+
aria-disabled="false"
|
|
200
|
+
class="active item"
|
|
201
|
+
tabindex="0"
|
|
202
|
+
type="pageItem"
|
|
203
|
+
value="1"
|
|
204
|
+
>
|
|
205
|
+
1
|
|
206
|
+
</a>
|
|
207
|
+
<a
|
|
208
|
+
aria-current="false"
|
|
209
|
+
aria-disabled="false"
|
|
210
|
+
class="item"
|
|
211
|
+
tabindex="0"
|
|
212
|
+
type="pageItem"
|
|
213
|
+
value="2"
|
|
214
|
+
>
|
|
215
|
+
2
|
|
216
|
+
</a>
|
|
217
|
+
<a
|
|
218
|
+
aria-current="false"
|
|
219
|
+
aria-disabled="false"
|
|
220
|
+
class="item"
|
|
221
|
+
tabindex="0"
|
|
222
|
+
type="pageItem"
|
|
223
|
+
value="3"
|
|
224
|
+
>
|
|
225
|
+
3
|
|
226
|
+
</a>
|
|
227
|
+
<a
|
|
228
|
+
aria-current="false"
|
|
229
|
+
aria-disabled="false"
|
|
230
|
+
class="item"
|
|
231
|
+
tabindex="0"
|
|
232
|
+
type="pageItem"
|
|
233
|
+
value="4"
|
|
234
|
+
>
|
|
235
|
+
4
|
|
236
|
+
</a>
|
|
237
|
+
<a
|
|
238
|
+
aria-current="false"
|
|
239
|
+
aria-disabled="false"
|
|
240
|
+
class="item"
|
|
241
|
+
tabindex="0"
|
|
242
|
+
type="pageItem"
|
|
243
|
+
value="5"
|
|
244
|
+
>
|
|
245
|
+
5
|
|
246
|
+
</a>
|
|
247
|
+
<a
|
|
248
|
+
aria-current="false"
|
|
249
|
+
aria-disabled="false"
|
|
250
|
+
class="item"
|
|
251
|
+
tabindex="0"
|
|
252
|
+
type="pageItem"
|
|
253
|
+
value="6"
|
|
254
|
+
>
|
|
255
|
+
6
|
|
256
|
+
</a>
|
|
257
|
+
<a
|
|
258
|
+
aria-current="false"
|
|
259
|
+
aria-disabled="false"
|
|
260
|
+
class="item"
|
|
261
|
+
tabindex="0"
|
|
262
|
+
type="pageItem"
|
|
263
|
+
value="7"
|
|
264
|
+
>
|
|
265
|
+
7
|
|
266
|
+
</a>
|
|
267
|
+
<a
|
|
268
|
+
aria-current="false"
|
|
269
|
+
aria-disabled="false"
|
|
270
|
+
aria-label="Next item"
|
|
271
|
+
class="item"
|
|
272
|
+
tabindex="0"
|
|
273
|
+
type="nextItem"
|
|
274
|
+
value="2"
|
|
275
|
+
>
|
|
276
|
+
⟩
|
|
277
|
+
</a>
|
|
278
|
+
<a
|
|
279
|
+
aria-current="false"
|
|
280
|
+
aria-disabled="false"
|
|
281
|
+
aria-label="Last item"
|
|
282
|
+
class="item"
|
|
283
|
+
tabindex="0"
|
|
284
|
+
type="lastItem"
|
|
285
|
+
value="7"
|
|
286
|
+
>
|
|
287
|
+
»
|
|
288
|
+
</a>
|
|
289
|
+
</div>
|
|
290
|
+
</div>
|
|
291
|
+
</div>
|
|
292
|
+
</div>
|
|
293
|
+
</div>
|
|
44
294
|
`;
|
|
@@ -15,6 +15,8 @@ exports[`<ConceptsPanel /> matches latest snapshot 1`] = `
|
|
|
15
15
|
class="search link icon"
|
|
16
16
|
/>
|
|
17
17
|
<div
|
|
18
|
+
aria-busy="false"
|
|
19
|
+
aria-disabled="false"
|
|
18
20
|
aria-expanded="false"
|
|
19
21
|
class="ui button floating labeled scrolling dropdown icon"
|
|
20
22
|
role="listbox"
|
|
@@ -40,7 +42,7 @@ exports[`<ConceptsPanel /> matches latest snapshot 1`] = `
|
|
|
40
42
|
role="option"
|
|
41
43
|
>
|
|
42
44
|
<em>
|
|
43
|
-
(reset
|
|
45
|
+
(reset filters)
|
|
44
46
|
</em>
|
|
45
47
|
</div>
|
|
46
48
|
</div>
|
|
@@ -54,6 +56,7 @@ exports[`<ConceptsPanel /> matches latest snapshot 1`] = `
|
|
|
54
56
|
>
|
|
55
57
|
<div
|
|
56
58
|
class="ui inverted dimmer"
|
|
59
|
+
style=""
|
|
57
60
|
>
|
|
58
61
|
<div
|
|
59
62
|
class="content"
|
|
@@ -78,7 +81,7 @@ exports[`<ConceptsPanel /> matches latest snapshot 1`] = `
|
|
|
78
81
|
class=""
|
|
79
82
|
>
|
|
80
83
|
<th
|
|
81
|
-
class="seven wide"
|
|
84
|
+
class="seven wide ascending sorted"
|
|
82
85
|
>
|
|
83
86
|
Term
|
|
84
87
|
</th>
|
|
@@ -142,6 +145,126 @@ exports[`<ConceptsPanel /> matches latest snapshot 1`] = `
|
|
|
142
145
|
</tr>
|
|
143
146
|
</tbody>
|
|
144
147
|
</table>
|
|
148
|
+
<div
|
|
149
|
+
aria-label="Pagination Navigation"
|
|
150
|
+
class="ui pagination menu"
|
|
151
|
+
role="navigation"
|
|
152
|
+
>
|
|
153
|
+
<a
|
|
154
|
+
aria-current="false"
|
|
155
|
+
aria-disabled="false"
|
|
156
|
+
aria-label="First item"
|
|
157
|
+
class="item"
|
|
158
|
+
tabindex="0"
|
|
159
|
+
type="firstItem"
|
|
160
|
+
value="1"
|
|
161
|
+
>
|
|
162
|
+
«
|
|
163
|
+
</a>
|
|
164
|
+
<a
|
|
165
|
+
aria-current="false"
|
|
166
|
+
aria-disabled="false"
|
|
167
|
+
aria-label="Previous item"
|
|
168
|
+
class="item"
|
|
169
|
+
tabindex="0"
|
|
170
|
+
type="prevItem"
|
|
171
|
+
value="1"
|
|
172
|
+
>
|
|
173
|
+
⟨
|
|
174
|
+
</a>
|
|
175
|
+
<a
|
|
176
|
+
aria-current="true"
|
|
177
|
+
aria-disabled="false"
|
|
178
|
+
class="active item"
|
|
179
|
+
tabindex="0"
|
|
180
|
+
type="pageItem"
|
|
181
|
+
value="1"
|
|
182
|
+
>
|
|
183
|
+
1
|
|
184
|
+
</a>
|
|
185
|
+
<a
|
|
186
|
+
aria-current="false"
|
|
187
|
+
aria-disabled="false"
|
|
188
|
+
class="item"
|
|
189
|
+
tabindex="0"
|
|
190
|
+
type="pageItem"
|
|
191
|
+
value="2"
|
|
192
|
+
>
|
|
193
|
+
2
|
|
194
|
+
</a>
|
|
195
|
+
<a
|
|
196
|
+
aria-current="false"
|
|
197
|
+
aria-disabled="false"
|
|
198
|
+
class="item"
|
|
199
|
+
tabindex="0"
|
|
200
|
+
type="pageItem"
|
|
201
|
+
value="3"
|
|
202
|
+
>
|
|
203
|
+
3
|
|
204
|
+
</a>
|
|
205
|
+
<a
|
|
206
|
+
aria-current="false"
|
|
207
|
+
aria-disabled="false"
|
|
208
|
+
class="item"
|
|
209
|
+
tabindex="0"
|
|
210
|
+
type="pageItem"
|
|
211
|
+
value="4"
|
|
212
|
+
>
|
|
213
|
+
4
|
|
214
|
+
</a>
|
|
215
|
+
<a
|
|
216
|
+
aria-current="false"
|
|
217
|
+
aria-disabled="false"
|
|
218
|
+
class="item"
|
|
219
|
+
tabindex="0"
|
|
220
|
+
type="pageItem"
|
|
221
|
+
value="5"
|
|
222
|
+
>
|
|
223
|
+
5
|
|
224
|
+
</a>
|
|
225
|
+
<a
|
|
226
|
+
aria-current="false"
|
|
227
|
+
aria-disabled="false"
|
|
228
|
+
class="item"
|
|
229
|
+
tabindex="0"
|
|
230
|
+
type="pageItem"
|
|
231
|
+
value="6"
|
|
232
|
+
>
|
|
233
|
+
6
|
|
234
|
+
</a>
|
|
235
|
+
<a
|
|
236
|
+
aria-current="false"
|
|
237
|
+
aria-disabled="false"
|
|
238
|
+
class="item"
|
|
239
|
+
tabindex="0"
|
|
240
|
+
type="pageItem"
|
|
241
|
+
value="7"
|
|
242
|
+
>
|
|
243
|
+
7
|
|
244
|
+
</a>
|
|
245
|
+
<a
|
|
246
|
+
aria-current="false"
|
|
247
|
+
aria-disabled="false"
|
|
248
|
+
aria-label="Next item"
|
|
249
|
+
class="item"
|
|
250
|
+
tabindex="0"
|
|
251
|
+
type="nextItem"
|
|
252
|
+
value="2"
|
|
253
|
+
>
|
|
254
|
+
⟩
|
|
255
|
+
</a>
|
|
256
|
+
<a
|
|
257
|
+
aria-current="false"
|
|
258
|
+
aria-disabled="false"
|
|
259
|
+
aria-label="Last item"
|
|
260
|
+
class="item"
|
|
261
|
+
tabindex="0"
|
|
262
|
+
type="lastItem"
|
|
263
|
+
value="7"
|
|
264
|
+
>
|
|
265
|
+
»
|
|
266
|
+
</a>
|
|
267
|
+
</div>
|
|
145
268
|
</div>
|
|
146
269
|
</div>
|
|
147
270
|
`;
|