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