@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/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  All notable changes to the harvey theme package will be documented in this file.
4
4
 
5
- ## [0.3.0] - 2025-10-10
5
+ ## [0.3.1] - 2025-10-12
6
6
 
7
7
  ### Added
8
8
  - Initial release of harvey theme package
@@ -7,6 +7,7 @@ export interface AdaptiveLayoutProps {
7
7
  description?: string;
8
8
  showHeader?: boolean;
9
9
  showSidebar?: boolean;
10
+ showFooter?: boolean;
10
11
  enableTouchOptimization?: boolean;
11
12
  enablePerformanceMonitoring?: boolean;
12
13
  enableAdvancedFeatures?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"adaptive-layout.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/layouts/adaptive-layout.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAuB,MAAM,OAAO,CAAC;AAKvD,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAA;AAExD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,SAAS,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,uBAAuB,CAAC,EAAE,OAAO,CAAA;IACjC,2BAA2B,CAAC,EAAE,OAAO,CAAA;IACrC,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA6FxD,CAAA;AAED,eAAe,cAAc,CAAA"}
1
+ {"version":3,"file":"adaptive-layout.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/layouts/adaptive-layout.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAuB,MAAM,OAAO,CAAC;AAKvD,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAA;AAExD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,SAAS,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,uBAAuB,CAAC,EAAE,OAAO,CAAA;IACjC,2BAA2B,CAAC,EAAE,OAAO,CAAA;IACrC,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA8FxD,CAAA;AAED,eAAe,cAAc,CAAA"}
@@ -4,7 +4,7 @@ import { useState, useEffect } from 'react';
4
4
  import { MobileLayout } from './mobile-layout.js';
5
5
  import { TabletLayout } from './tablet-layout.js';
6
6
  import { DesktopLayout } from './desktop-layout.js';
7
- export const AdaptiveLayout = ({ children, title = 'Adaptive Layout', description = 'Automatically adapts to different device types with optimal layouts', showHeader = true, showSidebar = true, enableTouchOptimization = true, enablePerformanceMonitoring = true, enableAdvancedFeatures = true, className = '' }) => {
7
+ export const AdaptiveLayout = ({ children, title = 'Adaptive Layout', description = 'Automatically adapts to different device types with optimal layouts', showHeader = true, showSidebar = true, showFooter = false, enableTouchOptimization = true, enablePerformanceMonitoring = true, enableAdvancedFeatures = true, className = '' }) => {
8
8
  const [deviceType, setDeviceType] = useState('desktop');
9
9
  // Device detection and adaptation
10
10
  useEffect(() => {
@@ -40,7 +40,7 @@ export const AdaptiveLayout = ({ children, title = 'Adaptive Layout', descriptio
40
40
  };
41
41
  switch (deviceType) {
42
42
  case 'mobile':
43
- return (_jsx(MobileLayout, { ...commonProps, showFooter: true, enableTouchOptimization: enableTouchOptimization, children: children }));
43
+ return (_jsx(MobileLayout, { ...commonProps, showFooter: showFooter, enableTouchOptimization: enableTouchOptimization, children: children }));
44
44
  case 'tablet':
45
45
  return (_jsx(TabletLayout, { ...commonProps, showSidebar: showSidebar, enableTouchOptimization: enableTouchOptimization, children: children }));
46
46
  case 'desktop':
@@ -4,7 +4,7 @@ import { useState, useEffect } from 'react';
4
4
  import { MobileLayout } from './mobile-layout.js';
5
5
  import { TabletLayout } from './tablet-layout.js';
6
6
  import { DesktopLayout } from './desktop-layout.js';
7
- export const AdaptiveLayout = ({ children, title = 'Adaptive Layout', description = 'Automatically adapts to different device types with optimal layouts', showHeader = true, showSidebar = true, enableTouchOptimization = true, enablePerformanceMonitoring = true, enableAdvancedFeatures = true, className = '' }) => {
7
+ export const AdaptiveLayout = ({ children, title = 'Adaptive Layout', description = 'Automatically adapts to different device types with optimal layouts', showHeader = true, showSidebar = true, showFooter = false, enableTouchOptimization = true, enablePerformanceMonitoring = true, enableAdvancedFeatures = true, className = '' }) => {
8
8
  const [deviceType, setDeviceType] = useState('desktop');
9
9
  // Device detection and adaptation
10
10
  useEffect(() => {
@@ -40,7 +40,7 @@ export const AdaptiveLayout = ({ children, title = 'Adaptive Layout', descriptio
40
40
  };
41
41
  switch (deviceType) {
42
42
  case 'mobile':
43
- return (_jsx(MobileLayout, { ...commonProps, showFooter: true, enableTouchOptimization: enableTouchOptimization, children: children }));
43
+ return (_jsx(MobileLayout, { ...commonProps, showFooter: showFooter, enableTouchOptimization: enableTouchOptimization, children: children }));
44
44
  case 'tablet':
45
45
  return (_jsx(TabletLayout, { ...commonProps, showSidebar: showSidebar, enableTouchOptimization: enableTouchOptimization, children: children }));
46
46
  case 'desktop':