@knime/product-features 0.2.1 → 0.2.3
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/dist/nodes.css +118 -5
- package/dist/nodes.js +9 -8
- package/dist/nodes.js.map +1 -1
- package/dist/src/nodes/NodeDescriptionTabs/NodeDescriptionTabs.vue.d.ts.map +1 -1
- package/dist/src/nodes/NodeDescriptionTabs/types.d.ts +2 -0
- package/dist/src/nodes/NodeDescriptionTabs/types.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/nodes.css
CHANGED
|
@@ -311,6 +311,84 @@
|
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
.kds-progress-bar {
|
|
315
|
+
&[data-v-5fdfbce2] {
|
|
316
|
+
--progress-bar-background-color: var(--kds-color-surface-subtle);
|
|
317
|
+
--progress-bar-foreground-color: var(
|
|
318
|
+
--kds-color-background-primary-bold-initial
|
|
319
|
+
);
|
|
320
|
+
--progress-bar-radius: var(--kds-border-radius-container-pill);
|
|
321
|
+
--progress-bar-height: var(--kds-dimension-component-height-0-25x);
|
|
322
|
+
|
|
323
|
+
position: relative;
|
|
324
|
+
width: 100%;
|
|
325
|
+
height: var(--progress-bar-height);
|
|
326
|
+
overflow: hidden;
|
|
327
|
+
border-radius: var(--progress-bar-radius);
|
|
328
|
+
|
|
329
|
+
/* Firefox uses this to target the bar that represents the value of the progress element */
|
|
330
|
+
|
|
331
|
+
/* the following two rules need to stay separate, as otherwise it causes it not to be applied in Chrome correctly */
|
|
332
|
+
}
|
|
333
|
+
& .progress[data-v-5fdfbce2] {
|
|
334
|
+
display: block;
|
|
335
|
+
width: 100%;
|
|
336
|
+
height: var(--progress-bar-height);
|
|
337
|
+
padding: 0;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
appearance: none;
|
|
340
|
+
|
|
341
|
+
/* Firefox sets the background of the bar from here */
|
|
342
|
+
background-color: var(--progress-bar-background-color);
|
|
343
|
+
border: none;
|
|
344
|
+
border-radius: var(--progress-bar-radius);
|
|
345
|
+
}
|
|
346
|
+
& .progress[data-v-5fdfbce2]::-webkit-progress-bar {
|
|
347
|
+
background-color: var(--progress-bar-background-color);
|
|
348
|
+
}
|
|
349
|
+
& .progress[data-v-5fdfbce2]::-webkit-progress-value {
|
|
350
|
+
background-color: var(--progress-bar-foreground-color);
|
|
351
|
+
border-radius: var(--progress-bar-radius);
|
|
352
|
+
transition: width 0.5s;
|
|
353
|
+
}
|
|
354
|
+
& .progress[data-v-5fdfbce2]::-moz-progress-bar {
|
|
355
|
+
background-color: var(--progress-bar-foreground-color);
|
|
356
|
+
}
|
|
357
|
+
& .progress[data-v-5fdfbce2]:indeterminate {
|
|
358
|
+
background-color: var(--progress-bar-background-color);
|
|
359
|
+
background-image: none;
|
|
360
|
+
}
|
|
361
|
+
& .progress[data-v-5fdfbce2]:indeterminate::-webkit-progress-bar {
|
|
362
|
+
background-color: transparent;
|
|
363
|
+
}
|
|
364
|
+
& .progress[data-v-5fdfbce2]:indeterminate::-moz-progress-bar {
|
|
365
|
+
background-color: transparent;
|
|
366
|
+
}
|
|
367
|
+
& .indeterminate-bar[data-v-5fdfbce2] {
|
|
368
|
+
position: absolute;
|
|
369
|
+
inset-block: 0;
|
|
370
|
+
width: 35%;
|
|
371
|
+
pointer-events: none;
|
|
372
|
+
background-color: var(--progress-bar-foreground-color);
|
|
373
|
+
border-radius: var(--kds-border-radius-container-pill);
|
|
374
|
+
animation: move-indeterminate-5fdfbce2 1.5s linear infinite;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
.kds-progress-bar-medium[data-v-5fdfbce2] {
|
|
378
|
+
--progress-bar-height: var(--kds-dimension-component-height-0-25x);
|
|
379
|
+
}
|
|
380
|
+
.kds-progress-bar-large[data-v-5fdfbce2] {
|
|
381
|
+
--progress-bar-height: var(--kds-dimension-component-height-0-75x);
|
|
382
|
+
}
|
|
383
|
+
@keyframes move-indeterminate-5fdfbce2 {
|
|
384
|
+
0% {
|
|
385
|
+
transform: translateX(-120%);
|
|
386
|
+
}
|
|
387
|
+
100% {
|
|
388
|
+
transform: translateX(320%);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
314
392
|
.kds-color-swatch {
|
|
315
393
|
&[data-v-91e0130d] {
|
|
316
394
|
display: inline-block;
|
|
@@ -1132,7 +1210,7 @@ html.kds-legacy {
|
|
|
1132
1210
|
}
|
|
1133
1211
|
}
|
|
1134
1212
|
|
|
1135
|
-
.kds-menu-item-link[data-v-
|
|
1213
|
+
.kds-menu-item-link[data-v-96d9cfba] {
|
|
1136
1214
|
display: block;
|
|
1137
1215
|
color: inherit;
|
|
1138
1216
|
text-decoration: none;
|
|
@@ -1149,7 +1227,7 @@ html.kds-legacy {
|
|
|
1149
1227
|
}
|
|
1150
1228
|
|
|
1151
1229
|
.kds-menu-container {
|
|
1152
|
-
&[data-v-
|
|
1230
|
+
&[data-v-9dc6d3f6] {
|
|
1153
1231
|
display: flex;
|
|
1154
1232
|
flex-direction: column;
|
|
1155
1233
|
gap: var(--kds-spacing-container-0-10x);
|
|
@@ -1161,11 +1239,46 @@ html.kds-legacy {
|
|
|
1161
1239
|
border-radius: var(--kds-border-radius-container-0-50x);
|
|
1162
1240
|
box-shadow: var(--kds-elevation-level-3);
|
|
1163
1241
|
}
|
|
1164
|
-
&[data-v-
|
|
1242
|
+
&[data-v-9dc6d3f6]:focus-visible {
|
|
1165
1243
|
outline: var(--kds-border-action-focused);
|
|
1166
1244
|
outline-offset: var(--kds-spacing-offset-focus);
|
|
1167
1245
|
}
|
|
1168
1246
|
}
|
|
1247
|
+
.submenu-popover[data-v-9dc6d3f6] {
|
|
1248
|
+
inset: anchor(top) auto auto anchor(right);
|
|
1249
|
+
padding: 0 var(--kds-spacing-container-0-25x);
|
|
1250
|
+
margin: 0;
|
|
1251
|
+
position-try-fallbacks:
|
|
1252
|
+
--kds-popover-try-right-dropdown, --kds-popover-try-left-dropdown,
|
|
1253
|
+
--kds-popover-try-right-dropup, --kds-popover-try-left-dropup;
|
|
1254
|
+
overflow: visible;
|
|
1255
|
+
font: inherit;
|
|
1256
|
+
color: inherit;
|
|
1257
|
+
background-color: transparent;
|
|
1258
|
+
border: none;
|
|
1259
|
+
border-radius: 0;
|
|
1260
|
+
box-shadow: none;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
/* noinspection CssInvalidFunction,CssInvalidAtRule */
|
|
1264
|
+
@position-try --kds-popover-try-right-dropdown {
|
|
1265
|
+
inset: anchor(top) auto auto anchor(right);
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
/* noinspection CssInvalidFunction,CssInvalidAtRule */
|
|
1269
|
+
@position-try --kds-popover-try-left-dropdown {
|
|
1270
|
+
inset: anchor(top) anchor(left) auto auto;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
/* noinspection CssInvalidFunction,CssInvalidAtRule */
|
|
1274
|
+
@position-try --kds-popover-try-right-dropup {
|
|
1275
|
+
inset: auto auto anchor(bottom) anchor(right);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
/* noinspection CssInvalidFunction,CssInvalidAtRule */
|
|
1279
|
+
@position-try --kds-popover-try-left-dropup {
|
|
1280
|
+
inset: auto anchor(left) anchor(bottom) auto;
|
|
1281
|
+
}
|
|
1169
1282
|
|
|
1170
1283
|
.kds-popover {
|
|
1171
1284
|
&[data-v-1e5f9d24] {
|
|
@@ -4515,10 +4628,10 @@ td {
|
|
|
4515
4628
|
font: var(--kds-font-base-title-small-strong);
|
|
4516
4629
|
}
|
|
4517
4630
|
|
|
4518
|
-
.content[data-v-
|
|
4631
|
+
.content[data-v-d2eb8e2e] {
|
|
4519
4632
|
padding: var(--kds-spacing-container-0-5x) 0;
|
|
4520
4633
|
color: var(--kds-color-text-and-icon-neutral);
|
|
4521
4634
|
}
|
|
4522
|
-
.empty-state[data-v-
|
|
4635
|
+
.empty-state[data-v-d2eb8e2e] {
|
|
4523
4636
|
margin: 0 auto;
|
|
4524
4637
|
}
|
package/dist/nodes.js
CHANGED
|
@@ -64,7 +64,7 @@ function useIcon({
|
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
const _sfc_main$
|
|
67
|
+
const _sfc_main$1E = /* @__PURE__ */ defineComponent({
|
|
68
68
|
__name: "KdsIcon",
|
|
69
69
|
props: {
|
|
70
70
|
name: {},
|
|
@@ -94,7 +94,7 @@ const _sfc_main$1D = /* @__PURE__ */ defineComponent({
|
|
|
94
94
|
}
|
|
95
95
|
});
|
|
96
96
|
|
|
97
|
-
const KdsIcon = /* @__PURE__ */ _export_sfc$1(_sfc_main$
|
|
97
|
+
const KdsIcon = /* @__PURE__ */ _export_sfc$1(_sfc_main$1E, [["__scopeId", "data-v-bff4f419"]]);
|
|
98
98
|
|
|
99
99
|
const iconNames = [
|
|
100
100
|
"add-user",
|
|
@@ -375,7 +375,7 @@ function useKdsIsTruncated(elementRef) {
|
|
|
375
375
|
}
|
|
376
376
|
|
|
377
377
|
const _hoisted_1$$ = ["title", "aria-label"];
|
|
378
|
-
const _hoisted_2$
|
|
378
|
+
const _hoisted_2$E = ["title"];
|
|
379
379
|
const _sfc_main$1z = /* @__PURE__ */ defineComponent({
|
|
380
380
|
__name: "KdsLiveStatus",
|
|
381
381
|
props: {
|
|
@@ -405,7 +405,7 @@ const _sfc_main$1z = /* @__PURE__ */ defineComponent({
|
|
|
405
405
|
ref: labelEl,
|
|
406
406
|
class: "label",
|
|
407
407
|
title: unref(isTruncated) ? __props.label : void 0
|
|
408
|
-
}, toDisplayString(__props.label), 9, _hoisted_2$
|
|
408
|
+
}, toDisplayString(__props.label), 9, _hoisted_2$E)) : createCommentVNode("", true)
|
|
409
409
|
], 10, _hoisted_1$$);
|
|
410
410
|
};
|
|
411
411
|
}
|
|
@@ -11590,7 +11590,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
11590
11590
|
optionsData: { default: () => [] },
|
|
11591
11591
|
viewsData: { default: () => [] },
|
|
11592
11592
|
emptyText: { default: "No ports, options or views available." },
|
|
11593
|
-
renderAsHtml: { type: Boolean, default: false }
|
|
11593
|
+
renderAsHtml: { type: Boolean, default: false },
|
|
11594
|
+
tabBarFullWidth: { type: Boolean, default: false }
|
|
11594
11595
|
},
|
|
11595
11596
|
setup(__props) {
|
|
11596
11597
|
const TAB_IDS = {
|
|
@@ -11642,10 +11643,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
11642
11643
|
createVNode(unref(KdsTabBar), {
|
|
11643
11644
|
modelValue: activeTab.value,
|
|
11644
11645
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => activeTab.value = $event),
|
|
11645
|
-
"full-width":
|
|
11646
|
+
"full-width": __props.tabBarFullWidth,
|
|
11646
11647
|
size: "small",
|
|
11647
11648
|
tabs: tabs.value
|
|
11648
|
-
}, null, 8, ["modelValue", "tabs"]),
|
|
11649
|
+
}, null, 8, ["modelValue", "full-width", "tabs"]),
|
|
11649
11650
|
createElementVNode("div", _hoisted_1, [
|
|
11650
11651
|
activeTab.value === TAB_IDS.PORTS ? (openBlock(), createBlock(PortsTab, {
|
|
11651
11652
|
key: 0,
|
|
@@ -11686,7 +11687,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
11686
11687
|
}
|
|
11687
11688
|
});
|
|
11688
11689
|
|
|
11689
|
-
const NodeDescriptionTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
11690
|
+
const NodeDescriptionTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d2eb8e2e"]]);
|
|
11690
11691
|
|
|
11691
11692
|
export { NodeDescriptionTabs, _sfc_main$5 as PortIcon };
|
|
11692
11693
|
//# sourceMappingURL=nodes.js.map
|