@truedat/dd 5.13.3 → 5.13.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 +5 -5
- package/src/components/StructureRow.js +4 -0
- package/src/components/StructureTabs.js +8 -1
- package/src/components/StructuresSearchResults.js +1 -1
- package/src/components/__tests__/__snapshots__/StructureRow.spec.js.snap +2 -0
- package/src/components/__tests__/__snapshots__/StructureTabs.spec.js.snap +1 -1
- package/src/components/__tests__/__snapshots__/StructuresGrantRequestView.spec.js.snap +7 -4
- package/src/components/__tests__/__snapshots__/StructuresSearchResults.spec.js.snap +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/dd",
|
|
3
|
-
"version": "5.13.
|
|
3
|
+
"version": "5.13.4",
|
|
4
4
|
"description": "Truedat Web Data Dictionary",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@apollo/client": "^3.7.1",
|
|
91
|
-
"@truedat/auth": "5.13.
|
|
92
|
-
"@truedat/core": "5.13.
|
|
93
|
-
"@truedat/df": "5.13.
|
|
91
|
+
"@truedat/auth": "5.13.4",
|
|
92
|
+
"@truedat/core": "5.13.4",
|
|
93
|
+
"@truedat/df": "5.13.4",
|
|
94
94
|
"lodash": "^4.17.21",
|
|
95
95
|
"moment": "^2.29.4",
|
|
96
96
|
"path-to-regexp": "^1.7.0",
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"react-dom": ">= 16.8.6 < 17",
|
|
116
116
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "53fddebbe61698097cb6830cbcc2d9ee47c3690f"
|
|
119
119
|
}
|
|
@@ -19,6 +19,10 @@ export const StructureRow = ({
|
|
|
19
19
|
{columns.map((column, i) => (
|
|
20
20
|
<Table.Cell
|
|
21
21
|
key={i}
|
|
22
|
+
{...(i == 0 && {
|
|
23
|
+
title: columnDecorator(column)(structure),
|
|
24
|
+
className: "structure-cell-overflow",
|
|
25
|
+
})}
|
|
22
26
|
textAlign={column.textAlign}
|
|
23
27
|
content={columnDecorator(column)(structure)}
|
|
24
28
|
onClick={() => onClick && onClick(structure)}
|
|
@@ -148,7 +148,14 @@ export const StructureTabs = ({
|
|
|
148
148
|
: null;
|
|
149
149
|
return (
|
|
150
150
|
<>
|
|
151
|
-
<Menu
|
|
151
|
+
<Menu
|
|
152
|
+
attached="top"
|
|
153
|
+
secondary
|
|
154
|
+
pointing
|
|
155
|
+
tabular
|
|
156
|
+
items={items}
|
|
157
|
+
className="tab-overflow"
|
|
158
|
+
/>
|
|
152
159
|
<Divider hidden />
|
|
153
160
|
</>
|
|
154
161
|
);
|
|
@@ -19,7 +19,7 @@ export const StructuresSearchResults = ({
|
|
|
19
19
|
links,
|
|
20
20
|
placeToTop,
|
|
21
21
|
}) => (
|
|
22
|
-
<Dimmer.Dimmable dimmed={loading}>
|
|
22
|
+
<Dimmer.Dimmable dimmed={loading} className="structure-table-overflow">
|
|
23
23
|
<Dimmer active={loading} inverted>
|
|
24
24
|
<Loader size="large" />
|
|
25
25
|
</Dimmer>
|
|
@@ -104,7 +104,7 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
104
104
|
class="selectedFilters"
|
|
105
105
|
/>
|
|
106
106
|
<div
|
|
107
|
-
class="dimmable"
|
|
107
|
+
class="dimmable structure-table-overflow"
|
|
108
108
|
>
|
|
109
109
|
<div
|
|
110
110
|
class="ui inverted dimmer"
|
|
@@ -175,7 +175,8 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
175
175
|
class=""
|
|
176
176
|
>
|
|
177
177
|
<td
|
|
178
|
-
class=""
|
|
178
|
+
class="structure-cell-overflow"
|
|
179
|
+
title="structure_1"
|
|
179
180
|
>
|
|
180
181
|
structure_1
|
|
181
182
|
</td>
|
|
@@ -219,7 +220,8 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
219
220
|
class=""
|
|
220
221
|
>
|
|
221
222
|
<td
|
|
222
|
-
class=""
|
|
223
|
+
class="structure-cell-overflow"
|
|
224
|
+
title="structure_2"
|
|
223
225
|
>
|
|
224
226
|
structure_2
|
|
225
227
|
</td>
|
|
@@ -263,7 +265,8 @@ exports[`<StructuresGrantRequestView /> Clicking a grant request button triggers
|
|
|
263
265
|
class=""
|
|
264
266
|
>
|
|
265
267
|
<td
|
|
266
|
-
class=""
|
|
268
|
+
class="structure-cell-overflow"
|
|
269
|
+
title="structure_3"
|
|
267
270
|
>
|
|
268
271
|
structure_3
|
|
269
272
|
</td>
|