valtech-components 2.0.615 → 2.0.617

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.
@@ -20,12 +20,23 @@ export interface FooterLinksMetadata {
20
20
  leftLinks: LinkCakeMetadata;
21
21
  /** Right column links configuration */
22
22
  rightLinks: LinkCakeMetadata;
23
- /** Optional logo URL */
23
+ /**
24
+ * CSS variable name for the logo (recommended for dark mode support).
25
+ * When set, uses background-image with this CSS variable.
26
+ * The variable should be defined in your theme and change based on color scheme.
27
+ * @example '--main-logo'
28
+ */
29
+ logoCssVariable?: string;
30
+ /** Optional logo URL (alternative to logoCssVariable) */
24
31
  logo?: string;
25
32
  /** Logo URL for dark mode. If not set, uses logo with filter invert. */
26
33
  logoDark?: string;
27
34
  /** Logo alt text. Default: 'Logo' */
28
35
  logoAlt?: string;
36
+ /** Logo width when using logoCssVariable @default '10rem' */
37
+ logoWidth?: string;
38
+ /** Logo height when using logoCssVariable @default '3rem' */
39
+ logoHeight?: string;
29
40
  /** Route to navigate when logo is clicked */
30
41
  logoRoute?: string;
31
42
  /** Optional divider configuration */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.615",
3
+ "version": "2.0.617",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"