@knime/kds-table 0.2.0 → 0.2.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 +19 -0
- package/dist/import-table-BaqmTPnF-BaqmTPnF.js +23 -0
- package/dist/import-table-BaqmTPnF-BaqmTPnF.js.map +1 -0
- package/dist/index.css +263 -161
- package/dist/index.js +476 -71
- package/dist/index.js.map +1 -1
- package/dist/login-DGaxAy8E-DGaxAy8E.js +23 -0
- package/dist/login-DGaxAy8E-DGaxAy8E.js.map +1 -0
- package/dist/random-seed-BmLMj_2x-BmLMj_2x.js +23 -0
- package/dist/random-seed-BmLMj_2x-BmLMj_2x.js.map +1 -0
- package/dist/src/components/TableCore.vue.d.ts +2 -0
- package/dist/src/components/TableCore.vue.d.ts.map +1 -1
- package/dist/src/components/TableCoreVirtual.vue.d.ts +1 -0
- package/dist/src/components/TableCoreVirtual.vue.d.ts.map +1 -1
- package/dist/src/components/TableUI.vue.d.ts +53 -15
- package/dist/src/components/TableUI.vue.d.ts.map +1 -1
- package/dist/src/components/TableUIWithAutoSizeCalculation.vue.d.ts +53 -15
- package/dist/src/components/TableUIWithAutoSizeCalculation.vue.d.ts.map +1 -1
- package/dist/src/components/composables/useCommonScrollContainerProps.d.ts +7 -0
- package/dist/src/components/composables/useCommonScrollContainerProps.d.ts.map +1 -1
- package/dist/src/components/composables/useResizeScrollSpacer.d.ts +23 -0
- package/dist/src/components/composables/useResizeScrollSpacer.d.ts.map +1 -0
- package/dist/src/components/layout/Header.vue.d.ts +10 -3
- package/dist/src/components/layout/Header.vue.d.ts.map +1 -1
- package/dist/src/components/layout/useAutoScrollOnRightEdge.d.ts +24 -0
- package/dist/src/components/layout/useAutoScrollOnRightEdge.d.ts.map +1 -0
- package/dist/table-Pffb9Oig-Pffb9Oig.js +23 -0
- package/dist/table-Pffb9Oig-Pffb9Oig.js.map +1 -0
- package/dist/update-file-5lTfm97G-5lTfm97G.js +23 -0
- package/dist/update-file-5lTfm97G-5lTfm97G.js.map +1 -0
- package/dist/validate-CD0_eO0m-CD0_eO0m.js +23 -0
- package/dist/validate-CD0_eO0m-CD0_eO0m.js.map +1 -0
- package/package.json +4 -3
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
/**
|
|
3
|
+
* While a column resize is active a screen-wide spacer is rendered to the right of the
|
|
4
|
+
* table content, guaranteeing there is always horizontal scroll room so the edge
|
|
5
|
+
* auto-scroll (see Header.vue) can keep growing a column past the current table width.
|
|
6
|
+
*
|
|
7
|
+
* This composable owns the spacer's lifecycle: when the resize ends it only animates the
|
|
8
|
+
* spacer's width back down to the current body width if the extra scroll room is actually
|
|
9
|
+
* on screen (the container is scrolled past the body's right edge) - otherwise there is
|
|
10
|
+
* nothing to see and the spacer is dropped immediately. Once the collapse animation has
|
|
11
|
+
* finished, `onResizeScrollSpacerTransitionEnd` unmounts it.
|
|
12
|
+
*/
|
|
13
|
+
export declare const useResizeScrollSpacer: ({ columnResizeActive, currentBodyWidth, scrollContainer, }: {
|
|
14
|
+
columnResizeActive: Ref<boolean>;
|
|
15
|
+
currentBodyWidth: Ref<number>;
|
|
16
|
+
scrollContainer: Ref<HTMLElement | null>;
|
|
17
|
+
}) => {
|
|
18
|
+
showResizeScrollSpacer: Ref<boolean, boolean>;
|
|
19
|
+
collapseResizeScrollSpacer: Ref<boolean, boolean>;
|
|
20
|
+
additionalSpacerWidth: Ref<string, string>;
|
|
21
|
+
onResizeScrollSpacerTransitionEnd: () => void;
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=useResizeScrollSpacer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useResizeScrollSpacer.d.ts","sourceRoot":"","sources":["../../../../src/components/composables/useResizeScrollSpacer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,GAAG,EAAwB,MAAM,KAAK,CAAC;AAErD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,qBAAqB,GAAI,4DAInC;IACD,kBAAkB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACjC,gBAAgB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC9B,eAAe,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CAC1C;;;;;CAsDA,CAAC"}
|
|
@@ -61,11 +61,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
61
61
|
indexedColumnHeaders: import('vue').Ref<[string, number][], [string, number][]>;
|
|
62
62
|
headerStyles: import('vue').MaybeRef<import('vue').CSSProperties>;
|
|
63
63
|
onHeaderCellKeydown: (event: KeyboardEvent, columnIndex: number) => void;
|
|
64
|
+
scrollContainer: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
|
|
65
|
+
dragIndex: import('vue').Ref<number | null, number | null>;
|
|
66
|
+
columnSizeOnDragStart: import('vue').Ref<number, number>;
|
|
67
|
+
pageXOnDragStart: import('vue').Ref<number, number>;
|
|
68
|
+
currentPageX: import('vue').Ref<number, number>;
|
|
69
|
+
autoScrollOffset: import('vue').Ref<number, number>;
|
|
70
|
+
emitColumnResize: () => void;
|
|
71
|
+
startAutoScroll: (clientX: number) => void;
|
|
72
|
+
updateAutoScroll: (clientX: number) => void;
|
|
73
|
+
stopAutoScroll: () => void;
|
|
64
74
|
}, {
|
|
65
75
|
hoverIndex: null | number;
|
|
66
|
-
dragIndex: null | number;
|
|
67
|
-
columnSizeOnDragStart: number;
|
|
68
|
-
pageXOnDragStart: number;
|
|
69
76
|
minimumColumnWidth: number;
|
|
70
77
|
maximumSubMenuWidth: number;
|
|
71
78
|
currentDragHandlerHeight: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Header.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/Header.vue"],"names":[],"mappings":"AACA;
|
|
1
|
+
{"version":3,"file":"Header.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/Header.vue"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
export declare const AUTO_SCROLL_EDGE_SIZE = 20;
|
|
3
|
+
export declare const AUTO_SCROLL_SPEED = 250;
|
|
4
|
+
/**
|
|
5
|
+
* While a column is being resized, this composable grows the dragged column and scrolls
|
|
6
|
+
* the container to the right in lockstep whenever the pointer is near (or past) the
|
|
7
|
+
* container's right edge. This lets the last column be widened beyond the visible area
|
|
8
|
+
* without having to release and re-grab the handle.
|
|
9
|
+
*
|
|
10
|
+
* The accumulated px gained via auto-scrolling is added to the caller-owned
|
|
11
|
+
* `autoScrollOffset` ref (and reset to 0 on pointer-up); the caller must include it in the
|
|
12
|
+
* emitted column width. `onAutoScroll` is invoked on every animation frame so the caller
|
|
13
|
+
* can re-emit the (now wider) column width.
|
|
14
|
+
*/
|
|
15
|
+
export declare const useAutoScrollOnRightEdge: ({ scrollContainer, autoScrollOffset, onAutoScroll, }: {
|
|
16
|
+
scrollContainer: Ref<HTMLElement | null>;
|
|
17
|
+
autoScrollOffset: Ref<number>;
|
|
18
|
+
onAutoScroll: () => void;
|
|
19
|
+
}) => {
|
|
20
|
+
onPointerDown: (clientX: number) => void;
|
|
21
|
+
onPointerMove: (clientX: number) => void;
|
|
22
|
+
onPointerUp: () => void;
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=useAutoScrollOnRightEdge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAutoScrollOnRightEdge.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/useAutoScrollOnRightEdge.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,GAAG,EAAY,MAAM,KAAK,CAAC;AAKzC,eAAO,MAAM,qBAAqB,KAAK,CAAC;AAIxC,eAAO,MAAM,iBAAiB,MAAM,CAAC;AAErC;;;;;;;;;;GAUG;AACH,eAAO,MAAM,wBAAwB,GAAI,sDAItC;IACD,eAAe,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IACzC,gBAAgB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC9B,YAAY,EAAE,MAAM,IAAI,CAAC;CAC1B;6BA2CiC,MAAM;6BAKN,MAAM;;CAUvC,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, createElementVNode } from 'vue';
|
|
2
|
+
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
fill: "none",
|
|
6
|
+
stroke: "currentColor",
|
|
7
|
+
"stroke-linecap": "round",
|
|
8
|
+
"stroke-linejoin": "round",
|
|
9
|
+
viewBox: "0 0 12 12"
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
function render(_ctx, _cache) {
|
|
13
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1, [...(_cache[0] || (_cache[0] = [
|
|
14
|
+
createElementVNode("path", {
|
|
15
|
+
d: "M9.5 1.5h-7a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1m0 0L6 5M4.5 1.5l-3 3m5.5-3L3.5 5m7-2-2 2m-7 0h9M5 5v5.5",
|
|
16
|
+
"vector-effect": "non-scaling-stroke"
|
|
17
|
+
}, null, -1)
|
|
18
|
+
]))]))
|
|
19
|
+
}
|
|
20
|
+
const table = { render: render };
|
|
21
|
+
|
|
22
|
+
export { table as default, render };
|
|
23
|
+
//# sourceMappingURL=table-Pffb9Oig-Pffb9Oig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-Pffb9Oig-Pffb9Oig.js","sources":["../../components/dist/table-Pffb9Oig.js"],"sourcesContent":["import { openBlock, createElementBlock, createElementVNode } from 'vue';\n\nconst _hoisted_1 = {\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n stroke: \"currentColor\",\n \"stroke-linecap\": \"round\",\n \"stroke-linejoin\": \"round\",\n viewBox: \"0 0 12 12\"\n};\n\nfunction render(_ctx, _cache) {\n return (openBlock(), createElementBlock(\"svg\", _hoisted_1, [...(_cache[0] || (_cache[0] = [\n createElementVNode(\"path\", {\n d: \"M9.5 1.5h-7a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1m0 0L6 5M4.5 1.5l-3 3m5.5-3L3.5 5m7-2-2 2m-7 0h9M5 5v5.5\",\n \"vector-effect\": \"non-scaling-stroke\"\n }, null, -1)\n ]))]))\n}\nconst table = { render: render };\n\nexport { table as default, render };\n//# sourceMappingURL=table-Pffb9Oig.js.map\n"],"names":[],"mappings":";;AAEA,MAAM,UAAU,GAAG;AACnB,EAAE,KAAK,EAAE,4BAA4B;AACrC,EAAE,IAAI,EAAE,MAAM;AACd,EAAE,MAAM,EAAE,cAAc;AACxB,EAAE,gBAAgB,EAAE,OAAO;AAC3B,EAAE,iBAAiB,EAAE,OAAO;AAC5B,EAAE,OAAO,EAAE;AACX,CAAC;;AAED,SAAS,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE;AAC9B,EAAE,QAAQ,SAAS,EAAE,EAAE,kBAAkB,CAAC,KAAK,EAAE,UAAU,EAAE,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,MAAM,CAAC,CAAC,CAAC,GAAG;AAC5F,IAAI,kBAAkB,CAAC,MAAM,EAAE;AAC/B,MAAM,CAAC,EAAE,oIAAoI;AAC7I,MAAM,eAAe,EAAE;AACvB,KAAK,EAAE,IAAI,EAAE,EAAE;AACf,GAAG,CAAC,CAAC,CAAC,CAAC;AACP;AACK,MAAC,KAAK,GAAG,EAAE,MAAM,EAAE,MAAM;;;;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, createElementVNode } from 'vue';
|
|
2
|
+
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
fill: "none",
|
|
6
|
+
stroke: "currentColor",
|
|
7
|
+
"stroke-linecap": "round",
|
|
8
|
+
"stroke-linejoin": "round",
|
|
9
|
+
viewBox: "0 0 12 12"
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
function render(_ctx, _cache) {
|
|
13
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1, [...(_cache[0] || (_cache[0] = [
|
|
14
|
+
createElementVNode("path", {
|
|
15
|
+
d: "m10.018 11-.818-.502.327-.804m-.327.804c1.018-.126 1.8-.897 1.8-1.92 0-.915-.618-1.686-1.473-1.938m-2.171-.484.818.502-.327.83m.327-.83c-1.018.126-1.8.897-1.8 1.92 0 .915.618 1.686 1.473 1.938m-2.182.172H2.381c-.487 0-.881-.362-.881-.807V1.807c0-.446.394-.807.88-.807h4.515L9.72 3.906v.757M6.895 1v2.906H9.72",
|
|
16
|
+
"vector-effect": "non-scaling-stroke"
|
|
17
|
+
}, null, -1)
|
|
18
|
+
]))]))
|
|
19
|
+
}
|
|
20
|
+
const updateFile = { render: render };
|
|
21
|
+
|
|
22
|
+
export { updateFile as default, render };
|
|
23
|
+
//# sourceMappingURL=update-file-5lTfm97G-5lTfm97G.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-file-5lTfm97G-5lTfm97G.js","sources":["../../components/dist/update-file-5lTfm97G.js"],"sourcesContent":["import { openBlock, createElementBlock, createElementVNode } from 'vue';\n\nconst _hoisted_1 = {\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n stroke: \"currentColor\",\n \"stroke-linecap\": \"round\",\n \"stroke-linejoin\": \"round\",\n viewBox: \"0 0 12 12\"\n};\n\nfunction render(_ctx, _cache) {\n return (openBlock(), createElementBlock(\"svg\", _hoisted_1, [...(_cache[0] || (_cache[0] = [\n createElementVNode(\"path\", {\n d: \"m10.018 11-.818-.502.327-.804m-.327.804c1.018-.126 1.8-.897 1.8-1.92 0-.915-.618-1.686-1.473-1.938m-2.171-.484.818.502-.327.83m.327-.83c-1.018.126-1.8.897-1.8 1.92 0 .915.618 1.686 1.473 1.938m-2.182.172H2.381c-.487 0-.881-.362-.881-.807V1.807c0-.446.394-.807.88-.807h4.515L9.72 3.906v.757M6.895 1v2.906H9.72\",\n \"vector-effect\": \"non-scaling-stroke\"\n }, null, -1)\n ]))]))\n}\nconst updateFile = { render: render };\n\nexport { updateFile as default, render };\n//# sourceMappingURL=update-file-5lTfm97G.js.map\n"],"names":[],"mappings":";;AAEA,MAAM,UAAU,GAAG;AACnB,EAAE,KAAK,EAAE,4BAA4B;AACrC,EAAE,IAAI,EAAE,MAAM;AACd,EAAE,MAAM,EAAE,cAAc;AACxB,EAAE,gBAAgB,EAAE,OAAO;AAC3B,EAAE,iBAAiB,EAAE,OAAO;AAC5B,EAAE,OAAO,EAAE;AACX,CAAC;;AAED,SAAS,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE;AAC9B,EAAE,QAAQ,SAAS,EAAE,EAAE,kBAAkB,CAAC,KAAK,EAAE,UAAU,EAAE,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,MAAM,CAAC,CAAC,CAAC,GAAG;AAC5F,IAAI,kBAAkB,CAAC,MAAM,EAAE;AAC/B,MAAM,CAAC,EAAE,sTAAsT;AAC/T,MAAM,eAAe,EAAE;AACvB,KAAK,EAAE,IAAI,EAAE,EAAE;AACf,GAAG,CAAC,CAAC,CAAC,CAAC;AACP;AACK,MAAC,UAAU,GAAG,EAAE,MAAM,EAAE,MAAM;;;;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, createElementVNode } from 'vue';
|
|
2
|
+
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
fill: "none",
|
|
6
|
+
stroke: "currentColor",
|
|
7
|
+
"stroke-linecap": "round",
|
|
8
|
+
"stroke-linejoin": "round",
|
|
9
|
+
viewBox: "0 0 12 12"
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
function render(_ctx, _cache) {
|
|
13
|
+
return (openBlock(), createElementBlock("svg", _hoisted_1, [...(_cache[0] || (_cache[0] = [
|
|
14
|
+
createElementVNode("path", {
|
|
15
|
+
d: "M4.847 10.398a5.1 5.1 0 0 1-1.388-.519M7.085 1A5.07 5.07 0 0 1 9.9 2.694 4.7 4.7 0 0 1 11 5.699a4.7 4.7 0 0 1-1.099 3.005 5.07 5.07 0 0 1-2.816 1.694m.585-2.089-.585 2.089L9.433 11M1.814 8.426a4.7 4.7 0 0 1-.686-1.388M1 4.896c.09-.509.262-.99.504-1.432l.094-.163m1.518-1.575A5.1 5.1 0 0 1 4.846 1M4.47 5.449 5.555 6.8 7.67 4.25",
|
|
16
|
+
"vector-effect": "non-scaling-stroke"
|
|
17
|
+
}, null, -1)
|
|
18
|
+
]))]))
|
|
19
|
+
}
|
|
20
|
+
const validate = { render: render };
|
|
21
|
+
|
|
22
|
+
export { validate as default, render };
|
|
23
|
+
//# sourceMappingURL=validate-CD0_eO0m-CD0_eO0m.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validate-CD0_eO0m-CD0_eO0m.js","sources":["../../components/dist/validate-CD0_eO0m.js"],"sourcesContent":["import { openBlock, createElementBlock, createElementVNode } from 'vue';\n\nconst _hoisted_1 = {\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n stroke: \"currentColor\",\n \"stroke-linecap\": \"round\",\n \"stroke-linejoin\": \"round\",\n viewBox: \"0 0 12 12\"\n};\n\nfunction render(_ctx, _cache) {\n return (openBlock(), createElementBlock(\"svg\", _hoisted_1, [...(_cache[0] || (_cache[0] = [\n createElementVNode(\"path\", {\n d: \"M4.847 10.398a5.1 5.1 0 0 1-1.388-.519M7.085 1A5.07 5.07 0 0 1 9.9 2.694 4.7 4.7 0 0 1 11 5.699a4.7 4.7 0 0 1-1.099 3.005 5.07 5.07 0 0 1-2.816 1.694m.585-2.089-.585 2.089L9.433 11M1.814 8.426a4.7 4.7 0 0 1-.686-1.388M1 4.896c.09-.509.262-.99.504-1.432l.094-.163m1.518-1.575A5.1 5.1 0 0 1 4.846 1M4.47 5.449 5.555 6.8 7.67 4.25\",\n \"vector-effect\": \"non-scaling-stroke\"\n }, null, -1)\n ]))]))\n}\nconst validate = { render: render };\n\nexport { validate as default, render };\n//# sourceMappingURL=validate-CD0_eO0m.js.map\n"],"names":[],"mappings":";;AAEA,MAAM,UAAU,GAAG;AACnB,EAAE,KAAK,EAAE,4BAA4B;AACrC,EAAE,IAAI,EAAE,MAAM;AACd,EAAE,MAAM,EAAE,cAAc;AACxB,EAAE,gBAAgB,EAAE,OAAO;AAC3B,EAAE,iBAAiB,EAAE,OAAO;AAC5B,EAAE,OAAO,EAAE;AACX,CAAC;;AAED,SAAS,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE;AAC9B,EAAE,QAAQ,SAAS,EAAE,EAAE,kBAAkB,CAAC,KAAK,EAAE,UAAU,EAAE,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,MAAM,CAAC,CAAC,CAAC,GAAG;AAC5F,IAAI,kBAAkB,CAAC,MAAM,EAAE;AAC/B,MAAM,CAAC,EAAE,yUAAyU;AAClV,MAAM,eAAe,EAAE;AACvB,KAAK,EAAE,IAAI,EAAE,EAAE;AACf,GAAG,CAAC,CAAC,CAAC,CAAC;AACP;AACK,MAAC,QAAQ,GAAG,EAAE,MAAM,EAAE,MAAM;;;;"}
|
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/kds-table",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"description": "Package containing the table component of the KNIME Design System",
|
|
6
6
|
"license": "See LICENSE file",
|
|
7
7
|
"author": "KNIME AG, Zurich, Switzerland",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@knime/utils": "^1.11.0",
|
|
10
|
+
"@vueuse/core": "^14.2.1",
|
|
10
11
|
"@knime/vue-headless-virtual-scroller": "0.1.3",
|
|
11
12
|
"fast-deep-equal": "3.1.3",
|
|
12
13
|
"raf-throttle": "2.0.6",
|
|
13
14
|
"uuid": "14.0.0",
|
|
14
15
|
"vue": "3.5.32",
|
|
15
|
-
"@knime/kds-components": "^0.
|
|
16
|
-
"@knime/kds-styles": "^0.
|
|
16
|
+
"@knime/kds-components": "^0.30.1",
|
|
17
|
+
"@knime/kds-styles": "^0.30.1"
|
|
17
18
|
},
|
|
18
19
|
"devDependencies": {
|
|
19
20
|
"@storybook/vue3-vite": "^10.4.1",
|