@truedat/dq 8.2.1 → 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.
|
|
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.
|
|
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": "
|
|
89
|
+
"gitHead": "ef27133e5868b9aad2d95d7f2c69f36063d4327b"
|
|
90
90
|
}
|
|
@@ -5,6 +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
|
+
// This is only for information purposes
|
|
8
9
|
import {
|
|
9
10
|
getImplementationStructures,
|
|
10
11
|
getImplementationStructuresLoaded,
|
|
@@ -261,8 +262,8 @@ export const ImplementationsRoutes = ({
|
|
|
261
262
|
/>
|
|
262
263
|
) : null}
|
|
263
264
|
{!structuresAliasesLoading &&
|
|
264
|
-
|
|
265
|
-
|
|
265
|
+
ruleImplementationLoaded &&
|
|
266
|
+
implementationStructuresLoaded ? (
|
|
266
267
|
isRuleImplemenationBasic ? (
|
|
267
268
|
<NewBasicRuleImplementation edition clone />
|
|
268
269
|
) : (
|
|
@@ -288,8 +289,8 @@ export const ImplementationsRoutes = ({
|
|
|
288
289
|
/>
|
|
289
290
|
) : null}
|
|
290
291
|
{!structuresAliasesLoading &&
|
|
291
|
-
|
|
292
|
-
|
|
292
|
+
ruleImplementationLoaded &&
|
|
293
|
+
implementationStructuresLoaded ? (
|
|
293
294
|
isRuleImplemenationBasic ? (
|
|
294
295
|
<NewBasicRuleImplementation edition />
|
|
295
296
|
) : (
|
|
@@ -315,8 +316,8 @@ export const ImplementationsRoutes = ({
|
|
|
315
316
|
/>
|
|
316
317
|
) : null}
|
|
317
318
|
{!structuresAliasesLoading &&
|
|
318
|
-
|
|
319
|
-
|
|
319
|
+
ruleImplementationLoaded &&
|
|
320
|
+
implementationStructuresLoaded ? (
|
|
320
321
|
<NewRuleImplementation edition implementationType="default" />
|
|
321
322
|
) : null}
|
|
322
323
|
</>
|
|
@@ -338,8 +339,8 @@ export const ImplementationsRoutes = ({
|
|
|
338
339
|
/>
|
|
339
340
|
) : null}
|
|
340
341
|
{!structuresAliasesLoading &&
|
|
341
|
-
|
|
342
|
-
|
|
342
|
+
ruleImplementationLoaded &&
|
|
343
|
+
implementationStructuresLoaded ? (
|
|
343
344
|
<NewRuleImplementation edition implementationType="raw" />
|
|
344
345
|
) : null}
|
|
345
346
|
</>
|
|
@@ -365,27 +366,6 @@ export const ImplementationsRoutes = ({
|
|
|
365
366
|
}
|
|
366
367
|
/>
|
|
367
368
|
|
|
368
|
-
{/*
|
|
369
|
-
|
|
370
|
-
// Este no tiene sentido, ya que no se envia un resultado y esta ya puesto en el
|
|
371
|
-
/ Rule resultsRoutes
|
|
372
|
-
<Route
|
|
373
|
-
// IMPLEMENTATION_RESULTS_DETAILS = "/implementations/:implementation_id/detail";
|
|
374
|
-
path="detail"
|
|
375
|
-
element={
|
|
376
|
-
<>
|
|
377
|
-
<ImplementationCrumbs />
|
|
378
|
-
<Segment>
|
|
379
|
-
{ruleImplementationLoaded ? (
|
|
380
|
-
<RuleImplementation>
|
|
381
|
-
<RuleResultDetails />
|
|
382
|
-
</RuleImplementation>
|
|
383
|
-
) : null}
|
|
384
|
-
</Segment>
|
|
385
|
-
</>
|
|
386
|
-
}
|
|
387
|
-
/> */}
|
|
388
|
-
|
|
389
369
|
<Route
|
|
390
370
|
// IMPLEMENTATION_RESULT_DETAILS = "/implementations/:implementation_id/results/:rule_result_id";
|
|
391
371
|
path="results/:rule_result_id/*"
|