Rename `webComponent` to `widget`
Auto-generated from the source archive. Do not edit by hand — rerun
catalyst-changelog-syncinstead.
What changed
Section titled “What changed”- The top-level YAML namespace
webComponentis renamed towidgetacross the entire schema (aurora-1.4.json, the TS model, every generator helper, and every Eta template). - Sub-keys keep their existing names:
widget.type,widget.group,widget.tab,widget.detailSort,widget.isDetailHidden,widget.listSort,widget.isListHidden,widget.displayFields,widget.className. Only the namespace moves. - A YAML that still declares
webComponent:fails the schema loader with a descriptive error pointing at the offending file and the required rename.
Why it matters
Section titled “Why it matters”The previous name conflated Aurora’s UI controls with the W3C “Web Components” standard (Custom Elements + Shadow DOM); what Aurora actually emits are Angular components. widget is stack-neutral, free from collisions with Angular @Component, NestJS @Injectable, ReactiveForms FormControl, or HTML <input>. Update every cliter/**/*.aurora.yaml in the same commit as the CLI bump — the cutover is hard and there is no alias to fall back on. Generated output is byte-identical for modules that update their YAMLs.