@truedat/dq 5.2.3 → 5.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.2.5] 2023-02-07
4
+
5
+ ### Fixed
6
+
7
+ - [TD-5613] Avoid basic implementation structure fetch
8
+
3
9
  ## [5.2.2] 2023-02-22
4
10
 
5
11
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dq",
3
- "version": "5.2.3",
3
+ "version": "5.2.5",
4
4
  "description": "Truedat Web Data Quality Module",
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": "5.2.3",
37
+ "@truedat/test": "5.2.4",
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",
@@ -92,8 +92,8 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@apollo/client": "^3.7.1",
95
- "@truedat/core": "5.2.3",
96
- "@truedat/df": "5.2.3",
95
+ "@truedat/core": "5.2.4",
96
+ "@truedat/df": "5.2.4",
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": "fecedbbb623fc091ced1eebf41bdcea30f2800fa"
121
+ "gitHead": "c98dc58ea461988def656711e96c17144fc8497a"
122
122
  }
@@ -181,18 +181,20 @@ export const ImplementationsRoutes = ({
181
181
  path={IMPLEMENTATION_CLONE}
182
182
  render={() => (
183
183
  <>
184
- {ruleImplementationLoaded ? (
185
- <ImplementationStructuresLoader
186
- structureIds={implementationStructures}
187
- />
188
- ) : null}
189
184
  {!structuresAliasesLoading &&
190
185
  ruleImplementationLoaded &&
191
186
  implementationStructuresLoaded ? (
192
187
  isRuleImplemenationBasic ? (
193
188
  <NewBasicRuleImplementation edition clone />
194
189
  ) : (
195
- <NewRuleImplementation edition clone />
190
+ <>
191
+ {ruleImplementationLoaded ? (
192
+ <ImplementationStructuresLoader
193
+ structureIds={implementationStructures}
194
+ />
195
+ ) : null}
196
+ <NewRuleImplementation edition clone />
197
+ </>
196
198
  )
197
199
  ) : null}
198
200
  </>
@@ -203,18 +205,19 @@ export const ImplementationsRoutes = ({
203
205
  path={IMPLEMENTATION_EDIT}
204
206
  render={() => (
205
207
  <>
206
- {ruleImplementationLoaded ? (
207
- <ImplementationStructuresLoader
208
- structureIds={implementationStructures}
209
- />
210
- ) : null}
211
208
  {!structuresAliasesLoading &&
212
- ruleImplementationLoaded &&
213
209
  implementationStructuresLoaded ? (
214
210
  isRuleImplemenationBasic ? (
215
211
  <NewBasicRuleImplementation edition />
216
212
  ) : (
217
- <NewRuleImplementation edition />
213
+ <>
214
+ {ruleImplementationLoaded ? (
215
+ <ImplementationStructuresLoader
216
+ structureIds={implementationStructures}
217
+ />
218
+ ) : null}
219
+ <NewRuleImplementation edition />
220
+ </>
218
221
  )
219
222
  ) : null}
220
223
  </>