valtech-components 2.0.630 → 2.0.632
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/esm2022/lib/components/molecules/stats-card/stats-card.component.mjs +3 -1
- package/esm2022/lib/components/molecules/stats-card/types.mjs +1 -1
- package/esm2022/lib/components/templates/page-content/page-content.component.mjs +3 -3
- package/esm2022/lib/components/templates/page-wrapper/page-wrapper.component.mjs +3 -3
- package/fesm2022/valtech-components.mjs +6 -4
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +1 -1
- package/lib/components/molecules/stats-card/types.d.ts +2 -0
- package/lib/components/templates/page-wrapper/page-wrapper.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ export declare class RightsFooterComponent {
|
|
|
43
43
|
/**
|
|
44
44
|
* Computed helper for color prop in template.
|
|
45
45
|
*/
|
|
46
|
-
propsColor: import("@angular/core").Signal<"medium" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light"
|
|
46
|
+
propsColor: import("@angular/core").Signal<"dark" | "medium" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light">;
|
|
47
47
|
/**
|
|
48
48
|
* Computed helper for withMargin prop in template.
|
|
49
49
|
*/
|
|
@@ -51,6 +51,8 @@ export interface StatsCardMetadata {
|
|
|
51
51
|
description?: string;
|
|
52
52
|
/** Company/brand logo displayed at bottom */
|
|
53
53
|
logo?: StatsCardLogo;
|
|
54
|
+
/** Minimum height in pixels (for uniform card sizes) */
|
|
55
|
+
minHeight?: number;
|
|
54
56
|
/** Loading state */
|
|
55
57
|
loading?: boolean;
|
|
56
58
|
/** Unique token identifier */
|
|
@@ -41,7 +41,7 @@ export declare class PageWrapperComponent implements ViewWillEnter, ViewWillLeav
|
|
|
41
41
|
* Default header configuration (cached to avoid infinite change detection).
|
|
42
42
|
*/
|
|
43
43
|
private readonly defaultHeader;
|
|
44
|
-
headerProps: import("@angular/core").Signal<
|
|
44
|
+
headerProps: import("@angular/core").Signal<{
|
|
45
45
|
bordered: boolean;
|
|
46
46
|
translucent: boolean;
|
|
47
47
|
toolbar: {
|
|
@@ -68,7 +68,7 @@ export declare class PageWrapperComponent implements ViewWillEnter, ViewWillLeav
|
|
|
68
68
|
};
|
|
69
69
|
}[];
|
|
70
70
|
};
|
|
71
|
-
}>;
|
|
71
|
+
} | import("valtech-components").HeaderMetadata>;
|
|
72
72
|
contentId: import("@angular/core").Signal<string>;
|
|
73
73
|
propsFooter: import("@angular/core").Signal<import("valtech-components").CompanyFooterMetadata>;
|
|
74
74
|
background: import("@angular/core").Signal<string>;
|