From df6f5471df548b2b08f22a8b461ecbcd79d1e865 Mon Sep 17 00:00:00 2001 From: dualwind Date: Sun, 21 Jan 2024 00:48:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=A4=9A=E4=B8=AA=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=EF=BC=88=E4=BB=8E=E6=9C=AC=E7=89=88=E6=9C=AC=E5=BC=80?= =?UTF-8?q?=E5=A7=8B=EF=BC=8C=E9=80=90=E6=AD=A5=E5=BC=95=E5=85=A5=E5=A4=9A?= =?UTF-8?q?=E7=A7=8D=E6=A6=82=E5=BF=B5=E3=80=81=E5=B1=9E=E6=80=A7=E5=88=A4?= =?UTF-8?q?=E5=AE=9A=E6=96=B9=E6=B3=95=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 +- plugin.json | 27 ++----- src/VueApp.vue | 56 ++++++++------ src/components/SelectTag.vue | 75 +++++++++---------- src/components/Table.vue | 6 +- src/components/TableData_Tag.vue | 125 +++++++++++++++++++++---------- 6 files changed, 170 insertions(+), 123 deletions(-) diff --git a/package.json b/package.json index d0e50bb..5dd8f3d 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "siyuan-plugin-table-view", - "version": "0.1.0", + "version": "0.2.0", "type": "module", - "description": "This is a sample plugin based on vite and svelte for Siyuan (https://b3log.org/siyuan)", + "description": "抽取笔记内容生成表格,汇总概念及其属性", "repository": "", "homepage": "", "author": "", diff --git a/plugin.json b/plugin.json index 33956c9..1c43804 100644 --- a/plugin.json +++ b/plugin.json @@ -2,37 +2,24 @@ "name": "siyuan-plugin-table-view", "author": "dualwind", "url": "https://github.com/etchnight/siyuan-plugin-table-view", - "version": "0.1.0", + "version": "0.2.0", "minAppVersion": "2.11.4", - "backends": [ - "windows", - "linux", - "darwin", - "ios", - "android" - ], - "frontends": [ - "desktop", - "browser-desktop", - "desktop-window" - ], + "backends": ["windows", "linux", "darwin", "ios", "android"], + "frontends": ["desktop", "browser-desktop", "desktop-window"], "displayName": { "en_US": "Table View", "zh_CN": "表格预览" }, "description": { - "en_US": "Use tags to generate a table of note content", - "zh_CN": "利用标签生成笔记内容表格" + "en_US": "Extract the content of the notes to generate a table that summarizes concepts and their attributes", + "zh_CN": "抽取笔记内容生成表格,汇总概念及其属性" }, "readme": { "en_US": "README_en_US.md", "zh_CN": "README.md" }, "funding": { - "custom": [ - ] + "custom": [] }, - "keywords": [ - "plugin", "sample", "插件样例" - ] + "keywords": ["plugin", "sample", "插件样例"] } diff --git a/src/VueApp.vue b/src/VueApp.vue index 31a1d9c..1374fbf 100644 --- a/src/VueApp.vue +++ b/src/VueApp.vue @@ -1,36 +1,50 @@