From e97043c534452ddde68e0f14044f7f0a77db2b17 Mon Sep 17 00:00:00 2001 From: hechang27-sprt Date: Mon, 13 Apr 2026 08:57:58 +0800 Subject: [PATCH] WIP: list-table-v2 --- AGENTS.md | 2 +- CLAUDE.md | 2 +- examples/view/base/table-v2.vue | 6 +- .../base/data/list-table-v2/list-table-v2.vue | 96 +++++++++++-------- .../list-table-v2/usePretextColumnWidths.ts | 14 +-- .../list-table-v2/usePretextRowHeights.ts | 24 +++-- 6 files changed, 81 insertions(+), 63 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 41c35cc..2b55968 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,7 +1,7 @@ # GitNexus — Code Intelligence -This project is indexed by GitNexus as **noob-components** (721 symbols, 1559 relationships, 53 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely. +This project is indexed by GitNexus as **noob-components** (794 symbols, 1774 relationships, 59 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely. > If any GitNexus tool warns the index is stale, run `npx gitnexus analyze` in terminal first. diff --git a/CLAUDE.md b/CLAUDE.md index 41c35cc..2b55968 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,7 +1,7 @@ # GitNexus — Code Intelligence -This project is indexed by GitNexus as **noob-components** (721 symbols, 1559 relationships, 53 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely. +This project is indexed by GitNexus as **noob-components** (794 symbols, 1774 relationships, 59 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely. > If any GitNexus tool warns the index is stale, run `npx gitnexus analyze` in terminal first. diff --git a/examples/view/base/table-v2.vue b/examples/view/base/table-v2.vue index 00ea1fa..cab21b0 100644 --- a/examples/view/base/table-v2.vue +++ b/examples/view/base/table-v2.vue @@ -450,8 +450,10 @@ const headerColumns = [ diff --git a/packages/base/data/list-table-v2/list-table-v2.vue b/packages/base/data/list-table-v2/list-table-v2.vue index 33db698..26056a3 100644 --- a/packages/base/data/list-table-v2/list-table-v2.vue +++ b/packages/base/data/list-table-v2/list-table-v2.vue @@ -2,7 +2,15 @@
- +
@@ -22,25 +30,25 @@
- + {{ - getRow(row.index) ? formatCellValue(getRow(row.index)!, col) : "--" + getRow(virt.index) ? formatCellValue(getRow(virt.index)!, col) : "--" }}
@@ -66,7 +74,7 @@