@truedat/dd 6.6.0 → 6.6.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/package.json +6 -6
- package/src/components/CatalogCustomViewCards.js +9 -32
- package/src/components/DictionaryRoutes.js +1 -9
- package/src/components/GrantRemovalDirectButton.js +1 -3
- package/src/components/GrantRequestBulkRoleSelector.js +1 -0
- package/src/components/GrantRequestCancel.js +1 -1
- package/src/components/GrantRoutes.js +22 -15
- package/src/components/StructureGrantListButton.js +4 -4
- package/src/components/StructureSelector.js +70 -44
- package/src/components/StructureStructureForm.js +1 -1
- package/src/components/StructuresBulkUpdate.js +10 -14
- package/src/components/StructuresDownloadOption.js +31 -27
- package/src/components/StructuresEditableDownloadOption.js +12 -7
- package/src/components/StructuresGrantRequestView.js +55 -24
- package/src/components/StructuresLabelResults.js +5 -11
- package/src/components/StructuresPagination.js +13 -15
- package/src/components/StructuresRoutes.js +2 -18
- package/src/components/StructuresTable.js +79 -115
- package/src/components/StructuresUpdateOption.js +77 -9
- package/src/components/StructuresView.js +67 -52
- package/src/components/__tests__/CatalogCustomViewCards.spec.js +44 -7
- package/src/components/__tests__/StructureGrantListButton.spec.js +27 -17
- package/src/components/__tests__/StructureSelector.spec.js +70 -25
- package/src/components/__tests__/StructureStructureForm.spec.js +92 -60
- package/src/components/__tests__/StructureStructureLinks.spec.js +1 -1
- package/src/components/__tests__/StructuresBulkUpdate.spec.js +26 -14
- package/src/components/__tests__/StructuresDownloadOption.spec.js +38 -5
- package/src/components/__tests__/StructuresEditableDownloadOption.spec.js +20 -8
- package/src/components/__tests__/StructuresGrantRequestView.spec.js +43 -15
- package/src/components/__tests__/StructuresLabelResults.spec.js +37 -10
- package/src/components/__tests__/StructuresOptions.spec.js +62 -1
- package/src/components/__tests__/StructuresSearchResults.spec.js +67 -12
- package/src/components/__tests__/StructuresTable.spec.js +77 -88
- package/src/components/__tests__/StructuresUpdateOption.spec.js +53 -6
- package/src/components/__tests__/StructuresView.spec.js +126 -31
- package/src/components/__tests__/__snapshots__/GrantRoutes.spec.js.snap +5 -0
- package/src/components/__tests__/__snapshots__/StructureSelector.spec.js.snap +206 -42
- package/src/components/__tests__/__snapshots__/StructuresDownloadOption.spec.js.snap +17 -0
- package/src/components/__tests__/__snapshots__/StructuresGrantRequestView.spec.js.snap +68 -5
- package/src/components/__tests__/__snapshots__/StructuresLabelResults.spec.js.snap +7 -12
- package/src/components/__tests__/__snapshots__/StructuresSearchResults.spec.js.snap +72 -27
- package/src/components/__tests__/__snapshots__/StructuresTable.spec.js.snap +226 -153
- package/src/components/__tests__/__snapshots__/StructuresUpdateOption.spec.js.snap +3 -3
- package/src/components/index.js +0 -8
- package/src/hooks/useStructures.js +6 -6
- package/src/reducers/__tests__/selectedUserSearchFilter.spec.js +2 -23
- package/src/reducers/__tests__/structureQuery.spec.js +1 -63
- package/src/reducers/index.js +0 -18
- package/src/reducers/previousStructureQuery.js +3 -6
- package/src/reducers/selectedUserSearchFilter.js +1 -10
- package/src/reducers/structureQuery.js +1 -33
- package/src/routines.js +1 -15
- package/src/sagas/__tests__/bulkUpdateStructures.spec.js +7 -7
- package/src/sagas/__tests__/downloadEditableStructures.spec.js +1 -6
- package/src/sagas/__tests__/downloadStructures.spec.js +2 -7
- package/src/sagas/__tests__/fetchStructures.spec.js +4 -4
- package/src/sagas/bulkUpdateStructures.js +6 -4
- package/src/sagas/downloadEditableStructures.js +2 -3
- package/src/sagas/downloadStructures.js +2 -3
- package/src/sagas/index.js +0 -3
- package/src/selectors/__tests__/getGrantSelectedFilters.spec.js +1 -1
- package/src/selectors/__tests__/structureColumnsSelector.spec.js +5 -19
- package/src/selectors/__tests__/templateNamesSelector.spec.js +19 -0
- package/src/selectors/getGrantRequestsSelectedFilters.js +3 -1
- package/src/selectors/index.js +1 -8
- package/src/selectors/structureColumnsSelector.js +6 -46
- package/src/selectors/templateNamesSelector.js +7 -0
- package/src/utils/structureCustomTranslations.js +19 -0
- package/src/components/StructureDateFilter.js +0 -32
- package/src/components/StructureFilters.js +0 -19
- package/src/components/StructureFiltersLoader.js +0 -32
- package/src/components/StructureSelectedFilters.js +0 -94
- package/src/components/__tests__/StructureDateFilter.spec.js +0 -11
- package/src/components/__tests__/__snapshots__/StructureDateFilter.spec.js.snap +0 -13
- package/src/reducers/__tests__/structureActiveFilters.spec.js +0 -100
- package/src/reducers/__tests__/structureDateFilter.spec.js +0 -57
- package/src/reducers/__tests__/structureFilters.spec.js +0 -37
- package/src/reducers/__tests__/structureUserFilters.spec.js +0 -76
- package/src/reducers/__tests__/structuresActions.spec.js +0 -38
- package/src/reducers/__tests__/structuresLoading.spec.js +0 -26
- package/src/reducers/structureActiveFilters.js +0 -58
- package/src/reducers/structureCount.js +0 -20
- package/src/reducers/structureDateFilter.js +0 -33
- package/src/reducers/structureFilters.js +0 -21
- package/src/reducers/structureFiltersLoading.js +0 -14
- package/src/reducers/structureSelectedFilter.js +0 -34
- package/src/reducers/structuresActions.js +0 -18
- package/src/reducers/structuresLoading.js +0 -14
- package/src/reducers/structuresPageSize.js +0 -15
- package/src/sagas/fetchStructureFilters.js +0 -29
- package/src/selectors/__tests__/bulkUpdateDisabledSelector.spec.js +0 -72
- package/src/selectors/__tests__/getStructureAvailableFilters.spec.js +0 -15
- package/src/selectors/__tests__/getStructureSelectedFilterActiveValues.spec.js +0 -20
- package/src/selectors/__tests__/getStructureSelectedFilterValues.spec.js +0 -15
- package/src/selectors/__tests__/getStructureSelectedFilters.spec.js +0 -15
- package/src/selectors/bulkUpdateDisabledSelector.js +0 -46
- package/src/selectors/getPreviousStructureQuery.js +0 -2
- package/src/selectors/getStructureAvailableFilters.js +0 -15
- package/src/selectors/getStructureFilterTypes.js +0 -7
- package/src/selectors/getStructureSelectedFilterActiveValues.js +0 -9
- package/src/selectors/getStructureSelectedFilterValues.js +0 -12
- package/src/selectors/getStructureSelectedFilters.js +0 -7
|
@@ -1,46 +1,210 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<StructureSelector /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="ui segment"
|
|
7
|
+
>
|
|
8
|
+
<div
|
|
9
|
+
class="ui action left icon input"
|
|
10
|
+
>
|
|
11
|
+
<i
|
|
12
|
+
aria-hidden="true"
|
|
13
|
+
class="search link icon"
|
|
14
|
+
/>
|
|
15
|
+
<input
|
|
16
|
+
placeholder="Search..."
|
|
17
|
+
type="text"
|
|
18
|
+
value=""
|
|
19
|
+
/>
|
|
20
|
+
<button
|
|
21
|
+
class="ui icon button"
|
|
22
|
+
>
|
|
23
|
+
<i
|
|
24
|
+
aria-hidden="true"
|
|
25
|
+
class="calendar alternate outline icon"
|
|
26
|
+
/>
|
|
27
|
+
</button>
|
|
28
|
+
<div
|
|
29
|
+
aria-busy="false"
|
|
30
|
+
aria-disabled="false"
|
|
31
|
+
aria-expanded="false"
|
|
32
|
+
class="ui button floating labeled scrolling dropdown icon"
|
|
33
|
+
role="listbox"
|
|
34
|
+
tabindex="0"
|
|
35
|
+
>
|
|
36
|
+
<div
|
|
37
|
+
aria-atomic="true"
|
|
38
|
+
aria-live="polite"
|
|
39
|
+
class="divider text"
|
|
40
|
+
role="alert"
|
|
41
|
+
>
|
|
42
|
+
Filters
|
|
43
|
+
</div>
|
|
44
|
+
<i
|
|
45
|
+
aria-hidden="true"
|
|
46
|
+
class="filter icon"
|
|
47
|
+
/>
|
|
48
|
+
<div
|
|
49
|
+
class="menu transition"
|
|
50
|
+
>
|
|
51
|
+
<div
|
|
52
|
+
class="item"
|
|
53
|
+
role="option"
|
|
54
|
+
>
|
|
55
|
+
<em>
|
|
56
|
+
(reset filters)
|
|
57
|
+
</em>
|
|
58
|
+
</div>
|
|
59
|
+
<div
|
|
60
|
+
class="item"
|
|
61
|
+
role="option"
|
|
62
|
+
>
|
|
63
|
+
<span
|
|
64
|
+
class="text"
|
|
65
|
+
>
|
|
66
|
+
some
|
|
67
|
+
</span>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
|
+
<div
|
|
73
|
+
class="selectedFilters"
|
|
74
|
+
/>
|
|
75
|
+
<div
|
|
76
|
+
class="dimmable structure-table-overflow"
|
|
77
|
+
>
|
|
78
|
+
<div
|
|
79
|
+
class="ui inverted dimmer"
|
|
80
|
+
style=""
|
|
81
|
+
>
|
|
82
|
+
<div
|
|
83
|
+
class="content"
|
|
84
|
+
>
|
|
85
|
+
<div
|
|
86
|
+
class="ui large loader"
|
|
87
|
+
/>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
<div
|
|
91
|
+
class="ui label structures-label-results"
|
|
92
|
+
>
|
|
93
|
+
Results
|
|
94
|
+
</div>
|
|
95
|
+
<table
|
|
96
|
+
class="ui small selectable sortable table"
|
|
97
|
+
>
|
|
98
|
+
<thead
|
|
99
|
+
class=""
|
|
100
|
+
>
|
|
101
|
+
<tr
|
|
102
|
+
class=""
|
|
103
|
+
>
|
|
104
|
+
<th
|
|
105
|
+
class="two wide"
|
|
106
|
+
>
|
|
107
|
+
Name
|
|
108
|
+
</th>
|
|
109
|
+
<th
|
|
110
|
+
class="one wide disabled"
|
|
111
|
+
>
|
|
112
|
+
type
|
|
113
|
+
</th>
|
|
114
|
+
<th
|
|
115
|
+
class="one wide"
|
|
116
|
+
>
|
|
117
|
+
System
|
|
118
|
+
</th>
|
|
119
|
+
<th
|
|
120
|
+
class="one wide disabled"
|
|
121
|
+
>
|
|
122
|
+
relation
|
|
123
|
+
</th>
|
|
124
|
+
<th
|
|
125
|
+
class="one wide disabled"
|
|
126
|
+
>
|
|
127
|
+
Group
|
|
128
|
+
</th>
|
|
129
|
+
<th
|
|
130
|
+
class="one wide"
|
|
131
|
+
>
|
|
132
|
+
Updated at
|
|
133
|
+
</th>
|
|
134
|
+
</tr>
|
|
135
|
+
</thead>
|
|
136
|
+
<tbody
|
|
137
|
+
class=""
|
|
138
|
+
>
|
|
139
|
+
<tr
|
|
140
|
+
class=""
|
|
141
|
+
>
|
|
142
|
+
<td
|
|
143
|
+
class="structure-cell-overflow"
|
|
144
|
+
title="1"
|
|
145
|
+
>
|
|
146
|
+
1
|
|
147
|
+
</td>
|
|
148
|
+
<td
|
|
149
|
+
class=""
|
|
150
|
+
>
|
|
151
|
+
text
|
|
152
|
+
</td>
|
|
153
|
+
<td
|
|
154
|
+
class=""
|
|
155
|
+
/>
|
|
156
|
+
<td
|
|
157
|
+
class=""
|
|
158
|
+
/>
|
|
159
|
+
<td
|
|
160
|
+
class=""
|
|
161
|
+
/>
|
|
162
|
+
<td
|
|
163
|
+
class=""
|
|
164
|
+
>
|
|
165
|
+
<time
|
|
166
|
+
datetime="1639138957797"
|
|
167
|
+
>
|
|
168
|
+
2021-12-10 12:22
|
|
169
|
+
</time>
|
|
170
|
+
</td>
|
|
171
|
+
</tr>
|
|
172
|
+
<tr
|
|
173
|
+
class=""
|
|
174
|
+
>
|
|
175
|
+
<td
|
|
176
|
+
class="structure-cell-overflow"
|
|
177
|
+
title="2"
|
|
178
|
+
>
|
|
179
|
+
2
|
|
180
|
+
</td>
|
|
181
|
+
<td
|
|
182
|
+
class=""
|
|
183
|
+
>
|
|
184
|
+
text
|
|
185
|
+
</td>
|
|
186
|
+
<td
|
|
187
|
+
class=""
|
|
188
|
+
/>
|
|
189
|
+
<td
|
|
190
|
+
class=""
|
|
191
|
+
/>
|
|
192
|
+
<td
|
|
193
|
+
class=""
|
|
194
|
+
/>
|
|
195
|
+
<td
|
|
196
|
+
class=""
|
|
197
|
+
>
|
|
198
|
+
<time
|
|
199
|
+
datetime="1639138957797"
|
|
200
|
+
>
|
|
201
|
+
2021-12-10 12:22
|
|
202
|
+
</time>
|
|
203
|
+
</td>
|
|
204
|
+
</tr>
|
|
205
|
+
</tbody>
|
|
206
|
+
</table>
|
|
207
|
+
</div>
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
46
210
|
`;
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
|
+
exports[`<StructuresDownloadOption /> has filter applied 1`] = `
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="item"
|
|
7
|
+
role="option"
|
|
8
|
+
>
|
|
9
|
+
<i
|
|
10
|
+
aria-hidden="true"
|
|
11
|
+
class="download icon"
|
|
12
|
+
/>
|
|
13
|
+
<span>
|
|
14
|
+
tooltip
|
|
15
|
+
</span>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
`;
|
|
19
|
+
|
|
3
20
|
exports[`<StructuresDownloadOption /> matches the latest snapshot 1`] = `
|
|
4
21
|
<div>
|
|
5
22
|
<div
|
|
@@ -56,7 +56,7 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
56
56
|
class="search link icon"
|
|
57
57
|
/>
|
|
58
58
|
<input
|
|
59
|
-
placeholder="
|
|
59
|
+
placeholder="Searching ..."
|
|
60
60
|
type="text"
|
|
61
61
|
value=""
|
|
62
62
|
/>
|
|
@@ -69,6 +69,8 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
69
69
|
/>
|
|
70
70
|
</button>
|
|
71
71
|
<div
|
|
72
|
+
aria-busy="false"
|
|
73
|
+
aria-disabled="false"
|
|
72
74
|
aria-expanded="false"
|
|
73
75
|
class="ui button floating labeled scrolling dropdown icon"
|
|
74
76
|
role="listbox"
|
|
@@ -94,7 +96,7 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
94
96
|
role="option"
|
|
95
97
|
>
|
|
96
98
|
<em>
|
|
97
|
-
(reset
|
|
99
|
+
(reset filters)
|
|
98
100
|
</em>
|
|
99
101
|
</div>
|
|
100
102
|
</div>
|
|
@@ -108,6 +110,7 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
108
110
|
>
|
|
109
111
|
<div
|
|
110
112
|
class="ui inverted dimmer"
|
|
113
|
+
style=""
|
|
111
114
|
>
|
|
112
115
|
<div
|
|
113
116
|
class="content"
|
|
@@ -137,7 +140,7 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
137
140
|
Structure
|
|
138
141
|
</th>
|
|
139
142
|
<th
|
|
140
|
-
class="one wide
|
|
143
|
+
class="one wide disabled"
|
|
141
144
|
>
|
|
142
145
|
Type
|
|
143
146
|
</th>
|
|
@@ -147,12 +150,12 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
147
150
|
System
|
|
148
151
|
</th>
|
|
149
152
|
<th
|
|
150
|
-
class="one wide
|
|
153
|
+
class="one wide disabled"
|
|
151
154
|
>
|
|
152
155
|
Relation Type
|
|
153
156
|
</th>
|
|
154
157
|
<th
|
|
155
|
-
class="one wide
|
|
158
|
+
class="one wide disabled"
|
|
156
159
|
>
|
|
157
160
|
Group
|
|
158
161
|
</th>
|
|
@@ -308,6 +311,66 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
308
311
|
</tr>
|
|
309
312
|
</tbody>
|
|
310
313
|
</table>
|
|
314
|
+
<div
|
|
315
|
+
aria-label="Pagination Navigation"
|
|
316
|
+
class="ui pagination menu"
|
|
317
|
+
role="navigation"
|
|
318
|
+
>
|
|
319
|
+
<a
|
|
320
|
+
aria-current="false"
|
|
321
|
+
aria-disabled="true"
|
|
322
|
+
aria-label="First item"
|
|
323
|
+
class="disabled item"
|
|
324
|
+
tabindex="-1"
|
|
325
|
+
type="firstItem"
|
|
326
|
+
value="1"
|
|
327
|
+
>
|
|
328
|
+
«
|
|
329
|
+
</a>
|
|
330
|
+
<a
|
|
331
|
+
aria-current="false"
|
|
332
|
+
aria-disabled="true"
|
|
333
|
+
aria-label="Previous item"
|
|
334
|
+
class="disabled item"
|
|
335
|
+
tabindex="-1"
|
|
336
|
+
type="prevItem"
|
|
337
|
+
value="1"
|
|
338
|
+
>
|
|
339
|
+
⟨
|
|
340
|
+
</a>
|
|
341
|
+
<a
|
|
342
|
+
aria-current="true"
|
|
343
|
+
aria-disabled="true"
|
|
344
|
+
class="active disabled item"
|
|
345
|
+
tabindex="-1"
|
|
346
|
+
type="pageItem"
|
|
347
|
+
value="1"
|
|
348
|
+
>
|
|
349
|
+
1
|
|
350
|
+
</a>
|
|
351
|
+
<a
|
|
352
|
+
aria-current="false"
|
|
353
|
+
aria-disabled="true"
|
|
354
|
+
aria-label="Next item"
|
|
355
|
+
class="disabled item"
|
|
356
|
+
tabindex="-1"
|
|
357
|
+
type="nextItem"
|
|
358
|
+
value="1"
|
|
359
|
+
>
|
|
360
|
+
⟩
|
|
361
|
+
</a>
|
|
362
|
+
<a
|
|
363
|
+
aria-current="false"
|
|
364
|
+
aria-disabled="true"
|
|
365
|
+
aria-label="Last item"
|
|
366
|
+
class="disabled item"
|
|
367
|
+
tabindex="-1"
|
|
368
|
+
type="lastItem"
|
|
369
|
+
value="1"
|
|
370
|
+
>
|
|
371
|
+
»
|
|
372
|
+
</a>
|
|
373
|
+
</div>
|
|
311
374
|
</div>
|
|
312
375
|
</div>
|
|
313
376
|
</div>
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<StructuresLabelResults /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"count": "22",
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
/>
|
|
15
|
-
</Label>
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="ui label structures-label-results"
|
|
7
|
+
>
|
|
8
|
+
22 structures found
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
16
11
|
`;
|
|
@@ -1,32 +1,77 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<StructuresSearchResults /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<Dimmer
|
|
8
|
-
inverted={true}
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="dimmable structure-table-overflow"
|
|
9
7
|
>
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
8
|
+
<div
|
|
9
|
+
class="ui inverted dimmer"
|
|
10
|
+
>
|
|
11
|
+
<div
|
|
12
|
+
class="content"
|
|
13
|
+
>
|
|
14
|
+
<div
|
|
15
|
+
class="ui large loader"
|
|
16
|
+
/>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
<div
|
|
20
|
+
class="ui label structures-label-results"
|
|
21
|
+
>
|
|
22
|
+
Results
|
|
23
|
+
</div>
|
|
24
|
+
<table
|
|
25
|
+
class="ui selectable sortable table"
|
|
26
|
+
>
|
|
27
|
+
<thead
|
|
28
|
+
class=""
|
|
29
|
+
>
|
|
30
|
+
<tr
|
|
31
|
+
class=""
|
|
32
|
+
>
|
|
33
|
+
<th
|
|
34
|
+
class="one wide"
|
|
35
|
+
>
|
|
36
|
+
Foo
|
|
37
|
+
</th>
|
|
38
|
+
</tr>
|
|
39
|
+
</thead>
|
|
40
|
+
<tbody
|
|
41
|
+
class=""
|
|
42
|
+
>
|
|
43
|
+
<tr
|
|
44
|
+
class=""
|
|
45
|
+
>
|
|
46
|
+
<td
|
|
47
|
+
class="structure-cell-overflow"
|
|
48
|
+
title="1"
|
|
49
|
+
>
|
|
50
|
+
1
|
|
51
|
+
</td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr
|
|
54
|
+
class=""
|
|
55
|
+
>
|
|
56
|
+
<td
|
|
57
|
+
class="structure-cell-overflow"
|
|
58
|
+
title="2"
|
|
59
|
+
>
|
|
60
|
+
2
|
|
61
|
+
</td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr
|
|
64
|
+
class=""
|
|
65
|
+
>
|
|
66
|
+
<td
|
|
67
|
+
class="structure-cell-overflow"
|
|
68
|
+
title="3"
|
|
69
|
+
>
|
|
70
|
+
3
|
|
71
|
+
</td>
|
|
72
|
+
</tr>
|
|
73
|
+
</tbody>
|
|
74
|
+
</table>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
32
77
|
`;
|