@truedat/bg 7.1.6 → 7.1.8

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/bg",
3
- "version": "7.1.6",
3
+ "version": "7.1.8",
4
4
  "description": "Truedat Web Business Glossary",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -34,7 +34,7 @@
34
34
  "@testing-library/jest-dom": "^5.16.5",
35
35
  "@testing-library/react": "^12.0.0",
36
36
  "@testing-library/user-event": "^13.2.1",
37
- "@truedat/test": "7.1.6",
37
+ "@truedat/test": "7.1.8",
38
38
  "babel-jest": "^28.1.0",
39
39
  "babel-plugin-dynamic-import-node": "^2.3.3",
40
40
  "babel-plugin-lodash": "^3.3.4",
@@ -86,9 +86,9 @@
86
86
  ]
87
87
  },
88
88
  "dependencies": {
89
- "@truedat/core": "7.1.6",
90
- "@truedat/df": "7.1.6",
91
- "@truedat/lm": "7.1.6",
89
+ "@truedat/core": "7.1.8",
90
+ "@truedat/df": "7.1.8",
91
+ "@truedat/lm": "7.1.8",
92
92
  "decode-uri-component": "^0.2.2",
93
93
  "file-saver": "^2.0.5",
94
94
  "moment": "^2.29.4",
@@ -111,5 +111,5 @@
111
111
  "react-dom": ">= 16.8.6 < 17",
112
112
  "semantic-ui-react": ">= 2.0.3 < 2.2"
113
113
  },
114
- "gitHead": "0d15ef9da4d597618a5e3543ad2173e3d76f258b"
114
+ "gitHead": "eb92417df5ba0fbc5bc9f670d0d8540c39e3d712"
115
115
  }
@@ -1,4 +1,5 @@
1
- export { ConceptRoutes } from "./ConceptRoutes";
1
+ export { default as ConceptRoutes } from "./ConceptRoutes";
2
+
2
3
  export { ConceptsLinkDecorator } from "./ConceptsLinkDecorator";
3
4
 
4
5
  export * from "../relations/components";
@@ -90,16 +90,6 @@ exports[`<ConceptImplementationLinks /> show create implementations buttons when
90
90
  >
91
91
  Result
92
92
  </th>
93
- <th
94
- class="ascending sorted disabled"
95
- >
96
- Inserted At
97
- </th>
98
- <th
99
- class="ascending sorted disabled"
100
- >
101
- Updated At
102
- </th>
103
93
  </tr>
104
94
  </thead>
105
95
  <tbody
@@ -144,12 +134,6 @@ exports[`<ConceptImplementationLinks /> show create implementations buttons when
144
134
  <td
145
135
  class="center aligned"
146
136
  />
147
- <td
148
- class=""
149
- />
150
- <td
151
- class=""
152
- />
153
137
  </tr>
154
138
  </tbody>
155
139
  </table>
@@ -227,16 +211,6 @@ exports[`<ConceptImplementationLinks /> show implementations with groups 1`] = `
227
211
  >
228
212
  Result
229
213
  </th>
230
- <th
231
- class="ascending sorted disabled"
232
- >
233
- Inserted At
234
- </th>
235
- <th
236
- class="ascending sorted disabled"
237
- >
238
- Updated At
239
- </th>
240
214
  </tr>
241
215
  </thead>
242
216
  <tbody
@@ -281,12 +255,6 @@ exports[`<ConceptImplementationLinks /> show implementations with groups 1`] = `
281
255
  <td
282
256
  class="center aligned"
283
257
  />
284
- <td
285
- class=""
286
- />
287
- <td
288
- class=""
289
- />
290
258
  </tr>
291
259
  </tbody>
292
260
  </table>
@@ -352,16 +320,6 @@ exports[`<ConceptImplementationLinks /> show implementations with groups 1`] = `
352
320
  >
353
321
  Result
354
322
  </th>
355
- <th
356
- class="ascending sorted disabled"
357
- >
358
- Inserted At
359
- </th>
360
- <th
361
- class="ascending sorted disabled"
362
- >
363
- Updated At
364
- </th>
365
323
  </tr>
366
324
  </thead>
367
325
  <tbody
@@ -406,12 +364,6 @@ exports[`<ConceptImplementationLinks /> show implementations with groups 1`] = `
406
364
  <td
407
365
  class="center aligned"
408
366
  />
409
- <td
410
- class=""
411
- />
412
- <td
413
- class=""
414
- />
415
367
  </tr>
416
368
  </tbody>
417
369
  </table>
@@ -79,16 +79,6 @@ export const defaultBusinessConceptsLinksToImplementationsColumns = [
79
79
  textAlign: "center",
80
80
  width: 2,
81
81
  },
82
- {
83
- name: "inserted_at",
84
- fieldSelector: ({ inserted_at }) => ({ value: inserted_at }),
85
- fieldDecorator: DateTime,
86
- },
87
- {
88
- name: "updated_at",
89
- fieldSelector: ({ updated_at }) => ({ value: updated_at }),
90
- fieldDecorator: DateTime,
91
- },
92
82
  {
93
83
  name: "related_by",
94
84
  fieldSelector: _.pick(["business_concept_id", "business_concept_name"]),