@tecture/web 0.1.1 → 0.2.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/CHANGELOG.md +11 -0
- package/dist-lib/App.js +742 -514
- package/dist-lib/App.js.map +1 -1
- package/dist-lib/architecture/ArchitectureBundleContext.d.ts +3 -1
- package/dist-lib/architecture/DriftPanel.d.ts +6 -0
- package/dist-lib/architecture/dataSource.d.ts +7 -1
- package/dist-lib/architecture/dataSource.js +17 -14
- package/dist-lib/architecture/dataSource.js.map +1 -1
- package/dist-lib/style.css +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @tecture/web
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
- Added drift surfacing. When the host provides a drift report (from the
|
|
6
|
+
architecture-docs skill's CodeGraph evidence script), the viewer shows a
|
|
7
|
+
severity-colored **Drift: N** pill that expands into a grouped findings list —
|
|
8
|
+
generation time, stale-index banner, per-finding evidence — and the node detail
|
|
9
|
+
panel gains an **Evidence** section listing the findings that touch that node.
|
|
10
|
+
`WebDataSource` gains an optional `loadDrift()`, implemented by
|
|
11
|
+
`createHttpDataSource` against `GET /api/architecture/drift`. Hosts without
|
|
12
|
+
drift support are unaffected — no report, no UI.
|
|
13
|
+
|
|
3
14
|
## 0.1.1
|
|
4
15
|
|
|
5
16
|
- Added a first-run onboarding wizard. On every architecture load the viewer shows a
|