@rakeyshgidwani/roger-ui-bank-theme-stan-design 0.1.4 → 0.1.6
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/index.d.ts +131 -131
- package/dist/index.esm.js +148 -148
- package/dist/index.js +148 -148
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/ui/accessibility-demo.tsx +271 -0
- package/src/components/ui/advanced-component-architecture-demo.tsx +916 -0
- package/src/components/ui/advanced-transition-system-demo.tsx +670 -0
- package/src/components/ui/advanced-transition-system.tsx +395 -0
- package/src/components/ui/animation/animated-container.tsx +166 -0
- package/src/components/ui/animation/index.ts +19 -0
- package/src/components/ui/animation/staggered-container.tsx +68 -0
- package/src/components/ui/animation-demo.tsx +250 -0
- package/src/components/ui/badge.tsx +33 -0
- package/src/components/ui/battery-conscious-animation-demo.tsx +568 -0
- package/src/components/ui/border-radius-shadow-demo.tsx +187 -0
- package/src/components/ui/button.tsx +36 -0
- package/src/components/ui/card.tsx +207 -0
- package/src/components/ui/checkbox.tsx +30 -0
- package/src/components/ui/color-preview.tsx +411 -0
- package/src/components/ui/data-display/chart.tsx +653 -0
- package/src/components/ui/data-display/data-grid-simple.tsx +76 -0
- package/src/components/ui/data-display/data-grid.tsx +680 -0
- package/src/components/ui/data-display/list.tsx +456 -0
- package/src/components/ui/data-display/table.tsx +482 -0
- package/src/components/ui/data-display/timeline.tsx +441 -0
- package/src/components/ui/data-display/tree.tsx +602 -0
- package/src/components/ui/data-display/types.ts +536 -0
- package/src/components/ui/enterprise-mobile-experience-demo.tsx +749 -0
- package/src/components/ui/enterprise-mobile-experience.tsx +464 -0
- package/src/components/ui/feedback/alert.tsx +157 -0
- package/src/components/ui/feedback/progress.tsx +292 -0
- package/src/components/ui/feedback/skeleton.tsx +185 -0
- package/src/components/ui/feedback/toast.tsx +280 -0
- package/src/components/ui/feedback/types.ts +125 -0
- package/src/components/ui/font-preview.tsx +288 -0
- package/src/components/ui/form-demo.tsx +553 -0
- package/src/components/ui/hardware-acceleration-demo.tsx +547 -0
- package/src/components/ui/input.tsx +35 -0
- package/src/components/ui/label.tsx +16 -0
- package/src/components/ui/layout-demo.tsx +367 -0
- package/src/components/ui/layouts/adaptive-layout.tsx +139 -0
- package/src/components/ui/layouts/desktop-layout.tsx +224 -0
- package/src/components/ui/layouts/index.ts +10 -0
- package/src/components/ui/layouts/mobile-layout.tsx +162 -0
- package/src/components/ui/layouts/tablet-layout.tsx +197 -0
- package/src/components/ui/mobile-form-validation.tsx +451 -0
- package/src/components/ui/mobile-input-demo.tsx +201 -0
- package/src/components/ui/mobile-input.tsx +281 -0
- package/src/components/ui/mobile-skeleton-loading-demo.tsx +638 -0
- package/src/components/ui/navigation/breadcrumb.tsx +158 -0
- package/src/components/ui/navigation/index.ts +36 -0
- package/src/components/ui/navigation/menu.tsx +374 -0
- package/src/components/ui/navigation/navigation-demo.tsx +324 -0
- package/src/components/ui/navigation/pagination.tsx +272 -0
- package/src/components/ui/navigation/sidebar.tsx +383 -0
- package/src/components/ui/navigation/stepper.tsx +303 -0
- package/src/components/ui/navigation/tabs.tsx +205 -0
- package/src/components/ui/navigation/types.ts +299 -0
- package/src/components/ui/overlay/backdrop.tsx +81 -0
- package/src/components/ui/overlay/focus-manager.tsx +143 -0
- package/src/components/ui/overlay/index.ts +36 -0
- package/src/components/ui/overlay/modal.tsx +270 -0
- package/src/components/ui/overlay/overlay-manager.tsx +110 -0
- package/src/components/ui/overlay/popover.tsx +462 -0
- package/src/components/ui/overlay/portal.tsx +79 -0
- package/src/components/ui/overlay/tooltip.tsx +303 -0
- package/src/components/ui/overlay/types.ts +196 -0
- package/src/components/ui/performance-demo.tsx +596 -0
- package/src/components/ui/semantic-input-system-demo.tsx +502 -0
- package/src/components/ui/semantic-input-system-demo.tsx.disabled +873 -0
- package/src/components/ui/tablet-layout.tsx +192 -0
- package/src/components/ui/theme-customizer.tsx +386 -0
- package/src/components/ui/theme-preview.tsx +310 -0
- package/src/components/ui/theme-switcher.tsx +264 -0
- package/src/components/ui/theme-toggle.tsx +38 -0
- package/src/components/ui/token-demo.tsx +195 -0
- package/src/components/ui/touch-demo.tsx +462 -0
- package/src/components/ui/touch-friendly-interface-demo.tsx +519 -0
- package/src/components/ui/touch-friendly-interface.tsx +296 -0
- package/src/hooks/index.ts +190 -0
- package/src/hooks/use-accessibility-support.ts +518 -0
- package/src/hooks/use-adaptive-layout.ts +289 -0
- package/src/hooks/use-advanced-patterns.ts +294 -0
- package/src/hooks/use-advanced-transition-system.ts +393 -0
- package/src/hooks/use-animation-profile.ts +288 -0
- package/src/hooks/use-battery-animations.ts +384 -0
- package/src/hooks/use-battery-conscious-loading.ts +475 -0
- package/src/hooks/use-battery-optimization.ts +330 -0
- package/src/hooks/use-battery-status.ts +299 -0
- package/src/hooks/use-component-performance.ts +344 -0
- package/src/hooks/use-device-loading-states.ts +459 -0
- package/src/hooks/use-device.tsx +110 -0
- package/src/hooks/use-enterprise-mobile-experience.ts +488 -0
- package/src/hooks/use-form-feedback.ts +403 -0
- package/src/hooks/use-form-performance.ts +513 -0
- package/src/hooks/use-frame-rate.ts +251 -0
- package/src/hooks/use-gestures.ts +338 -0
- package/src/hooks/use-hardware-acceleration.ts +341 -0
- package/src/hooks/use-input-accessibility.ts +455 -0
- package/src/hooks/use-input-performance.ts +506 -0
- package/src/hooks/use-layout-performance.ts +319 -0
- package/src/hooks/use-loading-accessibility.ts +535 -0
- package/src/hooks/use-loading-performance.ts +473 -0
- package/src/hooks/use-memory-usage.ts +287 -0
- package/src/hooks/use-mobile-form-layout.ts +464 -0
- package/src/hooks/use-mobile-form-validation.ts +518 -0
- package/src/hooks/use-mobile-keyboard-optimization.ts +472 -0
- package/src/hooks/use-mobile-layout.ts +302 -0
- package/src/hooks/use-mobile-optimization.ts +406 -0
- package/src/hooks/use-mobile-skeleton.ts +402 -0
- package/src/hooks/use-mobile-touch.ts +414 -0
- package/src/hooks/use-performance-throttling.ts +348 -0
- package/src/hooks/use-performance.ts +316 -0
- package/src/hooks/use-reusable-architecture.ts +414 -0
- package/src/hooks/use-semantic-input-types.ts +357 -0
- package/src/hooks/use-semantic-input.ts +565 -0
- package/src/hooks/use-tablet-layout.ts +384 -0
- package/src/hooks/use-touch-friendly-input.ts +524 -0
- package/src/hooks/use-touch-friendly-interface.ts +331 -0
- package/src/hooks/use-touch-optimization.ts +375 -0
- package/src/index.ts +279 -279
- package/src/lib/utils.ts +6 -0
- package/src/themes/README.md +272 -0
- package/src/themes/ThemeContext.tsx +31 -0
- package/src/themes/ThemeProvider.tsx +232 -0
- package/src/themes/accessibility/index.ts +27 -0
- package/src/themes/accessibility.ts +259 -0
- package/src/themes/aria-patterns.ts +420 -0
- package/src/themes/base-themes.ts +55 -0
- package/src/themes/colorManager.ts +380 -0
- package/src/themes/examples/dark-theme.ts +154 -0
- package/src/themes/examples/minimal-theme.ts +108 -0
- package/src/themes/focus-management.ts +701 -0
- package/src/themes/fontLoader.ts +201 -0
- package/src/themes/high-contrast.ts +621 -0
- package/src/themes/index.ts +19 -0
- package/src/themes/inheritance.ts +227 -0
- package/src/themes/keyboard-navigation.ts +550 -0
- package/src/themes/motion-reduction.ts +662 -0
- package/src/themes/navigation.ts +238 -0
- package/src/themes/screen-reader.ts +645 -0
- package/src/themes/systemThemeDetector.ts +182 -0
- package/src/themes/themeCSSUpdater.ts +262 -0
- package/src/themes/themePersistence.ts +238 -0
- package/src/themes/themes/default.ts +586 -0
- package/src/themes/themes/harvey.ts +554 -0
- package/src/themes/themes/stan-design.ts +683 -0
- package/src/themes/types.ts +460 -0
- package/src/themes/useSystemTheme.ts +48 -0
- package/src/themes/useTheme.ts +87 -0
- package/src/themes/validation.ts +462 -0
- package/src/tokens/index.ts +34 -0
- package/src/tokens/tokenExporter.ts +397 -0
- package/src/tokens/tokenGenerator.ts +276 -0
- package/src/tokens/tokenManager.ts +248 -0
- package/src/tokens/tokenValidator.ts +543 -0
- package/src/tokens/types.ts +78 -0
- package/src/utils/bundle-analyzer.ts +260 -0
- package/src/utils/bundle-splitting.ts +483 -0
- package/src/utils/lazy-loading.ts +441 -0
- package/src/utils/performance-monitor.ts +513 -0
- package/src/utils/tree-shaking.ts +274 -0
package/dist/index.esm.js
CHANGED
|
@@ -2,162 +2,162 @@
|
|
|
2
2
|
* @rakeyshgidwani/roger-ui-bank-theme-stan-design
|
|
3
3
|
* Complete design system package with stan-design theme
|
|
4
4
|
*
|
|
5
|
-
* Auto-generated exports for} from '
|
|
6
|
-
export { Card } from '
|
|
7
|
-
export { Checkbox } from '
|
|
8
|
-
export { ColorPreview } from '
|
|
9
|
-
export { EnterpriseProgress } from '
|
|
10
|
-
export { FontPreview } from '
|
|
11
|
-
export { Input } from '
|
|
12
|
-
export { Label } from '
|
|
13
|
-
export { MobileInput } from '
|
|
14
|
-
export { TabletLayout } from '
|
|
15
|
-
export { ThemeCustomizer } from '
|
|
16
|
-
export { ThemePreview } from '
|
|
17
|
-
export { ThemeSwitcher } from '
|
|
18
|
-
export { ThemeToggle } from '
|
|
19
|
-
export { Breadcrumb } from '
|
|
20
|
-
export { Menu } from '
|
|
21
|
-
export { Pagination } from '
|
|
22
|
-
export { Sidebar } from '
|
|
23
|
-
export { Stepper } from '
|
|
24
|
-
export { Tabs } from '
|
|
25
|
-
export { Chart } from '
|
|
26
|
-
export { DataGridSimple } from '
|
|
27
|
-
export { DataGrid } from '
|
|
28
|
-
export { List } from '
|
|
29
|
-
export { Table } from '
|
|
30
|
-
export { Timeline } from '
|
|
31
|
-
export { Tree } from '
|
|
32
|
-
export { Alert } from '
|
|
33
|
-
export { Progress } from '
|
|
34
|
-
export { SkeletonText } from '
|
|
35
|
-
export { Toast } from '
|
|
36
|
-
export { Backdrop } from '
|
|
37
|
-
export { FocusManager } from '
|
|
38
|
-
export { ModalHeader } from '
|
|
39
|
-
export { PopoverContent } from '
|
|
40
|
-
export { Portal } from '
|
|
41
|
-
export { TooltipContent } from '
|
|
42
|
-
export { AdaptiveLayout } from '
|
|
43
|
-
export { DesktopLayout } from '
|
|
44
|
-
export { MobileLayout } from '
|
|
45
|
-
export { TabletLayout } from '
|
|
5
|
+
* Auto-generated exports for} from './components/ui/button';
|
|
6
|
+
export { Card } from './components/ui/card';
|
|
7
|
+
export { Checkbox } from './components/ui/checkbox';
|
|
8
|
+
export { ColorPreview } from './components/ui/color-preview';
|
|
9
|
+
export { EnterpriseProgress } from './components/ui/enterprise-mobile-experience';
|
|
10
|
+
export { FontPreview } from './components/ui/font-preview';
|
|
11
|
+
export { Input } from './components/ui/input';
|
|
12
|
+
export { Label } from './components/ui/label';
|
|
13
|
+
export { MobileInput } from './components/ui/mobile-input';
|
|
14
|
+
export { TabletLayout } from './components/ui/tablet-layout';
|
|
15
|
+
export { ThemeCustomizer } from './components/ui/theme-customizer';
|
|
16
|
+
export { ThemePreview } from './components/ui/theme-preview';
|
|
17
|
+
export { ThemeSwitcher } from './components/ui/theme-switcher';
|
|
18
|
+
export { ThemeToggle } from './components/ui/theme-toggle';
|
|
19
|
+
export { Breadcrumb } from './components/ui/navigation/breadcrumb';
|
|
20
|
+
export { Menu } from './components/ui/navigation/menu';
|
|
21
|
+
export { Pagination } from './components/ui/navigation/pagination';
|
|
22
|
+
export { Sidebar } from './components/ui/navigation/sidebar';
|
|
23
|
+
export { Stepper } from './components/ui/navigation/stepper';
|
|
24
|
+
export { Tabs } from './components/ui/navigation/tabs';
|
|
25
|
+
export { Chart } from './components/ui/data-display/chart';
|
|
26
|
+
export { DataGridSimple } from './components/ui/data-display/data-grid-simple';
|
|
27
|
+
export { DataGrid } from './components/ui/data-display/data-grid';
|
|
28
|
+
export { List } from './components/ui/data-display/list';
|
|
29
|
+
export { Table } from './components/ui/data-display/table';
|
|
30
|
+
export { Timeline } from './components/ui/data-display/timeline';
|
|
31
|
+
export { Tree } from './components/ui/data-display/tree';
|
|
32
|
+
export { Alert } from './components/ui/feedback/alert';
|
|
33
|
+
export { Progress } from './components/ui/feedback/progress';
|
|
34
|
+
export { SkeletonText } from './components/ui/feedback/skeleton';
|
|
35
|
+
export { Toast } from './components/ui/feedback/toast';
|
|
36
|
+
export { Backdrop } from './components/ui/overlay/backdrop';
|
|
37
|
+
export { FocusManager } from './components/ui/overlay/focus-manager';
|
|
38
|
+
export { ModalHeader } from './components/ui/overlay/modal';
|
|
39
|
+
export { PopoverContent } from './components/ui/overlay/popover';
|
|
40
|
+
export { Portal } from './components/ui/overlay/portal';
|
|
41
|
+
export { TooltipContent } from './components/ui/overlay/tooltip';
|
|
42
|
+
export { AdaptiveLayout } from './components/ui/layouts/adaptive-layout';
|
|
43
|
+
export { DesktopLayout } from './components/ui/layouts/desktop-layout';
|
|
44
|
+
export { MobileLayout } from './components/ui/layouts/mobile-layout';
|
|
45
|
+
export { TabletLayout } from './components/ui/layouts/tablet-layout';
|
|
46
46
|
|
|
47
47
|
// Custom Hooks
|
|
48
|
-
export { useAccessibilitySupport } from '
|
|
49
|
-
export { useAdaptiveLayout } from '
|
|
50
|
-
export { useAdvancedPatterns } from '
|
|
51
|
-
export { useAdvancedTransitionSystem } from '
|
|
52
|
-
export { useAnimationProfile } from '
|
|
53
|
-
export { useAnimationDuration } from '
|
|
54
|
-
export { useAnimationEasing } from '
|
|
55
|
-
export { useAnimationClasses } from '
|
|
56
|
-
export { usePerformanceMode } from '
|
|
57
|
-
export { useBatteryAnimations } from '
|
|
58
|
-
export { useBatteryConsciousLoading } from '
|
|
59
|
-
export { useBatteryOptimization } from '
|
|
60
|
-
export { useBatteryStatus } from '
|
|
61
|
-
export { useComponentPerformance } from '
|
|
62
|
-
export { useDeviceLoadingStates } from '
|
|
63
|
-
export { useDevice } from '
|
|
64
|
-
export { useIsMobile } from '
|
|
65
|
-
export { useIsTablet } from '
|
|
66
|
-
export { useIsDesktop } from '
|
|
67
|
-
export { useOrientation } from '
|
|
68
|
-
export { useIsTouchDevice } from '
|
|
69
|
-
export { useEnterpriseMobileExperience } from '
|
|
70
|
-
export { useFormFeedback } from '
|
|
71
|
-
export { useBasicFormFeedback } from '
|
|
72
|
-
export { useEnhancedFormFeedback } from '
|
|
73
|
-
export { useFormPerformance } from '
|
|
74
|
-
export { useBasicFormPerformance } from '
|
|
75
|
-
export { useEnhancedFormPerformance } from '
|
|
76
|
-
export { useFrameRate } from '
|
|
77
|
-
export { useGestures } from '
|
|
78
|
-
export { useSwipeGesture } from '
|
|
79
|
-
export { usePinchGesture } from '
|
|
80
|
-
export { useTapGesture } from '
|
|
81
|
-
export { useLongPressGesture } from '
|
|
82
|
-
export { useHardwareAcceleration } from '
|
|
83
|
-
export { useInputAccessibility } from '
|
|
84
|
-
export { useInputPerformance } from '
|
|
85
|
-
export { useLayoutPerformance } from '
|
|
86
|
-
export { useLoadingAccessibility } from '
|
|
87
|
-
export { useLoadingPerformance } from '
|
|
88
|
-
export { useMemoryUsage } from '
|
|
89
|
-
export { useMobileFormLayout } from '
|
|
90
|
-
export { useBasicMobileLayout } from '
|
|
91
|
-
export { useEnhancedMobileLayout } from '
|
|
92
|
-
export { useMobileFormValidation } from '
|
|
93
|
-
export { useBasicFormValidation } from '
|
|
94
|
-
export { useEnhancedFormValidation } from '
|
|
95
|
-
export { useMobileKeyboardOptimization } from '
|
|
96
|
-
export { useMobileLayout } from '
|
|
97
|
-
export { useMobileOptimization } from '
|
|
98
|
-
export { useMobileSkeleton } from '
|
|
99
|
-
export { useMobileTouch } from '
|
|
100
|
-
export { useBasicMobileTouch } from '
|
|
101
|
-
export { useEnhancedMobileTouch } from '
|
|
102
|
-
export { usePerformanceThrottling } from '
|
|
103
|
-
export { usePerformance } from '
|
|
104
|
-
export { useReusableArchitecture } from '
|
|
105
|
-
export { useSemanticInputTypes } from '
|
|
106
|
-
export { useSemanticInput } from '
|
|
107
|
-
export { useBasicSemanticInput } from '
|
|
108
|
-
export { useEnhancedSemanticInput } from '
|
|
109
|
-
export { useTabletLayout } from '
|
|
110
|
-
export { useTouchFriendlyInput } from '
|
|
111
|
-
export { useTouchFriendlyInterface } from '
|
|
112
|
-
export { useTouchOptimization } from '
|
|
113
|
-
export { useBasicTouchOptimization } from '
|
|
114
|
-
export { useBatteryAwareTouchOptimization } from '
|
|
48
|
+
export { useAccessibilitySupport } from './hooks/use-accessibility-support';
|
|
49
|
+
export { useAdaptiveLayout } from './hooks/use-adaptive-layout';
|
|
50
|
+
export { useAdvancedPatterns } from './hooks/use-advanced-patterns';
|
|
51
|
+
export { useAdvancedTransitionSystem } from './hooks/use-advanced-transition-system';
|
|
52
|
+
export { useAnimationProfile } from './hooks/use-animation-profile';
|
|
53
|
+
export { useAnimationDuration } from './hooks/use-animation-profile';
|
|
54
|
+
export { useAnimationEasing } from './hooks/use-animation-profile';
|
|
55
|
+
export { useAnimationClasses } from './hooks/use-animation-profile';
|
|
56
|
+
export { usePerformanceMode } from './hooks/use-animation-profile';
|
|
57
|
+
export { useBatteryAnimations } from './hooks/use-battery-animations';
|
|
58
|
+
export { useBatteryConsciousLoading } from './hooks/use-battery-conscious-loading';
|
|
59
|
+
export { useBatteryOptimization } from './hooks/use-battery-optimization';
|
|
60
|
+
export { useBatteryStatus } from './hooks/use-battery-status';
|
|
61
|
+
export { useComponentPerformance } from './hooks/use-component-performance';
|
|
62
|
+
export { useDeviceLoadingStates } from './hooks/use-device-loading-states';
|
|
63
|
+
export { useDevice } from './hooks/use-device';
|
|
64
|
+
export { useIsMobile } from './hooks/use-device';
|
|
65
|
+
export { useIsTablet } from './hooks/use-device';
|
|
66
|
+
export { useIsDesktop } from './hooks/use-device';
|
|
67
|
+
export { useOrientation } from './hooks/use-device';
|
|
68
|
+
export { useIsTouchDevice } from './hooks/use-device';
|
|
69
|
+
export { useEnterpriseMobileExperience } from './hooks/use-enterprise-mobile-experience';
|
|
70
|
+
export { useFormFeedback } from './hooks/use-form-feedback';
|
|
71
|
+
export { useBasicFormFeedback } from './hooks/use-form-feedback';
|
|
72
|
+
export { useEnhancedFormFeedback } from './hooks/use-form-feedback';
|
|
73
|
+
export { useFormPerformance } from './hooks/use-form-performance';
|
|
74
|
+
export { useBasicFormPerformance } from './hooks/use-form-performance';
|
|
75
|
+
export { useEnhancedFormPerformance } from './hooks/use-form-performance';
|
|
76
|
+
export { useFrameRate } from './hooks/use-frame-rate';
|
|
77
|
+
export { useGestures } from './hooks/use-gestures';
|
|
78
|
+
export { useSwipeGesture } from './hooks/use-gestures';
|
|
79
|
+
export { usePinchGesture } from './hooks/use-gestures';
|
|
80
|
+
export { useTapGesture } from './hooks/use-gestures';
|
|
81
|
+
export { useLongPressGesture } from './hooks/use-gestures';
|
|
82
|
+
export { useHardwareAcceleration } from './hooks/use-hardware-acceleration';
|
|
83
|
+
export { useInputAccessibility } from './hooks/use-input-accessibility';
|
|
84
|
+
export { useInputPerformance } from './hooks/use-input-performance';
|
|
85
|
+
export { useLayoutPerformance } from './hooks/use-layout-performance';
|
|
86
|
+
export { useLoadingAccessibility } from './hooks/use-loading-accessibility';
|
|
87
|
+
export { useLoadingPerformance } from './hooks/use-loading-performance';
|
|
88
|
+
export { useMemoryUsage } from './hooks/use-memory-usage';
|
|
89
|
+
export { useMobileFormLayout } from './hooks/use-mobile-form-layout';
|
|
90
|
+
export { useBasicMobileLayout } from './hooks/use-mobile-form-layout';
|
|
91
|
+
export { useEnhancedMobileLayout } from './hooks/use-mobile-form-layout';
|
|
92
|
+
export { useMobileFormValidation } from './hooks/use-mobile-form-validation';
|
|
93
|
+
export { useBasicFormValidation } from './hooks/use-mobile-form-validation';
|
|
94
|
+
export { useEnhancedFormValidation } from './hooks/use-mobile-form-validation';
|
|
95
|
+
export { useMobileKeyboardOptimization } from './hooks/use-mobile-keyboard-optimization';
|
|
96
|
+
export { useMobileLayout } from './hooks/use-mobile-layout';
|
|
97
|
+
export { useMobileOptimization } from './hooks/use-mobile-optimization';
|
|
98
|
+
export { useMobileSkeleton } from './hooks/use-mobile-skeleton';
|
|
99
|
+
export { useMobileTouch } from './hooks/use-mobile-touch';
|
|
100
|
+
export { useBasicMobileTouch } from './hooks/use-mobile-touch';
|
|
101
|
+
export { useEnhancedMobileTouch } from './hooks/use-mobile-touch';
|
|
102
|
+
export { usePerformanceThrottling } from './hooks/use-performance-throttling';
|
|
103
|
+
export { usePerformance } from './hooks/use-performance';
|
|
104
|
+
export { useReusableArchitecture } from './hooks/use-reusable-architecture';
|
|
105
|
+
export { useSemanticInputTypes } from './hooks/use-semantic-input-types';
|
|
106
|
+
export { useSemanticInput } from './hooks/use-semantic-input';
|
|
107
|
+
export { useBasicSemanticInput } from './hooks/use-semantic-input';
|
|
108
|
+
export { useEnhancedSemanticInput } from './hooks/use-semantic-input';
|
|
109
|
+
export { useTabletLayout } from './hooks/use-tablet-layout';
|
|
110
|
+
export { useTouchFriendlyInput } from './hooks/use-touch-friendly-input';
|
|
111
|
+
export { useTouchFriendlyInterface } from './hooks/use-touch-friendly-interface';
|
|
112
|
+
export { useTouchOptimization } from './hooks/use-touch-optimization';
|
|
113
|
+
export { useBasicTouchOptimization } from './hooks/use-touch-optimization';
|
|
114
|
+
export { useBatteryAwareTouchOptimization } from './hooks/use-touch-optimization';
|
|
115
115
|
|
|
116
116
|
// Utilities
|
|
117
|
-
export { BundleAnalyzer } from '
|
|
118
|
-
export { BundleSplitter } from '
|
|
119
|
-
export { LazyLoader } from '
|
|
120
|
-
export { PerformanceMonitor } from '
|
|
121
|
-
export { TreeShakingOptimizer } from '
|
|
122
|
-
export { export } from '
|
|
117
|
+
export { BundleAnalyzer } from './utils/bundle-analyzer';
|
|
118
|
+
export { BundleSplitter } from './utils/bundle-splitting';
|
|
119
|
+
export { LazyLoader } from './utils/lazy-loading';
|
|
120
|
+
export { PerformanceMonitor } from './utils/performance-monitor';
|
|
121
|
+
export { TreeShakingOptimizer } from './utils/tree-shaking';
|
|
122
|
+
export { export } from './lib/utils';
|
|
123
123
|
|
|
124
124
|
// Theme System
|
|
125
|
-
export { ThemeProvider } from '
|
|
126
|
-
export { AccessibilityThemeManager } from '
|
|
127
|
-
export { ARIA_ROLES } from '
|
|
128
|
-
export { ARIA_STATES } from '
|
|
129
|
-
export { ARIA_LIVE_VALUES } from '
|
|
130
|
-
export { ARIA_CURRENT_VALUES } from '
|
|
131
|
-
export { ARIA_SORT_VALUES } from '
|
|
132
|
-
export { ARIA_ORIENTATION_VALUES } from '
|
|
133
|
-
export { ARIAUtils } from '
|
|
134
|
-
export { ColorManager } from '
|
|
135
|
-
export { FocusManager } from '
|
|
136
|
-
export { FocusTrap } from '
|
|
137
|
-
export { FocusRestoration } from '
|
|
138
|
-
export { FocusNavigation } from '
|
|
139
|
-
export { FontLoader } from '
|
|
140
|
-
export { HighContrastColors } from '
|
|
141
|
-
export { HighContrastThemeManager } from '
|
|
142
|
-
export { KEY_CODES } from '
|
|
143
|
-
export { NAVIGATION_PATTERNS } from '
|
|
144
|
-
export { KeyboardNavigationManager } from '
|
|
145
|
-
export { FocusManager } from '
|
|
146
|
-
export { MotionReductionManager } from '
|
|
147
|
-
export { MotionReductionUtils } from '
|
|
148
|
-
export { MotionReductionHooks } from '
|
|
149
|
-
export { ScreenReaderOptimizer } from '
|
|
150
|
-
export { ScreenReaderNavigation } from '
|
|
151
|
-
export { SystemThemeDetector } from '
|
|
152
|
-
export { ThemeCSSUpdater } from '
|
|
153
|
-
export { ThemePersistence } from '
|
|
154
|
-
export { ThemeValidator } from '
|
|
125
|
+
export { ThemeProvider } from './themes/ThemeProvider';
|
|
126
|
+
export { AccessibilityThemeManager } from './themes/accessibility';
|
|
127
|
+
export { ARIA_ROLES } from './themes/aria-patterns';
|
|
128
|
+
export { ARIA_STATES } from './themes/aria-patterns';
|
|
129
|
+
export { ARIA_LIVE_VALUES } from './themes/aria-patterns';
|
|
130
|
+
export { ARIA_CURRENT_VALUES } from './themes/aria-patterns';
|
|
131
|
+
export { ARIA_SORT_VALUES } from './themes/aria-patterns';
|
|
132
|
+
export { ARIA_ORIENTATION_VALUES } from './themes/aria-patterns';
|
|
133
|
+
export { ARIAUtils } from './themes/aria-patterns';
|
|
134
|
+
export { ColorManager } from './themes/colorManager';
|
|
135
|
+
export { FocusManager } from './themes/focus-management';
|
|
136
|
+
export { FocusTrap } from './themes/focus-management';
|
|
137
|
+
export { FocusRestoration } from './themes/focus-management';
|
|
138
|
+
export { FocusNavigation } from './themes/focus-management';
|
|
139
|
+
export { FontLoader } from './themes/fontLoader';
|
|
140
|
+
export { HighContrastColors } from './themes/high-contrast';
|
|
141
|
+
export { HighContrastThemeManager } from './themes/high-contrast';
|
|
142
|
+
export { KEY_CODES } from './themes/keyboard-navigation';
|
|
143
|
+
export { NAVIGATION_PATTERNS } from './themes/keyboard-navigation';
|
|
144
|
+
export { KeyboardNavigationManager } from './themes/keyboard-navigation';
|
|
145
|
+
export { FocusManager } from './themes/keyboard-navigation';
|
|
146
|
+
export { MotionReductionManager } from './themes/motion-reduction';
|
|
147
|
+
export { MotionReductionUtils } from './themes/motion-reduction';
|
|
148
|
+
export { MotionReductionHooks } from './themes/motion-reduction';
|
|
149
|
+
export { ScreenReaderOptimizer } from './themes/screen-reader';
|
|
150
|
+
export { ScreenReaderNavigation } from './themes/screen-reader';
|
|
151
|
+
export { SystemThemeDetector } from './themes/systemThemeDetector';
|
|
152
|
+
export { ThemeCSSUpdater } from './themes/themeCSSUpdater';
|
|
153
|
+
export { ThemePersistence } from './themes/themePersistence';
|
|
154
|
+
export { ThemeValidator } from './themes/validation';
|
|
155
155
|
|
|
156
156
|
// Design Tokens
|
|
157
|
-
export { TokenExporter } from '
|
|
158
|
-
export { TokenGenerator } from '
|
|
159
|
-
export { TokenManager } from '
|
|
160
|
-
export { TokenValidator } from '
|
|
157
|
+
export { TokenExporter } from './tokens/tokenExporter';
|
|
158
|
+
export { TokenGenerator } from './tokens/tokenGenerator';
|
|
159
|
+
export { TokenManager } from './tokens/tokenManager';
|
|
160
|
+
export { TokenValidator } from './tokens/tokenValidator';
|
|
161
161
|
|
|
162
162
|
// Types
|
|
163
163
|
|