codexly-ui 0.8.0 → 0.8.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/fesm2022/codexly-ui.mjs +16 -11
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +7 -3
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1976,10 +1976,14 @@ declare class ClxPageHeaderComponent {
|
|
|
1976
1976
|
private readonly _titleSlot;
|
|
1977
1977
|
protected readonly _hasCustomTitle: _angular_core.Signal<boolean>;
|
|
1978
1978
|
protected readonly _color: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
1979
|
-
|
|
1980
|
-
|
|
1979
|
+
/** Title classes resolved from the theme — also usable by consumers projecting a custom
|
|
1980
|
+
* [clxPageHeaderTitle] block, via a template reference: `<clx-page-header #ph="clxPageHeader">`
|
|
1981
|
+
* then `[class]="ph.titleClass()"` on their own <h1>. */
|
|
1982
|
+
readonly titleClass: _angular_core.Signal<string>;
|
|
1983
|
+
/** Subtitle classes resolved from the theme — same usage as titleClass. */
|
|
1984
|
+
readonly subtitleClass: _angular_core.Signal<string>;
|
|
1981
1985
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxPageHeaderComponent, never>;
|
|
1982
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageHeaderComponent, "clx-page-header",
|
|
1986
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageHeaderComponent, "clx-page-header", ["clxPageHeader"], { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; }, { "back": "back"; }, ["_titleSlot"], ["[clxPageHeaderTitle]", "*"], true, never>;
|
|
1983
1987
|
}
|
|
1984
1988
|
|
|
1985
1989
|
/** Optional replacement for the auto-generated `<h1>` — project this when the title needs
|