@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 +1 -1
- package/dist/components/ui/layouts/adaptive-layout.d.ts +1 -0
- package/dist/components/ui/layouts/adaptive-layout.d.ts.map +1 -1
- package/dist/components/ui/layouts/adaptive-layout.esm.js +2 -2
- package/dist/components/ui/layouts/adaptive-layout.js +2 -2
- package/dist/styles.css +4 -4
- package/package.json +1 -1
- package/src/components/ui/layouts/adaptive-layout.tsx +3 -1
- package/src/styles/components/ui/theme-toggle.css +2 -2
package/package.json
CHANGED
|
@@ -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={
|
|
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-
|
|
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-
|
|
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);
|