valtech-components 2.0.629 → 2.0.630

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.
@@ -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,10 @@ 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;
37
54
  /** Loading state */
38
55
  loading?: boolean;
39
56
  /** Unique token identifier */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.629",
3
+ "version": "2.0.630",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"