@knime/hub-features 1.14.18 → 1.14.20

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,18 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.14.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [637189c]
8
+ - @knime/components@1.39.1
9
+
10
+ ## 1.14.19
11
+
12
+ ### Patch Changes
13
+
14
+ - 2b7c731: add visibility info in version limit hint in ManageVersions panel
15
+
3
16
  ## 1.14.18
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.14.18",
3
+ "version": "1.14.20",
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,7 +31,7 @@
31
31
  "lodash-es": "4.17.21",
32
32
  "ofetch": "^1.4.1",
33
33
  "typescript": "^5.8.3",
34
- "@knime/components": "1.39.0",
34
+ "@knime/components": "1.39.1",
35
35
  "@knime/styles": "1.14.2",
36
36
  "@knime/utils": "1.6.2"
37
37
  },
@@ -30,6 +30,7 @@ type ManageVersionsProps = {
30
30
  hasEditCapability: boolean;
31
31
  versionLimit?: VersionLimit;
32
32
  upgradeUrl?: string;
33
+ isPrivate?: boolean;
33
34
  };
34
35
 
35
36
  defineProps<ManageVersionsProps>();
@@ -109,6 +110,7 @@ const closeLabelPopovers = throttle(() => {
109
110
  currentUsage: versionLimit.currentUsage,
110
111
  }"
111
112
  :upgrade-url
113
+ :is-private
112
114
  />
113
115
  </div>
114
116
  </div>
@@ -5,9 +5,14 @@ import { InlineMessage } from "@knime/components";
5
5
 
6
6
  import type { VersionLimit } from "../types";
7
7
 
8
- const { versionLimit, upgradeUrl = undefined } = defineProps<{
8
+ const {
9
+ versionLimit,
10
+ upgradeUrl = undefined,
11
+ isPrivate = false,
12
+ } = defineProps<{
9
13
  versionLimit: Required<VersionLimit>;
10
14
  upgradeUrl?: string;
15
+ isPrivate?: boolean;
11
16
  }>();
12
17
 
13
18
  const isLimitReached = computed(
@@ -27,6 +32,6 @@ const title = computed(() => {
27
32
  <InlineMessage variant="info" :title>
28
33
  <template v-if="upgradeUrl"><a :href="upgradeUrl">Upgrade</a></template>
29
34
  <template v-else>Upgrade</template>
30
- to use unlimited versions.
35
+ to use unlimited versions{{ isPrivate ? " for private items." : "." }}
31
36
  </InlineMessage>
32
37
  </template>