@knime/hub-features 1.5.0 → 1.5.2
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,19 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ee229d3]
|
|
8
|
+
- @knime/utils@1.3.2
|
|
9
|
+
- @knime/components@1.21.1
|
|
10
|
+
|
|
11
|
+
## 1.5.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 3f6c9c5: Fix VersionItem content width
|
|
16
|
+
|
|
3
17
|
## 1.5.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"homepage": "https://knime.github.io/webapps-common/",
|
|
6
6
|
"license": "GPL 3 and Additional Permissions according to Sec. 7 (SEE the file LICENSE)",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"lodash-es": "4.17.21",
|
|
32
32
|
"ofetch": "^1.4.1",
|
|
33
33
|
"typescript": "^5.4.5",
|
|
34
|
-
"@knime/components": "1.21.
|
|
34
|
+
"@knime/components": "1.21.1",
|
|
35
35
|
"@knime/styles": "1.3.1",
|
|
36
|
-
"@knime/utils": "1.3.
|
|
36
|
+
"@knime/utils": "1.3.2"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"consola": "3.x",
|
|
@@ -146,7 +146,6 @@ const onLabelLeave = () => {
|
|
|
146
146
|
position: relative;
|
|
147
147
|
background-color: var(--knime-white);
|
|
148
148
|
display: flex;
|
|
149
|
-
justify-content: space-between;
|
|
150
149
|
align-items: center;
|
|
151
150
|
align-items: stretch;
|
|
152
151
|
padding: 10px;
|
|
@@ -155,6 +154,8 @@ const onLabelLeave = () => {
|
|
|
155
154
|
|
|
156
155
|
& .tooltip {
|
|
157
156
|
display: flex;
|
|
157
|
+
justify-content: space-between;
|
|
158
|
+
width: 100%;
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
& p {
|