valtech-components 4.0.186 → 4.0.188

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.
@@ -21,6 +21,7 @@ export declare class SectionHeaderComponent {
21
21
  readonly props: import("@angular/core").InputSignal<Partial<SectionHeaderMetadata>>;
22
22
  actionClick: EventEmitter<string>;
23
23
  readonly config: import("@angular/core").Signal<SectionHeaderMetadata>;
24
+ readonly titleClass: import("@angular/core").Signal<"sh-title sh-title--page" | "sh-title">;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SectionHeaderComponent, never>;
25
26
  static ɵcmp: i0.ɵɵComponentDeclaration<SectionHeaderComponent, "val-section-header", never, { "props": { "alias": "props"; "required": false; "isSignal": true; }; }, { "actionClick": "actionClick"; }, never, never, true, never>;
26
27
  }
@@ -40,6 +40,12 @@ import { ButtonMetadata } from '../../types';
40
40
  export interface SectionHeaderMetadata {
41
41
  /** Main section title — bold, ~18px. */
42
42
  title: string;
43
+ /**
44
+ * Title size variant.
45
+ * - 'section' (default): 18px — for section headers within a page.
46
+ * - 'page': display-small scale (24px mobile / 32px desktop) — for page-level headers.
47
+ */
48
+ titleSize?: 'section' | 'page';
43
49
  /**
44
50
  * Primary action button rendered on the RIGHT of row 1 (space-between).
45
51
  * Emits `(actionClick)` with the button's `token`.
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "4.0.186";
5
+ export declare const VERSION = "4.0.188";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "4.0.186",
3
+ "version": "4.0.188",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"