@aiquants/daily-report 0.18.2 → 0.19.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/daily-report",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "Reusable daily-report feature package: shared types/schemas, React (Router v7 / v8) UI with virtual scrolling + optimistic updates + SSE sync, and a drizzle (mssql) server layer with DI ports (auth, user resolution, redis, external sources).",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"**/*.css"
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"typescript": "^5.9.3",
|
|
74
74
|
"vitest": "^4.1.10",
|
|
75
75
|
"zod": "^3.25.76",
|
|
76
|
-
"@aiquants/resize-panels": "^
|
|
76
|
+
"@aiquants/resize-panels": "^2.0.0",
|
|
77
77
|
"@aiquants/swipe-overlay": "^1.2.4",
|
|
78
|
-
"@aiquants/virtualscroll": "^3.
|
|
78
|
+
"@aiquants/virtualscroll": "^3.5.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"drizzle-orm": ">=1.0.0-beta.4 <2.0.0",
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"react-dom": ">=18",
|
|
84
84
|
"react-router": "^7.0.0 || ^8.0.0",
|
|
85
85
|
"zod": ">=3.25.0 <5.0.0",
|
|
86
|
-
"@aiquants/resize-panels": "^1.9.0",
|
|
87
86
|
"@aiquants/swipe-overlay": "^1.2.4",
|
|
88
|
-
"@aiquants/
|
|
87
|
+
"@aiquants/resize-panels": "^2.0.0",
|
|
88
|
+
"@aiquants/virtualscroll": "^3.5.0"
|
|
89
89
|
},
|
|
90
90
|
"peerDependenciesMeta": {
|
|
91
91
|
"drizzle-orm": {
|
|
@@ -151,7 +151,9 @@ describe("DailyReportList / リサイズパネル統合", () => {
|
|
|
151
151
|
const handle = container.querySelector('[data-resize-handle-id="daily-report-list-handle"]')
|
|
152
152
|
expect(handle).toBeInTheDocument()
|
|
153
153
|
expect(handle).toHaveAttribute("aria-label")
|
|
154
|
-
|
|
154
|
+
// 支援技術が読み上げるのは、このパッケージが与えた名前でなければならない
|
|
155
|
+
// (@aiquants/resize-panels 1.x は利用者の aria-label を黙って捨て、自前の英語名を出していた)
|
|
156
|
+
expect(handle?.getAttribute("aria-label")).toBe("日報一覧と詳細ペインの境界リサイズ")
|
|
155
157
|
|
|
156
158
|
// 視覚インジケーターおよび内部バーの存在検証
|
|
157
159
|
const indicator = handle?.querySelector("[data-resize-handle-indicator]")
|