@adia-ai/a2ui-corpus 0.7.0 → 0.7.2

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
@@ -1,5 +1,15 @@
1
1
  # Changelog — @adia-ai/a2ui-corpus
2
2
 
3
+ ## [0.7.2] — 2026-06-01
4
+
5
+ ### Maintenance
6
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.2 work shipped in @adia-ai/web-components template-engine ARIA-transparent wrapper spans (FB-94) + menu-item orphan fix (FB-95) + tokens cascade-layer; @adia-ai/web-modules admin-page-footer sticky band (bug-54). See `packages/web-components/CHANGELOG.md#072--2026-06-01` for details.
7
+
8
+ ## [0.7.1] — 2026-05-31
9
+
10
+ ### Maintenance
11
+ - **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.1 work shipped in @adia-ai/web-components a11y/reactivity fixes (input-ui affordances, tree-ui role=group, menu-ui dynamic items) — bug-60 / FB-91/92/93. See `packages/web-components/CHANGELOG.md#071--2026-05-31` for details.
12
+
3
13
  ## [0.7.0] — 2026-05-31
4
14
 
5
15
  ### Changed — catalog regen (chevron→caret, FEEDBACK-90) + chunk re-harvest (docs-QA demo sweep)
@@ -920,6 +920,74 @@
920
920
  "version": 1
921
921
  }
922
922
  },
923
+ "AdminPageFooter": {
924
+ "title": "AdminPageFooter",
925
+ "description": "Module-tier page-footer band. CSS-only — no behavior, no JS.\nSticky BOTTOM band inside <admin-page> — the bottom-anchored\ncounterpart of <admin-page-header>. Owns full-width concerns\n(sticky position, border-top, background); wraps an inner\n<footer-ui> for the centered reading column (max-width, gutter,\nrhythm). Use for persistent page-level chrome — a save / action\nbar, pagination, or legal strip. For shell-tier status chrome\nspanning the whole shell, use <admin-statusbar> instead.\n",
926
+ "type": "object",
927
+ "allOf": [
928
+ {
929
+ "$ref": "#/$defs/ComponentCommon"
930
+ },
931
+ {
932
+ "$ref": "#/$defs/CatalogComponentCommon"
933
+ }
934
+ ],
935
+ "properties": {
936
+ "component": {
937
+ "const": "AdminPageFooter"
938
+ }
939
+ },
940
+ "required": [
941
+ "component"
942
+ ],
943
+ "unevaluatedProperties": false,
944
+ "x-adiaui": {
945
+ "anti_patterns": [],
946
+ "category": "layout",
947
+ "composes": [],
948
+ "events": {},
949
+ "examples": [],
950
+ "keywords": [
951
+ "admin-page-footer",
952
+ "page-footer",
953
+ "sticky-footer",
954
+ "save-bar",
955
+ "action-bar"
956
+ ],
957
+ "name": "AdminPageFooter",
958
+ "related": [
959
+ "AdminPage",
960
+ "AdminPageHeader",
961
+ "AdminPageBody",
962
+ "AdminStatusbar",
963
+ "Footer"
964
+ ],
965
+ "slots": {
966
+ "default": {
967
+ "description": "Default — <footer-ui> with footer content (actions, meta, pagination, legal). Raw <footer> works for the CSS rhythm but drops named slots (no <footer-ui> shadow-DOM slot routing)."
968
+ }
969
+ },
970
+ "states": [
971
+ {
972
+ "description": "Default, the only state.",
973
+ "name": "idle"
974
+ }
975
+ ],
976
+ "status": "stable",
977
+ "synonyms": {
978
+ "page-footer": [
979
+ "content-footer",
980
+ "document-footer",
981
+ "action-bar",
982
+ "save-bar"
983
+ ]
984
+ },
985
+ "tag": "admin-page-footer",
986
+ "tokens": {},
987
+ "traits": [],
988
+ "version": 1
989
+ }
990
+ },
923
991
  "AdminPageHeader": {
924
992
  "title": "AdminPageHeader",
925
993
  "description": "Module-tier page-header band. CSS-only — no behavior, no JS.\nSticky top band inside <admin-page>. Owns full-width concerns\n(sticky position, border-bottom, background); wraps an inner\n<header-ui> for the centered reading column (max-width, gutter,\nrhythm). Do NOT use a raw <header> element — slot-named regions\n(action, description, icon, heading) are silently ignored without\n<header-ui>'s shadow-DOM slot routing.\n",
@@ -1049,6 +1049,12 @@ inside <grid-ui>; reach for the page composite only when search
1049
1049
  - Wraps an inner <section-ui> by default for centered reading-column rhythm; for full-bleed content (tables, canvas grids) use [data-full-bleed] on the section.
1050
1050
  - Always inside <admin-page slot="body">; do not place admin-page-body outside admin-page.
1051
1051
 
1052
+ ## AdminPageFooter
1053
+ - admin-page-footer is the sticky bottom band of <admin-page>, the bottom-anchored counterpart of <admin-page-header>. Wraps an inner <footer-ui> for centered reading-column rhythm.
1054
+ - Wraps an inner <footer-ui> for centered reading-column rhythm; admin-page-footer owns sticky positioning + border-top, footer-ui owns the content layout.
1055
+ - Always inside <admin-page slot="footer">; for shell-tier status chrome spanning the whole shell use <admin-statusbar> instead.
1056
+ - Optional — most pages need only <admin-page-header> + <admin-page-body>. Add a footer only for persistent page-level actions (save bar, pagination, legal); never stamp an empty one.
1057
+
1052
1058
  ## AdminPageHeader
1053
1059
  - admin-page-header is the sticky top band of <admin-page>. Wraps an inner <header-ui> for centered reading-column rhythm.
1054
1060
  - Wraps an inner <header-ui> for centered reading-column rhythm; admin-page-header owns sticky positioning + border, header-ui owns the content layout.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-corpus",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "type": "module",
5
5
  "description": "AdiaUI A2UI training corpus \u2014 canonical v0.9 catalog + chunks + eval fixtures + feedback + gap registry. Consumed by the compose engine's retrieval layer + the MCP pipeline.",
6
6
  "exports": {