@momentumcms/ui 0.5.1 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentumcms/ui",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "Base UI component library for Momentum CMS",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",
@@ -2105,7 +2105,8 @@ declare class TableRow {
2105
2105
  /**
2106
2106
  * Table header cell (th) component.
2107
2107
  *
2108
- * Usage: Provide role="columnheader" when using in table headers.
2108
+ * GridCell manages the `role` attribute imperatively. Pass `role="columnheader"`
2109
+ * when used inside `<mcms-table-header>` for correct ARIA semantics.
2109
2110
  *
2110
2111
  * @example
2111
2112
  * ```html
@@ -2113,8 +2114,6 @@ declare class TableRow {
2113
2114
  * ```
2114
2115
  */
2115
2116
  declare class TableHead {
2116
- /** ARIA role for the header cell (forwarded to GridCell). */
2117
- readonly role: _angular_core.InputSignal<"gridcell" | "columnheader" | "rowheader">;
2118
2117
  /** Whether this column is disabled. */
2119
2118
  readonly disabled: _angular_core.InputSignal<boolean>;
2120
2119
  /** Number of columns to span. */
@@ -2125,7 +2124,7 @@ declare class TableHead {
2125
2124
  readonly class: _angular_core.InputSignal<string>;
2126
2125
  readonly hostClasses: _angular_core.Signal<string>;
2127
2126
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableHead, never>;
2128
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableHead, "mcms-table-head", never, { "role": { "alias": "role"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "colSpan": { "alias": "colSpan"; "required": false; "isSignal": true; }; "rowSpan": { "alias": "rowSpan"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$3.GridCell; inputs: { "disabled": "disabled"; "colSpan": "colSpan"; "rowSpan": "rowSpan"; "role": "role"; }; outputs: {}; }]>;
2127
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableHead, "mcms-table-head", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "colSpan": { "alias": "colSpan"; "required": false; "isSignal": true; }; "rowSpan": { "alias": "rowSpan"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$3.GridCell; inputs: { "disabled": "disabled"; "colSpan": "colSpan"; "rowSpan": "rowSpan"; "role": "role"; }; outputs: {}; }]>;
2129
2128
  }
2130
2129
 
2131
2130
  /**