@truedat/qx 7.13.9 → 7.14.0
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 +3 -3
- package/src/components/common/ClauseViewer.js +183 -21
- package/src/components/common/expressions/Condition.js +13 -6
- package/src/components/dataViews/DataViewEditor.js +0 -2
- package/src/components/dataViews/DataViewSummary.js +73 -0
- package/src/components/dataViews/__tests__/AdvancedDataViewEditor.spec.js +4 -1
- package/src/components/dataViews/__tests__/DataViewEditor.spec.js +167 -132
- package/src/components/dataViews/__tests__/DataViewSummary.spec.js +820 -0
- package/src/components/dataViews/__tests__/DataViews.spec.js +57 -17
- package/src/components/dataViews/__tests__/SimpleDataViewEditor.spec.js +140 -141
- package/src/components/dataViews/__tests__/__snapshots__/AdvancedDataViewEditor.spec.js.snap +963 -759
- package/src/components/dataViews/__tests__/__snapshots__/DataViewSelect.spec.js.snap +17 -13
- package/src/components/dataViews/__tests__/__snapshots__/DataViewSummary.spec.js.snap +1786 -0
- package/src/components/dataViews/__tests__/__snapshots__/Queryable.spec.js.snap +18 -14
- package/src/components/dataViews/__tests__/__snapshots__/Queryables.spec.js.snap +18 -14
- package/src/components/dataViews/advancedForm/AdvancedDataViewEditor.js +59 -48
- package/src/components/dataViews/queryableProperties/Join.js +2 -1
- package/src/components/dataViews/queryableProperties/Select.js +22 -30
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/Join.spec.js.snap +1 -1
- package/src/components/dataViews/queryableProperties/__tests__/__snapshots__/Select.spec.js.snap +37 -25
- package/src/components/dataViews/queryableSummaryHelpers.js +101 -0
- package/src/components/dataViews/simpleForm/SimpleDataViewEditor.js +9 -4
- package/src/components/dataViews/summary/From.js +45 -0
- package/src/components/dataViews/summary/GroupBy.js +82 -0
- package/src/components/dataViews/summary/Join.js +60 -0
- package/src/components/dataViews/summary/Select.js +31 -0
- package/src/components/dataViews/summary/Where.js +37 -0
- package/src/components/qualityControls/ControlPropertiesView.js +115 -63
- package/src/components/qualityControls/EditQualityControl.js +5 -3
- package/src/components/qualityControls/NewDraftQualityControl.js +8 -3
- package/src/components/qualityControls/NewQualityControl.js +5 -3
- package/src/components/qualityControls/QualityControlCrumbs.js +46 -5
- package/src/components/qualityControls/QualityControlRoutes.js +3 -1
- package/src/components/qualityControls/QualityControls.js +9 -18
- package/src/components/qualityControls/QualityControlsLabelResults.js +2 -2
- package/src/components/qualityControls/__tests__/__snapshots__/ControlPropertiesView.spec.js.snap +12 -9
- package/src/components/qualityControls/__tests__/__snapshots__/EditQualityControl.spec.js.snap +536 -493
- package/src/components/qualityControls/__tests__/__snapshots__/NewDraftQualityControl.spec.js.snap +510 -483
- package/src/components/qualityControls/__tests__/__snapshots__/NewQualityControl.spec.js.snap +261 -245
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControl.spec.js.snap +11 -8
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControlCrumbs.spec.js.snap +1 -1
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControlHeader.spec.js.snap +1 -1
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControls.spec.js.snap +87 -87
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControlsLabelResults.spec.js.snap +6 -2
- package/src/hooks/useDataViews.js +1 -1
- package/src/styles/Expression.less +25 -1
package/src/components/qualityControls/__tests__/__snapshots__/ControlPropertiesView.spec.js.snap
CHANGED
|
@@ -43,7 +43,7 @@ exports[`<ControlPropertiesView /> matches the latest snapshot for count 1`] = `
|
|
|
43
43
|
Data Structure
|
|
44
44
|
</div>
|
|
45
45
|
<div
|
|
46
|
-
class="ui
|
|
46
|
+
class="ui label"
|
|
47
47
|
/>
|
|
48
48
|
</div>
|
|
49
49
|
</div>
|
|
@@ -218,7 +218,7 @@ exports[`<ControlPropertiesView /> matches the latest snapshot for ratio 1`] = `
|
|
|
218
218
|
Data Structure
|
|
219
219
|
</div>
|
|
220
220
|
<div
|
|
221
|
-
class="ui
|
|
221
|
+
class="ui label"
|
|
222
222
|
>
|
|
223
223
|
ACCOUNTING_RULES
|
|
224
224
|
</div>
|
|
@@ -241,16 +241,17 @@ exports[`<ControlPropertiesView /> matches the latest snapshot for ratio 1`] = `
|
|
|
241
241
|
class="description"
|
|
242
242
|
>
|
|
243
243
|
<div
|
|
244
|
-
class="ui basic compact segment"
|
|
244
|
+
class="ui basic compact segment text-break-word"
|
|
245
245
|
>
|
|
246
246
|
<div
|
|
247
|
-
class="ui
|
|
247
|
+
class="ui segment no-margin text-break-word"
|
|
248
248
|
>
|
|
249
249
|
<div
|
|
250
250
|
class="text-align-left"
|
|
251
251
|
>
|
|
252
252
|
<div
|
|
253
|
-
class="ui
|
|
253
|
+
class="ui tiny horizontal label text-break-word"
|
|
254
|
+
title="eq"
|
|
254
255
|
>
|
|
255
256
|
eq
|
|
256
257
|
</div>
|
|
@@ -262,18 +263,20 @@ exports[`<ControlPropertiesView /> matches the latest snapshot for ratio 1`] = `
|
|
|
262
263
|
class="display-flex"
|
|
263
264
|
>
|
|
264
265
|
<div
|
|
265
|
-
class="ui
|
|
266
|
+
class="ui label text-break-word"
|
|
267
|
+
title="ACCOUNTING_RULES.INSTANCE"
|
|
266
268
|
>
|
|
267
|
-
INSTANCE
|
|
269
|
+
ACCOUNTING_RULES.INSTANCE
|
|
268
270
|
</div>
|
|
269
271
|
</div>
|
|
270
272
|
<div
|
|
271
273
|
class="display-flex"
|
|
272
274
|
>
|
|
273
275
|
<div
|
|
274
|
-
class="ui
|
|
276
|
+
class="ui label text-break-word"
|
|
277
|
+
title="ACCOUNTING_RULES.RULE_NAME"
|
|
275
278
|
>
|
|
276
|
-
RULE_NAME
|
|
279
|
+
ACCOUNTING_RULES.RULE_NAME
|
|
277
280
|
</div>
|
|
278
281
|
</div>
|
|
279
282
|
</div>
|