@truedat/df 4.40.7 → 4.40.10
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 +5 -5
- package/src/messages/en.js +2 -0
- package/src/messages/es.js +2 -0
- package/src/templates/components/templateForm/TemplateForm.js +1 -1
- package/src/templates/components/templateForm/__tests__/TemplateForm.spec.js +1 -0
- package/src/templates/components/templateForm/__tests__/__snapshots__/TemplateForm.spec.js.snap +26 -0
- package/src/templates/utils/parseGroups.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/df",
|
|
3
|
-
"version": "4.40.
|
|
3
|
+
"version": "4.40.10",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
|
|
31
31
|
"@babel/preset-env": "^7.15.0",
|
|
32
32
|
"@babel/preset-react": "^7.14.5",
|
|
33
|
-
"@truedat/test": "4.40.
|
|
33
|
+
"@truedat/test": "4.40.10",
|
|
34
34
|
"babel-jest": "^27.0.6",
|
|
35
35
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
36
36
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
]
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@truedat/auth": "4.40.
|
|
84
|
-
"@truedat/core": "4.40.
|
|
83
|
+
"@truedat/auth": "4.40.10",
|
|
84
|
+
"@truedat/core": "4.40.10",
|
|
85
85
|
"axios": "^0.19.2",
|
|
86
86
|
"path-to-regexp": "^1.7.0",
|
|
87
87
|
"prop-types": "^15.7.2",
|
|
@@ -100,5 +100,5 @@
|
|
|
100
100
|
"react-dom": ">= 16.8.6 < 17",
|
|
101
101
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "2a753ab01d2f856c32336cebc938b83f4bc97ea6"
|
|
104
104
|
}
|
package/src/messages/en.js
CHANGED
|
@@ -92,6 +92,7 @@ export default {
|
|
|
92
92
|
"template.scope.ri": "Quality Implementation",
|
|
93
93
|
"template.scope.ie": "Data Request",
|
|
94
94
|
"template.scope.qe": "Quality Executions",
|
|
95
|
+
"template.scope.remediation": "Remediation plan",
|
|
95
96
|
"template.form.subsegment.info.popup":
|
|
96
97
|
"Please, you must enter a format (fileFormat) in order to edit this field",
|
|
97
98
|
"template.form.subsegment.error.requiredparam":
|
|
@@ -122,6 +123,7 @@ export default {
|
|
|
122
123
|
"templates.tabs.ri": "Quality Implementation",
|
|
123
124
|
"templates.tabs.ie": "Data Request",
|
|
124
125
|
"templates.tabs.qe": "Quality Executions",
|
|
126
|
+
"templates.tabs.remediation": "Remediation plan",
|
|
125
127
|
"template.error.content.repeated.field": "Template with repeated fields",
|
|
126
128
|
"template.error.content.repeated.group": "Template with repeated groups",
|
|
127
129
|
"template.error.content.invalid.type":
|
package/src/messages/es.js
CHANGED
|
@@ -92,6 +92,7 @@ export default {
|
|
|
92
92
|
"template.scope.ri": "Implementación de calidad",
|
|
93
93
|
"template.scope.ie": "Solicitud de datos",
|
|
94
94
|
"template.scope.qe": "Ejecuciones de calidad",
|
|
95
|
+
"template.scope.remediation": "Plan de remediación",
|
|
95
96
|
"template.form.subsegment.info.popup":
|
|
96
97
|
"Por favor, introduce un formato (fileFormat) para poder editar este campo",
|
|
97
98
|
"template.form.subsegment.error.requiredparam":
|
|
@@ -123,6 +124,7 @@ export default {
|
|
|
123
124
|
"templates.tabs.ri": "Implementaciones",
|
|
124
125
|
"templates.tabs.ie": "Solicitud de datos",
|
|
125
126
|
"templates.tabs.qe": "Ejecuciones de calidad",
|
|
127
|
+
"templates.tabs.remediation": "Plan de remediación",
|
|
126
128
|
"template.error.content.repeated.field": "Plantilla con campos repetidos",
|
|
127
129
|
"template.error.content.repeated.group": "Plantilla con grupos repetidos",
|
|
128
130
|
"template.error.content.invalid.type":
|
|
@@ -16,7 +16,7 @@ const scopeOptions = (formatMessage) =>
|
|
|
16
16
|
value,
|
|
17
17
|
})),
|
|
18
18
|
_.sortBy("text")
|
|
19
|
-
)(["bg", "dd", "dq", "gr", "ie", "ri", "qe"]);
|
|
19
|
+
)(["bg", "dd", "dq", "gr", "ie", "ri", "qe", "remediation"]);
|
|
20
20
|
|
|
21
21
|
export const TemplateForm = ({ loading, template, onSubmit, onDelete }) => {
|
|
22
22
|
const { formatMessage } = useIntl();
|
package/src/templates/components/templateForm/__tests__/__snapshots__/TemplateForm.spec.js.snap
CHANGED
|
@@ -80,6 +80,19 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
80
80
|
<div
|
|
81
81
|
class="menu transition"
|
|
82
82
|
>
|
|
83
|
+
<div
|
|
84
|
+
aria-checked="false"
|
|
85
|
+
aria-selected="false"
|
|
86
|
+
class="item"
|
|
87
|
+
role="option"
|
|
88
|
+
style="pointer-events: all;"
|
|
89
|
+
>
|
|
90
|
+
<span
|
|
91
|
+
class="text"
|
|
92
|
+
>
|
|
93
|
+
Remediation plan
|
|
94
|
+
</span>
|
|
95
|
+
</div>
|
|
83
96
|
<div
|
|
84
97
|
aria-checked="true"
|
|
85
98
|
aria-selected="true"
|
|
@@ -313,6 +326,19 @@ exports[`<TemplateForm /> matches the latest snapshot 1`] = `
|
|
|
313
326
|
<div
|
|
314
327
|
class="menu transition"
|
|
315
328
|
>
|
|
329
|
+
<div
|
|
330
|
+
aria-checked="false"
|
|
331
|
+
aria-selected="false"
|
|
332
|
+
class="item"
|
|
333
|
+
role="option"
|
|
334
|
+
style="pointer-events: all;"
|
|
335
|
+
>
|
|
336
|
+
<span
|
|
337
|
+
class="text"
|
|
338
|
+
>
|
|
339
|
+
Remediation plan
|
|
340
|
+
</span>
|
|
341
|
+
</div>
|
|
316
342
|
<div
|
|
317
343
|
aria-checked="true"
|
|
318
344
|
aria-selected="true"
|