@truedat/dq 8.2.0 → 8.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dq",
3
- "version": "8.2.0",
3
+ "version": "8.2.2",
4
4
  "description": "Truedat Web Data Quality Module",
5
5
  "sideEffects": false,
6
6
  "module": "src/index.js",
@@ -53,7 +53,7 @@
53
53
  "@testing-library/jest-dom": "^6.6.3",
54
54
  "@testing-library/react": "^16.3.0",
55
55
  "@testing-library/user-event": "^14.6.1",
56
- "@truedat/test": "8.2.0",
56
+ "@truedat/test": "8.2.2",
57
57
  "identity-obj-proxy": "^3.0.0",
58
58
  "jest": "^29.7.0",
59
59
  "redux-saga-test-plan": "^4.0.6"
@@ -86,5 +86,5 @@
86
86
  "semantic-ui-react": "^3.0.0-beta.2",
87
87
  "swr": "^2.3.3"
88
88
  },
89
- "gitHead": "a0b6d89f64e82602a1f3c5e250691526fe0c558a"
89
+ "gitHead": "ef27133e5868b9aad2d95d7f2c69f36063d4327b"
90
90
  }
@@ -5,31 +5,7 @@ import { Route, useParams, Routes } from "react-router";
5
5
  import { connect } from "react-redux";
6
6
  import { Segment } from "semantic-ui-react";
7
7
  import { ProtectedRoute, Loader } from "@truedat/core/router";
8
- import {
9
- IMPLEMENTATION_CLONE,
10
- IMPLEMENTATION_CONCEPT_LINKS_NEW,
11
- IMPLEMENTATION_CONCEPT_LINKS,
12
- IMPLEMENTATION_EDIT,
13
- IMPLEMENTATION_EDIT_AS_DEFAULT,
14
- IMPLEMENTATION_EDIT_AS_RAW,
15
- IMPLEMENTATION_EVENTS,
16
- IMPLEMENTATION_EXECUTIONS,
17
- IMPLEMENTATION_HISTORY,
18
- IMPLEMENTATION_MOVE,
19
- IMPLEMENTATION_NEW,
20
- IMPLEMENTATION_NEW_BASIC,
21
- IMPLEMENTATION_NEW_RAW,
22
- IMPLEMENTATION_RESULT_DETAILS,
23
- IMPLEMENTATION_RESULTS_DETAILS,
24
- IMPLEMENTATION_RESULTS,
25
- IMPLEMENTATION_STRUCTURES_NEW,
26
- IMPLEMENTATION_STRUCTURES,
27
- IMPLEMENTATION,
28
- IMPLEMENTATIONS,
29
- IMPLEMENTATIONS_BY_SUBSCOPE,
30
- IMPLEMENTATIONS_DEPRECATED,
31
- IMPLEMENTATIONS_PENDING,
32
- } from "@truedat/core/routes";
8
+ // This is only for information purposes
33
9
  import {
34
10
  getImplementationStructures,
35
11
  getImplementationStructuresLoaded,
@@ -48,7 +24,6 @@ import RuleImplementationHistory from "./RuleImplementationHistory";
48
24
  import RuleImplementationLoader from "./RuleImplementationLoader";
49
25
  import RuleImplementationProperties from "./RuleImplementationProperties";
50
26
  import RuleImplementationResults from "./RuleImplementationResults";
51
- import RuleResultDetails from "./RuleResultDetails";
52
27
  import RuleResultRemediationLoader from "./RuleResultRemediationLoader";
53
28
  import RuleResultsRoutes from "./RuleResultsRoutes";
54
29
  import RuleSubscriptionLoader from "./RuleSubscriptionLoader";
@@ -129,9 +104,7 @@ export const ImplementationsRoutes = ({
129
104
  <Route
130
105
  // IMPLEMENTATIONS_BY_SUBSCOPE = "/implementations/subscope/:subscope";
131
106
  path="/subscope/:subscope"
132
- element={
133
- <Implementations defaultFilters={{ status: ["published"] }} />
134
- }
107
+ element={<Implementations defaultFilters={{ status: ["published"] }} />}
135
108
  />
136
109
  <Route
137
110
  // IMPLEMENTATIONS_DEPRECATED = "/implementations/deprecated";
@@ -289,8 +262,8 @@ export const ImplementationsRoutes = ({
289
262
  />
290
263
  ) : null}
291
264
  {!structuresAliasesLoading &&
292
- ruleImplementationLoaded &&
293
- implementationStructuresLoaded ? (
265
+ ruleImplementationLoaded &&
266
+ implementationStructuresLoaded ? (
294
267
  isRuleImplemenationBasic ? (
295
268
  <NewBasicRuleImplementation edition clone />
296
269
  ) : (
@@ -316,8 +289,8 @@ export const ImplementationsRoutes = ({
316
289
  />
317
290
  ) : null}
318
291
  {!structuresAliasesLoading &&
319
- ruleImplementationLoaded &&
320
- implementationStructuresLoaded ? (
292
+ ruleImplementationLoaded &&
293
+ implementationStructuresLoaded ? (
321
294
  isRuleImplemenationBasic ? (
322
295
  <NewBasicRuleImplementation edition />
323
296
  ) : (
@@ -343,8 +316,8 @@ export const ImplementationsRoutes = ({
343
316
  />
344
317
  ) : null}
345
318
  {!structuresAliasesLoading &&
346
- ruleImplementationLoaded &&
347
- implementationStructuresLoaded ? (
319
+ ruleImplementationLoaded &&
320
+ implementationStructuresLoaded ? (
348
321
  <NewRuleImplementation edition implementationType="default" />
349
322
  ) : null}
350
323
  </>
@@ -366,8 +339,8 @@ export const ImplementationsRoutes = ({
366
339
  />
367
340
  ) : null}
368
341
  {!structuresAliasesLoading &&
369
- ruleImplementationLoaded &&
370
- implementationStructuresLoaded ? (
342
+ ruleImplementationLoaded &&
343
+ implementationStructuresLoaded ? (
371
344
  <NewRuleImplementation edition implementationType="raw" />
372
345
  ) : null}
373
346
  </>
@@ -393,27 +366,6 @@ export const ImplementationsRoutes = ({
393
366
  }
394
367
  />
395
368
 
396
- {/*
397
-
398
- // Este no tiene sentido, ya que no se envia un resultado y esta ya puesto en el
399
- / Rule resultsRoutes
400
- <Route
401
- // IMPLEMENTATION_RESULTS_DETAILS = "/implementations/:implementation_id/detail";
402
- path="detail"
403
- element={
404
- <>
405
- <ImplementationCrumbs />
406
- <Segment>
407
- {ruleImplementationLoaded ? (
408
- <RuleImplementation>
409
- <RuleResultDetails />
410
- </RuleImplementation>
411
- ) : null}
412
- </Segment>
413
- </>
414
- }
415
- /> */}
416
-
417
369
  <Route
418
370
  // IMPLEMENTATION_RESULT_DETAILS = "/implementations/:implementation_id/results/:rule_result_id";
419
371
  path="results/:rule_result_id/*"