@truedat/dq 5.2.5 → 5.2.7

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,6 +1,19 @@
1
1
  # Changelog
2
2
 
3
- ## [5.2.5] 2023-02-07
3
+ ## [5.2.7] 2023-02-28
4
+
5
+ ### Fixed
6
+
7
+ - [TD-5613] Structure loading implementation routes
8
+
9
+ ## [5.2.6] 2023-02-27
10
+
11
+ ### Fixed
12
+
13
+ - [TD-5613] Also consider "edit as form implementation" / "edit as raw
14
+ implementation"
15
+
16
+ ## [5.2.5] 2023-02-27
4
17
 
5
18
  ### Fixed
6
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dq",
3
- "version": "5.2.5",
3
+ "version": "5.2.7",
4
4
  "description": "Truedat Web Data Quality Module",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -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": "c98dc58ea461988def656711e96c17144fc8497a"
121
+ "gitHead": "402914140cf2839151e4afd202cbf20bebc37c40"
122
122
  }
@@ -181,20 +181,18 @@ export const ImplementationsRoutes = ({
181
181
  path={IMPLEMENTATION_CLONE}
182
182
  render={() => (
183
183
  <>
184
+ {ruleImplementationLoaded ? (
185
+ <ImplementationStructuresLoader
186
+ structureIds={implementationStructures}
187
+ />
188
+ ) : null}
184
189
  {!structuresAliasesLoading &&
185
190
  ruleImplementationLoaded &&
186
191
  implementationStructuresLoaded ? (
187
192
  isRuleImplemenationBasic ? (
188
193
  <NewBasicRuleImplementation edition clone />
189
194
  ) : (
190
- <>
191
- {ruleImplementationLoaded ? (
192
- <ImplementationStructuresLoader
193
- structureIds={implementationStructures}
194
- />
195
- ) : null}
196
- <NewRuleImplementation edition clone />
197
- </>
195
+ <NewRuleImplementation edition clone />
198
196
  )
199
197
  ) : null}
200
198
  </>
@@ -205,19 +203,18 @@ export const ImplementationsRoutes = ({
205
203
  path={IMPLEMENTATION_EDIT}
206
204
  render={() => (
207
205
  <>
206
+ {ruleImplementationLoaded ? (
207
+ <ImplementationStructuresLoader
208
+ structureIds={implementationStructures}
209
+ />
210
+ ) : null}
208
211
  {!structuresAliasesLoading &&
212
+ ruleImplementationLoaded &&
209
213
  implementationStructuresLoaded ? (
210
214
  isRuleImplemenationBasic ? (
211
215
  <NewBasicRuleImplementation edition />
212
216
  ) : (
213
- <>
214
- {ruleImplementationLoaded ? (
215
- <ImplementationStructuresLoader
216
- structureIds={implementationStructures}
217
- />
218
- ) : null}
219
- <NewRuleImplementation edition />
220
- </>
217
+ <NewRuleImplementation edition />
221
218
  )
222
219
  ) : null}
223
220
  </>