@truedat/df 4.33.5 → 4.33.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [Unreleased]
4
+
5
+ - [TD-4306] New template scope for Quality Executions (`qe`)
6
+
3
7
  ## [4.31.1] 2021-10-20
4
8
 
5
9
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/df",
3
- "version": "4.33.5",
3
+ "version": "4.33.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.33.5",
33
+ "@truedat/test": "4.33.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.33.5",
84
- "@truedat/core": "4.33.5",
83
+ "@truedat/auth": "4.33.10",
84
+ "@truedat/core": "4.33.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": "ace547673c88f96ebe802a911eec3fc276cf9be4"
103
+ "gitHead": "b316406207a0b4621b8fffb33e6348712416b0c2"
104
104
  }
@@ -86,6 +86,7 @@ export default {
86
86
  "template.scope.gr": "Grants",
87
87
  "template.scope.ri": "Quality Implementation",
88
88
  "template.scope.ie": "Data Request",
89
+ "template.scope.qe": "Quality Executions",
89
90
  "template.form.subsegment.info.popup":
90
91
  "Please, you must enter a format (fileFormat) in order to edit this field",
91
92
  "template.form.subsegment.error.requiredparam":
@@ -115,6 +116,7 @@ export default {
115
116
  "templates.tabs.gr": "Grant request",
116
117
  "templates.tabs.ri": "Quality Implementation",
117
118
  "templates.tabs.ie": "Data Request",
119
+ "templates.tabs.qe": "Quality Executions",
118
120
  "template.error.content.repeated.field": "Template with repeated fields",
119
121
  "template.error.content.repeated.group": "Template with repeated groups",
120
122
  "template.error.content.invalid.type":
@@ -86,6 +86,7 @@ export default {
86
86
  "template.scope.gr": "Acceso a datos",
87
87
  "template.scope.ri": "Implementación de calidad",
88
88
  "template.scope.ie": "Solicitud de datos",
89
+ "template.scope.qe": "Ejecuciones de calidad",
89
90
  "template.form.subsegment.info.popup":
90
91
  "Por favor, introduce un formato (fileFormat) para poder editar este campo",
91
92
  "template.form.subsegment.error.requiredparam":
@@ -116,6 +117,7 @@ export default {
116
117
  "templates.tabs.gr": "Acceso a datos",
117
118
  "templates.tabs.ri": "Implementaciones",
118
119
  "templates.tabs.ie": "Solicitud de datos",
120
+ "templates.tabs.qe": "Ejecuciones de calidad",
119
121
  "template.error.content.repeated.field": "Plantilla con campos repetidos",
120
122
  "template.error.content.repeated.group": "Plantilla con grupos repetidos",
121
123
  "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"]);
19
+ )(["bg", "dd", "dq", "gr", "ie", "ri", "qe"]);
20
20
 
21
21
  export const TemplateForm = ({ loading, template, onSubmit, onDelete }) => {
22
22
  const { formatMessage } = useIntl();
@@ -158,6 +158,19 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
158
158
  ri
159
159
  </span>
160
160
  </div>
161
+ <div
162
+ aria-checked="false"
163
+ aria-selected="false"
164
+ class="item"
165
+ role="option"
166
+ style="pointer-events: all;"
167
+ >
168
+ <span
169
+ class="text"
170
+ >
171
+ template.scope.qe
172
+ </span>
173
+ </div>
161
174
  </div>
162
175
  </div>
163
176
  </div>
@@ -378,6 +391,19 @@ exports[`<TemplateForm /> matches the latest snapshot 1`] = `
378
391
  ri
379
392
  </span>
380
393
  </div>
394
+ <div
395
+ aria-checked="false"
396
+ aria-selected="false"
397
+ class="item"
398
+ role="option"
399
+ style="pointer-events: all;"
400
+ >
401
+ <span
402
+ class="text"
403
+ >
404
+ template.scope.qe
405
+ </span>
406
+ </div>
381
407
  </div>
382
408
  </div>
383
409
  </div>