@truedat/df 5.13.3 → 5.13.4
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/df",
|
|
3
|
-
"version": "5.13.
|
|
3
|
+
"version": "5.13.4",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@apollo/client": "^3.7.1",
|
|
90
|
-
"@truedat/auth": "5.13.
|
|
91
|
-
"@truedat/core": "5.13.
|
|
90
|
+
"@truedat/auth": "5.13.4",
|
|
91
|
+
"@truedat/core": "5.13.4",
|
|
92
92
|
"decode-uri-component": "^0.2.2",
|
|
93
93
|
"path-to-regexp": "^1.7.0",
|
|
94
94
|
"prop-types": "^15.8.1",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"react-dom": ">= 16.8.6 < 17",
|
|
110
110
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "53fddebbe61698097cb6830cbcc2d9ee47c3690f"
|
|
113
113
|
}
|
|
@@ -52,7 +52,11 @@ const ListHierarchyItem = ({
|
|
|
52
52
|
placeholder={formatMessage({ id: "hierarchy.node" })}
|
|
53
53
|
value={name == null ? "" : name}
|
|
54
54
|
error={error}
|
|
55
|
-
|
|
55
|
+
{...(!isEditionMode && {
|
|
56
|
+
"data-tooltip": name == null ? "" : name,
|
|
57
|
+
"data-position": "top left",
|
|
58
|
+
})}
|
|
59
|
+
className={isEditionMode ? "" : "hierarchyNode"}
|
|
56
60
|
disabled={!isEditionMode}
|
|
57
61
|
onChange={(_e, { value }) =>
|
|
58
62
|
onChange(id, { name: value, description: description })
|
|
@@ -263,6 +267,10 @@ const Hierarchy = ({
|
|
|
263
267
|
type="text"
|
|
264
268
|
placeholder={formatMessage({ id: "hierarchy.name" })}
|
|
265
269
|
disabled={!isEditionMode}
|
|
270
|
+
{...(!isEditionMode && {
|
|
271
|
+
"data-tooltip": hierarchy.name == null ? "" : hierarchy.name,
|
|
272
|
+
"data-position": "top left",
|
|
273
|
+
})}
|
|
266
274
|
style={isEditionMode ? {} : { opacity: 1 }}
|
|
267
275
|
value={hierarchy.name}
|
|
268
276
|
onChange={(_e, { value }) =>
|
|
@@ -113,6 +113,8 @@ exports[`<Hierarchy /> matches the last snapshot with edition mode false 1`] = `
|
|
|
113
113
|
>
|
|
114
114
|
<div
|
|
115
115
|
class="ui disabled input"
|
|
116
|
+
data-position="top left"
|
|
117
|
+
data-tooltip="Baggins"
|
|
116
118
|
style="opacity: 1;"
|
|
117
119
|
>
|
|
118
120
|
<input
|
|
@@ -149,8 +151,9 @@ exports[`<Hierarchy /> matches the last snapshot with edition mode false 1`] = `
|
|
|
149
151
|
>
|
|
150
152
|
<div>
|
|
151
153
|
<div
|
|
152
|
-
class="ui disabled left labeled input"
|
|
153
|
-
|
|
154
|
+
class="ui disabled left labeled input hierarchyNode"
|
|
155
|
+
data-position="top left"
|
|
156
|
+
data-tooltip="Fosco"
|
|
154
157
|
>
|
|
155
158
|
<div
|
|
156
159
|
class="ui basic label"
|
|
@@ -74,6 +74,8 @@ exports[`<HierarchyView /> matches the last snapshot 1`] = `
|
|
|
74
74
|
>
|
|
75
75
|
<div
|
|
76
76
|
class="ui disabled input"
|
|
77
|
+
data-position="top left"
|
|
78
|
+
data-tooltip="Baggins"
|
|
77
79
|
style="opacity: 1;"
|
|
78
80
|
>
|
|
79
81
|
<input
|
|
@@ -108,8 +110,9 @@ exports[`<HierarchyView /> matches the last snapshot 1`] = `
|
|
|
108
110
|
>
|
|
109
111
|
<div>
|
|
110
112
|
<div
|
|
111
|
-
class="ui disabled left labeled input"
|
|
112
|
-
|
|
113
|
+
class="ui disabled left labeled input hierarchyNode"
|
|
114
|
+
data-position="top left"
|
|
115
|
+
data-tooltip="Fosco"
|
|
113
116
|
>
|
|
114
117
|
<div
|
|
115
118
|
class="ui basic label"
|