@truedat/dq 5.14.1 → 5.15.1
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": "5.
|
|
3
|
+
"version": "5.15.1",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -92,8 +92,8 @@
|
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
94
|
"@apollo/client": "^3.7.1",
|
|
95
|
-
"@truedat/core": "5.
|
|
96
|
-
"@truedat/df": "5.
|
|
95
|
+
"@truedat/core": "5.15.1",
|
|
96
|
+
"@truedat/df": "5.15.1",
|
|
97
97
|
"decode-uri-component": "^0.2.2",
|
|
98
98
|
"graphql": "^15.5.3",
|
|
99
99
|
"moment": "^2.29.4",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"react-dom": ">= 16.8.6 < 17",
|
|
119
119
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "c29b540210d0023992b422302bf2f2b974c42320"
|
|
122
122
|
}
|
|
@@ -129,7 +129,7 @@ export const RuleImplementationForm = ({
|
|
|
129
129
|
|
|
130
130
|
const validSegments = () => _.every(_.negate(_.isEmpty))(segments);
|
|
131
131
|
|
|
132
|
-
const
|
|
132
|
+
const validDataView = () => areStructuresComplete();
|
|
133
133
|
|
|
134
134
|
const areStructuresComplete = () =>
|
|
135
135
|
!_.isEmpty(structures) &&
|
|
@@ -150,7 +150,7 @@ export const RuleImplementationForm = ({
|
|
|
150
150
|
icon: "info",
|
|
151
151
|
isValid: () => validInformation(),
|
|
152
152
|
},
|
|
153
|
-
{ name: "dataset", icon: "database", isValid: () =>
|
|
153
|
+
{ name: "dataset", icon: "database", isValid: () => validDataView() },
|
|
154
154
|
{
|
|
155
155
|
name: "populations",
|
|
156
156
|
icon: "user",
|