@truedat/qx 7.5.4 → 7.5.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/package.json +4 -4
- package/src/components/common/expressions/Clauses.js +1 -1
- package/src/components/common/expressions/Condition.js +1 -1
- package/src/components/common/expressions/__tests__/__snapshots__/Condition.spec.js.snap +1 -1
- package/src/components/dataViews/queryableProperties/SelectField.js +1 -0
- package/src/components/functions/FunctionParams.js +1 -0
- package/src/components/qualityControls/QualityControlActions.js +2 -2
- package/src/components/qualityControls/QualityControlScores.js +1 -1
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControlHeader.spec.js.snap +1 -1
- package/src/components/qualityControls/__tests__/__snapshots__/QualityControlScores.spec.js.snap +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/qx",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.5",
|
|
4
4
|
"description": "Truedat Web Quality Experience package",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@testing-library/react": "^12.0.0",
|
|
36
36
|
"@testing-library/react-hooks": "^8.0.1",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "7.5.
|
|
38
|
+
"@truedat/test": "7.5.5",
|
|
39
39
|
"babel-jest": "^28.1.0",
|
|
40
40
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
41
41
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
]
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@truedat/core": "7.5.
|
|
93
|
+
"@truedat/core": "7.5.5",
|
|
94
94
|
"prop-types": "^15.8.1",
|
|
95
95
|
"react-hook-form": "^7.45.4",
|
|
96
96
|
"react-intl": "^5.20.10",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"overrides": {
|
|
107
107
|
"jsdom": "26.0.0"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "2a4343b3b2837540358b57d3d647408ab292aa21"
|
|
110
110
|
}
|
|
@@ -63,7 +63,7 @@ const ClauseExpression = ({ groupIndex, removeGroup, lastGroup }) => {
|
|
|
63
63
|
<div className="clause-and-group">
|
|
64
64
|
{isShownDelete && removeGroup ? (
|
|
65
65
|
<Button
|
|
66
|
-
size="
|
|
66
|
+
size="tiny"
|
|
67
67
|
onClick={() => removeGroup(groupIndex)}
|
|
68
68
|
icon="trash alternate outline"
|
|
69
69
|
basic
|
|
@@ -155,7 +155,7 @@ export default function Condition({ onDelete }) {
|
|
|
155
155
|
</QxContext.Provider>
|
|
156
156
|
</Grid.Column>
|
|
157
157
|
|
|
158
|
-
<Grid.Column width={1} verticalAlign="
|
|
158
|
+
<Grid.Column width={1} verticalAlign="top">
|
|
159
159
|
{onDelete && isShownDelete ? (
|
|
160
160
|
<div className="delete-expression-column">
|
|
161
161
|
<Button
|
|
@@ -3,7 +3,7 @@ import React, { useContext } from "react";
|
|
|
3
3
|
import PropTypes from "prop-types";
|
|
4
4
|
import { useIntl } from "react-intl";
|
|
5
5
|
import { Link, useHistory } from "react-router-dom";
|
|
6
|
-
import { Button, Container } from "semantic-ui-react";
|
|
6
|
+
import { Button, Container, Icon } from "semantic-ui-react";
|
|
7
7
|
import { linkTo, QUALITY_CONTROLS } from "@truedat/core/routes";
|
|
8
8
|
import { useAuthorized } from "@truedat/core/hooks";
|
|
9
9
|
import { ConfirmModal, GroupActions } from "@truedat/core/components";
|
|
@@ -59,7 +59,7 @@ const ConfirmDeletionModal = ({ qualityControl, onConfirm }) => {
|
|
|
59
59
|
icon={icon}
|
|
60
60
|
trigger={
|
|
61
61
|
<Button
|
|
62
|
-
icon={icon}
|
|
62
|
+
icon={<Icon name={icon} color="red" />}
|
|
63
63
|
content={formatMessage({ id: `quality_controls.actions.delete` })}
|
|
64
64
|
/>
|
|
65
65
|
}
|
|
@@ -115,7 +115,7 @@ export default function QualityControlScores() {
|
|
|
115
115
|
<ConfirmModal
|
|
116
116
|
icon="trash"
|
|
117
117
|
trigger={
|
|
118
|
-
<Button icon basic color="red">
|
|
118
|
+
<Button icon basic color="red" size="mini">
|
|
119
119
|
<Icon name="trash alternate outline" color="red" />
|
|
120
120
|
</Button>
|
|
121
121
|
}
|
package/src/components/qualityControls/__tests__/__snapshots__/QualityControlHeader.spec.js.snap
CHANGED
|
@@ -140,7 +140,7 @@ exports[`<QualityControlHeader /> matches the latest snapshot with control quali
|
|
|
140
140
|
>
|
|
141
141
|
<i
|
|
142
142
|
aria-hidden="true"
|
|
143
|
-
class="trash alternate outline icon"
|
|
143
|
+
class="red trash alternate outline icon"
|
|
144
144
|
/>
|
|
145
145
|
quality_controls.actions.delete
|
|
146
146
|
</button>
|