@rakeyshgidwani/roger-ui-bank-theme-harvey 0.3.0 → 0.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rakeyshgidwani/roger-ui-bank-theme-harvey",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Roger UI harvey theme - Complete design system with components, styles, and utilities",
5
5
  "keywords": [
6
6
  "design-system",
@@ -14,6 +14,7 @@ export interface AdaptiveLayoutProps {
14
14
  description?: string
15
15
  showHeader?: boolean
16
16
  showSidebar?: boolean
17
+ showFooter?: boolean
17
18
  enableTouchOptimization?: boolean
18
19
  enablePerformanceMonitoring?: boolean
19
20
  enableAdvancedFeatures?: boolean
@@ -26,6 +27,7 @@ export const AdaptiveLayout: React.FC<AdaptiveLayoutProps> = ({
26
27
  description = 'Automatically adapts to different device types with optimal layouts',
27
28
  showHeader = true,
28
29
  showSidebar = true,
30
+ showFooter = false,
29
31
  enableTouchOptimization = true,
30
32
  enablePerformanceMonitoring = true,
31
33
  enableAdvancedFeatures = true,
@@ -73,7 +75,7 @@ export const AdaptiveLayout: React.FC<AdaptiveLayoutProps> = ({
73
75
  return (
74
76
  <MobileLayout
75
77
  {...commonProps}
76
- showFooter={true}
78
+ showFooter={showFooter}
77
79
  enableTouchOptimization={enableTouchOptimization}
78
80
  >
79
81
  {children}
@@ -9,14 +9,14 @@
9
9
  --theme-toggle-background: transparent;
10
10
 
11
11
  /* ThemeToggle Color Variables - using theme-aware design system variables */
12
- --theme-toggle-text: var(--cs-colors-text-secondary);
12
+ --theme-toggle-text: var(--cs-colors-text-primary);
13
13
  --theme-toggle-text-hover: var(--cs-colors-text-primary);
14
14
  --theme-toggle-background-hover: var(--cs-colors-interactive-hover);
15
15
  --theme-toggle-focus-ring: var(--cs-colors-primary);
16
16
 
17
17
  /* ThemeToggle State Variables */
18
18
  --theme-toggle-active-background: var(--cs-colors-interactive-active);
19
- --theme-toggle-active-text: var(--cs-colors-primary);
19
+ --theme-toggle-active-text: var(--cs-colors-text-inverse);
20
20
 
21
21
  /* ThemeToggle Animation Variables */
22
22
  --theme-toggle-animation-duration: var(--cs-animation-duration-fast);