@tecture/web 0.1.0 → 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 +20 -0
- package/dist-lib/App.js +1134 -477
- 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/OnboardingDemos.d.ts +4 -0
- package/dist-lib/architecture/OnboardingWizard.d.ts +8 -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/architecture/useOnboarding.d.ts +14 -0
- package/dist-lib/style.css +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
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
|
+
|
|
14
|
+
## 0.1.1
|
|
15
|
+
|
|
16
|
+
- Added a first-run onboarding wizard. On every architecture load the viewer shows a
|
|
17
|
+
short, dismissable tour: an intro with the architecture's name and description, then
|
|
18
|
+
two looping animated demos — clicking a component to open its detail panel, and
|
|
19
|
+
double-clicking a container to drill into its sub-diagram. A floating help (`?`)
|
|
20
|
+
button replays the tour, and the animations respect `prefers-reduced-motion`. No API
|
|
21
|
+
changes — embedders get the wizard automatically.
|
|
22
|
+
|
|
3
23
|
## 0.1.0
|
|
4
24
|
|
|
5
25
|
- First public release of the Tecture viewer as a reusable React component library.
|