@truedat/dd 5.13.3 → 5.13.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dd",
3
- "version": "5.13.3",
3
+ "version": "5.13.5",
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.3",
92
- "@truedat/core": "5.13.3",
93
- "@truedat/df": "5.13.3",
91
+ "@truedat/auth": "5.13.5",
92
+ "@truedat/core": "5.13.5",
93
+ "@truedat/df": "5.13.5",
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": "93c1576f82fedd1d9b607cd0c9053279763877bc"
118
+ "gitHead": "724bbb1138d8b1ee602e80c9bbdc73c68864d3e8"
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 attached="top" secondary pointing tabular items={items} />
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>
@@ -7,9 +7,11 @@ exports[`<StructureRow /> matches the latest snapshot 1`] = `
7
7
  >
8
8
  <TableCell
9
9
  as="td"
10
+ className="structure-cell-overflow"
10
11
  content="s1"
11
12
  key="0"
12
13
  onClick={[Function]}
14
+ title="s1"
13
15
  />
14
16
  <TableCell
15
17
  as="td"
@@ -3,7 +3,7 @@
3
3
  exports[`<StructureTabs /> matches the latest snapshot: metadata 1`] = `
4
4
  <div>
5
5
  <div
6
- class="ui pointing secondary top attached tabular menu"
6
+ class="ui pointing secondary top attached tabular tab-overflow menu"
7
7
  >
8
8
  <a
9
9
  class="item"
@@ -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>
@@ -1,7 +1,9 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<StructuresSearchResults /> matches the latest snapshot 1`] = `
4
- <DimmerDimmable>
4
+ <DimmerDimmable
5
+ className="structure-table-overflow"
6
+ >
5
7
  <Dimmer
6
8
  inverted={true}
7
9
  >