@adukiorg/anza 0.3.2 → 0.3.3

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 CHANGED
@@ -17,6 +17,15 @@ Versioning follows [Semantic Versioning](https://semver.org/).
17
17
 
18
18
  ---
19
19
 
20
+ ## [0.3.3] — 2026-06-13
21
+
22
+ ### Changed
23
+
24
+ - Removed `<main>` to `<dock-main>` compiler auto-alignment. Apps now use `<dock-main id="main">` natively in HTML templates.
25
+ - Update `boot.js` router error messages to correctly refer to `<dock-main id="main">`.
26
+
27
+ ---
28
+
20
29
  ## [0.3.2] — 2026-06-13
21
30
 
22
31
  ### Fixed
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adukiorg/anza",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Anza web platform library — reactive state, networking, offline, animations, custom elements. Zero build step. Pure browser ESM.",
5
5
  "author": "fescii",
6
6
  "license": "MIT",
@@ -49,8 +49,8 @@ function anchor() {
49
49
  const el = document.getElementById('main');
50
50
  if (!el) {
51
51
  throw new Error(
52
- `[Router] <main id="main"> is required but was not found in the document. ` +
53
- `Ensure your HTML shell contains exactly one <main id="main"> before any scripts run.`
52
+ `[Router] <dock-main id="main"> is required but was not found in the document. ` +
53
+ `Ensure your HTML shell contains exactly one <dock-main id="main"> before any scripts run.`
54
54
  );
55
55
  }
56
56
  graphRoot.ref = new WeakRef(el);