valtech-components 2.0.629 → 2.0.631

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.
@@ -39,11 +39,11 @@ export declare class RightsFooterComponent {
39
39
  /**
40
40
  * Computed helper for align prop in template.
41
41
  */
42
- propsAlign: import("@angular/core").Signal<"left" | "center" | "right">;
42
+ propsAlign: import("@angular/core").Signal<"left" | "right" | "center">;
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" | "dark">;
46
+ propsColor: import("@angular/core").Signal<"dark" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light" | "medium">;
47
47
  /**
48
48
  * Computed helper for withMargin prop in template.
49
49
  */
@@ -1,4 +1,17 @@
1
1
  import { Color } from '@ionic/core';
2
+ /**
3
+ * Logo configuration for stats card.
4
+ */
5
+ export interface StatsCardLogo {
6
+ /** Logo image URL */
7
+ src: string;
8
+ /** Alt text for accessibility */
9
+ alt: string;
10
+ /** Max height in pixels (default: 32) */
11
+ maxHeight?: number;
12
+ /** Max width in pixels (default: 120) */
13
+ maxWidth?: number;
14
+ }
2
15
  /**
3
16
  * Trend configuration for stats card.
4
17
  */
@@ -34,6 +47,12 @@ export interface StatsCardMetadata {
34
47
  trend?: StatsTrend;
35
48
  /** Footer text */
36
49
  footer?: string;
50
+ /** Description text (for GitLab-style layout) */
51
+ description?: string;
52
+ /** Company/brand logo displayed at bottom */
53
+ logo?: StatsCardLogo;
54
+ /** Minimum height in pixels (for uniform card sizes) */
55
+ minHeight?: number;
37
56
  /** Loading state */
38
57
  loading?: boolean;
39
58
  /** Unique token identifier */
@@ -57,7 +57,7 @@ export declare class ArticleComponent implements OnInit {
57
57
  linkConfig?: import("valtech-components").LinkProcessorConfig;
58
58
  allowPartialBold?: boolean;
59
59
  authorColor?: import("@ionic/core").Color;
60
- alignment?: "left" | "center" | "right";
60
+ alignment?: "left" | "right" | "center";
61
61
  showQuoteMark?: boolean;
62
62
  };
63
63
  getHighlightTextProps(element: ArticleElement): {
@@ -57,16 +57,6 @@ export declare class PageContentComponent {
57
57
  */
58
58
  get headerProps(): import("valtech-components").HeaderMetadata | {
59
59
  toolbar: {
60
- languageSelector: import("valtech-components").LanguageSelectorMetadata;
61
- withBack: boolean;
62
- withMenu?: boolean;
63
- backText?: string;
64
- withActions: boolean;
65
- color?: import("@ionic/core").Color;
66
- textColor?: import("@ionic/core").Color;
67
- title: string;
68
- actions: import("valtech-components").ToolbarAction[];
69
- } | {
70
60
  languageSelector: import("valtech-components").LanguageSelectorMetadata;
71
61
  withBack: boolean;
72
62
  withActions: boolean;
@@ -90,6 +80,16 @@ export declare class PageContentComponent {
90
80
  flex: boolean;
91
81
  };
92
82
  }[];
83
+ } | {
84
+ languageSelector: import("valtech-components").LanguageSelectorMetadata;
85
+ withBack: boolean;
86
+ withMenu?: boolean;
87
+ backText?: string;
88
+ withActions: boolean;
89
+ color?: import("@ionic/core").Color;
90
+ textColor?: import("@ionic/core").Color;
91
+ title: string;
92
+ actions: import("valtech-components").ToolbarAction[];
93
93
  };
94
94
  translucent?: boolean;
95
95
  bordered?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.629",
3
+ "version": "2.0.631",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"