@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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @knime/kds-table
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 361bab4: Simplify resizing on the right edge of the table
|
|
8
|
+
- Updated dependencies [c8cd4bb]
|
|
9
|
+
- Updated dependencies [ca41f9d]
|
|
10
|
+
- Updated dependencies [c4810f7]
|
|
11
|
+
- @knime/kds-components@0.30.1
|
|
12
|
+
- @knime/kds-styles@0.30.1
|
|
13
|
+
|
|
14
|
+
## 0.2.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [e0a3ce6]
|
|
19
|
+
- @knime/kds-components@0.30.0
|
|
20
|
+
- @knime/kds-styles@0.30.0
|
|
21
|
+
|
|
3
22
|
## 0.2.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -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: "M6 10.015H2.447a.95.95 0 0 1-.947-.946V2.446a.945.945 0 0 1 .947-.946H9.08a.95.95 0 0 1 .947.946v3.548M1.5 4.811h8.526M4.816 1.5v8.515m4.263-2.773V10.8M7.658 9.38l1.421 1.42L10.5 9.38",
|
|
16
|
+
"vector-effect": "non-scaling-stroke"
|
|
17
|
+
}, null, -1)
|
|
18
|
+
]))]))
|
|
19
|
+
}
|
|
20
|
+
const importTable = { render: render };
|
|
21
|
+
|
|
22
|
+
export { importTable as default, render };
|
|
23
|
+
//# sourceMappingURL=import-table-BaqmTPnF-BaqmTPnF.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"import-table-BaqmTPnF-BaqmTPnF.js","sources":["../../components/dist/import-table-BaqmTPnF.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: \"M6 10.015H2.447a.95.95 0 0 1-.947-.946V2.446a.945.945 0 0 1 .947-.946H9.08a.95.95 0 0 1 .947.946v3.548M1.5 4.811h8.526M4.816 1.5v8.515m4.263-2.773V10.8M7.658 9.38l1.421 1.42L10.5 9.38\",\n \"vector-effect\": \"non-scaling-stroke\"\n }, null, -1)\n ]))]))\n}\nconst importTable = { render: render };\n\nexport { importTable as default, render };\n//# sourceMappingURL=import-table-BaqmTPnF.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,yLAAyL;AAClM,MAAM,eAAe,EAAE;AACvB,KAAK,EAAE,IAAI,EAAE,EAAE;AACf,GAAG,CAAC,CAAC,CAAC,CAAC;AACP;AACK,MAAC,WAAW,GAAG,EAAE,MAAM,EAAE,MAAM;;;;"}
|