@rakeyshgidwani/roger-ui-bank-theme-stan-design 0.1.4 → 0.1.5
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/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -5,137 +5,137 @@
|
|
|
5
5
|
// Theme System
|
|
6
6
|
// Design Tokens
|
|
7
7
|
// Types
|
|
8
|
-
export type { NavigationBaseProps } from '
|
|
9
|
-
export type { NavigationItem } from '
|
|
10
|
-
export type { NavigationGroup } from '
|
|
11
|
-
export type { BreadcrumbProps } from '
|
|
12
|
-
export type { BreadcrumbItem } from '
|
|
13
|
-
export type { PaginationProps } from '
|
|
14
|
-
export type { PaginationItem } from '
|
|
15
|
-
export type { TabsProps } from '
|
|
16
|
-
export type { TabItem } from '
|
|
17
|
-
export type { StepperProps } from '
|
|
18
|
-
export type { StepItem } from '
|
|
19
|
-
export type { StepAction } from '
|
|
20
|
-
export type { MenuProps } from '
|
|
21
|
-
export type { SidebarProps } from '
|
|
22
|
-
export type { NavigationState } from '
|
|
23
|
-
export type { NavigationContextValue } from '
|
|
24
|
-
export type { NavigationAction } from '
|
|
25
|
-
export type { NavigationBreakpoint } from '
|
|
26
|
-
export type { NavigationSpacing } from '
|
|
27
|
-
export type { NavigationAnimation } from '
|
|
28
|
-
export type { NavigationAccessibility } from '
|
|
29
|
-
export type { FeedbackBaseProps } from '
|
|
30
|
-
export type { AlertProps } from '
|
|
31
|
-
export type { AlertAction } from '
|
|
32
|
-
export type { ToastProps } from '
|
|
33
|
-
export type { ToastAction } from '
|
|
34
|
-
export type { ToastContainerProps } from '
|
|
35
|
-
export type { ProgressProps } from '
|
|
36
|
-
export type { ProgressStep } from '
|
|
37
|
-
export type { SkeletonProps } from '
|
|
38
|
-
export type { SkeletonTextProps } from '
|
|
39
|
-
export type { SkeletonAvatarProps } from '
|
|
40
|
-
export type { SkeletonButtonProps } from '
|
|
41
|
-
export type { DataDisplayBaseProps } from '
|
|
42
|
-
export type { SortableColumn } from '
|
|
43
|
-
export type { SortConfig } from '
|
|
44
|
-
export type { PaginationConfig } from '
|
|
45
|
-
export type { FilterConfig } from '
|
|
46
|
-
export type { TableProps } from '
|
|
47
|
-
export type { TableRowProps } from '
|
|
48
|
-
export type { DataGridProps } from '
|
|
49
|
-
export type { DataGridColumnProps } from '
|
|
50
|
-
export type { ListProps } from '
|
|
51
|
-
export type { ListItem } from '
|
|
52
|
-
export type { ListAction } from '
|
|
53
|
-
export type { ListFilter } from '
|
|
54
|
-
export type { TreeProps } from '
|
|
55
|
-
export type { TreeNode } from '
|
|
56
|
-
export type { TreeItemProps } from '
|
|
57
|
-
export type { TreeFilter } from '
|
|
58
|
-
export type { TimelineProps } from '
|
|
59
|
-
export type { TimelineItem } from '
|
|
60
|
-
export type { TimelineAction } from '
|
|
61
|
-
export type { TimelineItemProps } from '
|
|
62
|
-
export type { TimelineFilter } from '
|
|
63
|
-
export type { ChartProps } from '
|
|
64
|
-
export type { ChartData } from '
|
|
65
|
-
export type { ChartDataset } from '
|
|
66
|
-
export type { ChartDataPoint } from '
|
|
67
|
-
export type { ChartLegend } from '
|
|
68
|
-
export type { ChartOptions } from '
|
|
69
|
-
export type { OverlayBaseProps } from '
|
|
70
|
-
export type { PortalProps } from '
|
|
71
|
-
export type { OverlayState } from '
|
|
72
|
-
export type { OverlayAction } from '
|
|
73
|
-
export type { OverlayManagerProps } from '
|
|
74
|
-
export type { FocusManagerProps } from '
|
|
75
|
-
export type { BackdropProps } from '
|
|
76
|
-
export type { ModalProps } from '
|
|
77
|
-
export type { ModalHeaderProps } from '
|
|
78
|
-
export type { ModalBodyProps } from '
|
|
79
|
-
export type { ModalFooterProps } from '
|
|
80
|
-
export type { TooltipProps } from '
|
|
81
|
-
export type { TooltipContentProps } from '
|
|
82
|
-
export type { PopoverProps } from '
|
|
83
|
-
export type { PopoverContentProps } from '
|
|
84
|
-
export type { PopoverHeaderProps } from '
|
|
85
|
-
export type { PopoverBodyProps } from '
|
|
86
|
-
export type { PopoverFooterProps } from '
|
|
87
|
-
export type { MultiThemeConfig } from '
|
|
88
|
-
export type { FontThemeConfig } from '
|
|
89
|
-
export type { FontConfig } from '
|
|
90
|
-
export type { FontSource } from '
|
|
91
|
-
export type { FontFiles } from '
|
|
92
|
-
export type { FontFeatures } from '
|
|
93
|
-
export type { FontSizeScale } from '
|
|
94
|
-
export type { LineHeightScale } from '
|
|
95
|
-
export type { LetterSpacingScale } from '
|
|
96
|
-
export type { ColorThemeConfig } from '
|
|
97
|
-
export type { ColorScale } from '
|
|
98
|
-
export type { ColorAccessibility } from '
|
|
99
|
-
export type { SemanticColors } from '
|
|
100
|
-
export type { NeutralColors } from '
|
|
101
|
-
export type { SurfaceColors } from '
|
|
102
|
-
export type { TextColors } from '
|
|
103
|
-
export type { InteractiveColors } from '
|
|
104
|
-
export type { ColorGenerationConfig } from '
|
|
105
|
-
export type { ColorPalette } from '
|
|
106
|
-
export type { SpacingThemeConfig } from '
|
|
107
|
-
export type { SpacingScale } from '
|
|
108
|
-
export type { ComponentSpacing } from '
|
|
109
|
-
export type { LayoutSpacing } from '
|
|
110
|
-
export type { ShadowThemeConfig } from '
|
|
111
|
-
export type { TransitionThemeConfig } from '
|
|
112
|
-
export type { BorderRadiusThemeConfig } from '
|
|
113
|
-
export type { BorderWidthThemeConfig } from '
|
|
114
|
-
export type { AnimationThemeConfig } from '
|
|
115
|
-
export type { AccessibilityThemeConfig } from '
|
|
116
|
-
export type { PrintThemeConfig } from '
|
|
117
|
-
export type { ContainerQueryThemeConfig } from '
|
|
118
|
-
export type { ContainerThemeConfig } from '
|
|
119
|
-
export type { ShimmerThemeConfig } from '
|
|
120
|
-
export type { TransitionDuration } from '
|
|
121
|
-
export type { TransitionEasing } from '
|
|
122
|
-
export type { TransitionProperties } from '
|
|
123
|
-
export type { ThemeMetadata } from '
|
|
124
|
-
export type { ThemeValidationResult } from '
|
|
125
|
-
export type { ThemeValidationError } from '
|
|
126
|
-
export type { ThemeValidationWarning } from '
|
|
127
|
-
export type { ThemeInheritance } from '
|
|
128
|
-
export type { CompleteThemeConfig } from '
|
|
129
|
-
export type { DesignToken } from '
|
|
130
|
-
export type { TokenType } from '
|
|
131
|
-
export type { ColorToken } from '
|
|
132
|
-
export type { FontToken } from '
|
|
133
|
-
export type { SpacingToken } from '
|
|
134
|
-
export type { ShadowToken } from '
|
|
135
|
-
export type { TransitionToken } from '
|
|
136
|
-
export type { TokenGroup } from '
|
|
137
|
-
export type { ThemeTokens } from '
|
|
138
|
-
export type { TokenExportOptions } from '
|
|
8
|
+
export type { NavigationBaseProps } from './components/ui/navigation/types';
|
|
9
|
+
export type { NavigationItem } from './components/ui/navigation/types';
|
|
10
|
+
export type { NavigationGroup } from './components/ui/navigation/types';
|
|
11
|
+
export type { BreadcrumbProps } from './components/ui/navigation/types';
|
|
12
|
+
export type { BreadcrumbItem } from './components/ui/navigation/types';
|
|
13
|
+
export type { PaginationProps } from './components/ui/navigation/types';
|
|
14
|
+
export type { PaginationItem } from './components/ui/navigation/types';
|
|
15
|
+
export type { TabsProps } from './components/ui/navigation/types';
|
|
16
|
+
export type { TabItem } from './components/ui/navigation/types';
|
|
17
|
+
export type { StepperProps } from './components/ui/navigation/types';
|
|
18
|
+
export type { StepItem } from './components/ui/navigation/types';
|
|
19
|
+
export type { StepAction } from './components/ui/navigation/types';
|
|
20
|
+
export type { MenuProps } from './components/ui/navigation/types';
|
|
21
|
+
export type { SidebarProps } from './components/ui/navigation/types';
|
|
22
|
+
export type { NavigationState } from './components/ui/navigation/types';
|
|
23
|
+
export type { NavigationContextValue } from './components/ui/navigation/types';
|
|
24
|
+
export type { NavigationAction } from './components/ui/navigation/types';
|
|
25
|
+
export type { NavigationBreakpoint } from './components/ui/navigation/types';
|
|
26
|
+
export type { NavigationSpacing } from './components/ui/navigation/types';
|
|
27
|
+
export type { NavigationAnimation } from './components/ui/navigation/types';
|
|
28
|
+
export type { NavigationAccessibility } from './components/ui/navigation/types';
|
|
29
|
+
export type { FeedbackBaseProps } from './components/ui/feedback/types';
|
|
30
|
+
export type { AlertProps } from './components/ui/feedback/types';
|
|
31
|
+
export type { AlertAction } from './components/ui/feedback/types';
|
|
32
|
+
export type { ToastProps } from './components/ui/feedback/types';
|
|
33
|
+
export type { ToastAction } from './components/ui/feedback/types';
|
|
34
|
+
export type { ToastContainerProps } from './components/ui/feedback/types';
|
|
35
|
+
export type { ProgressProps } from './components/ui/feedback/types';
|
|
36
|
+
export type { ProgressStep } from './components/ui/feedback/types';
|
|
37
|
+
export type { SkeletonProps } from './components/ui/feedback/types';
|
|
38
|
+
export type { SkeletonTextProps } from './components/ui/feedback/types';
|
|
39
|
+
export type { SkeletonAvatarProps } from './components/ui/feedback/types';
|
|
40
|
+
export type { SkeletonButtonProps } from './components/ui/feedback/types';
|
|
41
|
+
export type { DataDisplayBaseProps } from './components/ui/data-display/types';
|
|
42
|
+
export type { SortableColumn } from './components/ui/data-display/types';
|
|
43
|
+
export type { SortConfig } from './components/ui/data-display/types';
|
|
44
|
+
export type { PaginationConfig } from './components/ui/data-display/types';
|
|
45
|
+
export type { FilterConfig } from './components/ui/data-display/types';
|
|
46
|
+
export type { TableProps } from './components/ui/data-display/types';
|
|
47
|
+
export type { TableRowProps } from './components/ui/data-display/types';
|
|
48
|
+
export type { DataGridProps } from './components/ui/data-display/types';
|
|
49
|
+
export type { DataGridColumnProps } from './components/ui/data-display/types';
|
|
50
|
+
export type { ListProps } from './components/ui/data-display/types';
|
|
51
|
+
export type { ListItem } from './components/ui/data-display/types';
|
|
52
|
+
export type { ListAction } from './components/ui/data-display/types';
|
|
53
|
+
export type { ListFilter } from './components/ui/data-display/types';
|
|
54
|
+
export type { TreeProps } from './components/ui/data-display/types';
|
|
55
|
+
export type { TreeNode } from './components/ui/data-display/types';
|
|
56
|
+
export type { TreeItemProps } from './components/ui/data-display/types';
|
|
57
|
+
export type { TreeFilter } from './components/ui/data-display/types';
|
|
58
|
+
export type { TimelineProps } from './components/ui/data-display/types';
|
|
59
|
+
export type { TimelineItem } from './components/ui/data-display/types';
|
|
60
|
+
export type { TimelineAction } from './components/ui/data-display/types';
|
|
61
|
+
export type { TimelineItemProps } from './components/ui/data-display/types';
|
|
62
|
+
export type { TimelineFilter } from './components/ui/data-display/types';
|
|
63
|
+
export type { ChartProps } from './components/ui/data-display/types';
|
|
64
|
+
export type { ChartData } from './components/ui/data-display/types';
|
|
65
|
+
export type { ChartDataset } from './components/ui/data-display/types';
|
|
66
|
+
export type { ChartDataPoint } from './components/ui/data-display/types';
|
|
67
|
+
export type { ChartLegend } from './components/ui/data-display/types';
|
|
68
|
+
export type { ChartOptions } from './components/ui/data-display/types';
|
|
69
|
+
export type { OverlayBaseProps } from './components/ui/overlay/types';
|
|
70
|
+
export type { PortalProps } from './components/ui/overlay/types';
|
|
71
|
+
export type { OverlayState } from './components/ui/overlay/types';
|
|
72
|
+
export type { OverlayAction } from './components/ui/overlay/types';
|
|
73
|
+
export type { OverlayManagerProps } from './components/ui/overlay/types';
|
|
74
|
+
export type { FocusManagerProps } from './components/ui/overlay/types';
|
|
75
|
+
export type { BackdropProps } from './components/ui/overlay/types';
|
|
76
|
+
export type { ModalProps } from './components/ui/overlay/types';
|
|
77
|
+
export type { ModalHeaderProps } from './components/ui/overlay/types';
|
|
78
|
+
export type { ModalBodyProps } from './components/ui/overlay/types';
|
|
79
|
+
export type { ModalFooterProps } from './components/ui/overlay/types';
|
|
80
|
+
export type { TooltipProps } from './components/ui/overlay/types';
|
|
81
|
+
export type { TooltipContentProps } from './components/ui/overlay/types';
|
|
82
|
+
export type { PopoverProps } from './components/ui/overlay/types';
|
|
83
|
+
export type { PopoverContentProps } from './components/ui/overlay/types';
|
|
84
|
+
export type { PopoverHeaderProps } from './components/ui/overlay/types';
|
|
85
|
+
export type { PopoverBodyProps } from './components/ui/overlay/types';
|
|
86
|
+
export type { PopoverFooterProps } from './components/ui/overlay/types';
|
|
87
|
+
export type { MultiThemeConfig } from './themes/types';
|
|
88
|
+
export type { FontThemeConfig } from './themes/types';
|
|
89
|
+
export type { FontConfig } from './themes/types';
|
|
90
|
+
export type { FontSource } from './themes/types';
|
|
91
|
+
export type { FontFiles } from './themes/types';
|
|
92
|
+
export type { FontFeatures } from './themes/types';
|
|
93
|
+
export type { FontSizeScale } from './themes/types';
|
|
94
|
+
export type { LineHeightScale } from './themes/types';
|
|
95
|
+
export type { LetterSpacingScale } from './themes/types';
|
|
96
|
+
export type { ColorThemeConfig } from './themes/types';
|
|
97
|
+
export type { ColorScale } from './themes/types';
|
|
98
|
+
export type { ColorAccessibility } from './themes/types';
|
|
99
|
+
export type { SemanticColors } from './themes/types';
|
|
100
|
+
export type { NeutralColors } from './themes/types';
|
|
101
|
+
export type { SurfaceColors } from './themes/types';
|
|
102
|
+
export type { TextColors } from './themes/types';
|
|
103
|
+
export type { InteractiveColors } from './themes/types';
|
|
104
|
+
export type { ColorGenerationConfig } from './themes/types';
|
|
105
|
+
export type { ColorPalette } from './themes/types';
|
|
106
|
+
export type { SpacingThemeConfig } from './themes/types';
|
|
107
|
+
export type { SpacingScale } from './themes/types';
|
|
108
|
+
export type { ComponentSpacing } from './themes/types';
|
|
109
|
+
export type { LayoutSpacing } from './themes/types';
|
|
110
|
+
export type { ShadowThemeConfig } from './themes/types';
|
|
111
|
+
export type { TransitionThemeConfig } from './themes/types';
|
|
112
|
+
export type { BorderRadiusThemeConfig } from './themes/types';
|
|
113
|
+
export type { BorderWidthThemeConfig } from './themes/types';
|
|
114
|
+
export type { AnimationThemeConfig } from './themes/types';
|
|
115
|
+
export type { AccessibilityThemeConfig } from './themes/types';
|
|
116
|
+
export type { PrintThemeConfig } from './themes/types';
|
|
117
|
+
export type { ContainerQueryThemeConfig } from './themes/types';
|
|
118
|
+
export type { ContainerThemeConfig } from './themes/types';
|
|
119
|
+
export type { ShimmerThemeConfig } from './themes/types';
|
|
120
|
+
export type { TransitionDuration } from './themes/types';
|
|
121
|
+
export type { TransitionEasing } from './themes/types';
|
|
122
|
+
export type { TransitionProperties } from './themes/types';
|
|
123
|
+
export type { ThemeMetadata } from './themes/types';
|
|
124
|
+
export type { ThemeValidationResult } from './themes/types';
|
|
125
|
+
export type { ThemeValidationError } from './themes/types';
|
|
126
|
+
export type { ThemeValidationWarning } from './themes/types';
|
|
127
|
+
export type { ThemeInheritance } from './themes/types';
|
|
128
|
+
export type { CompleteThemeConfig } from './themes/types';
|
|
129
|
+
export type { DesignToken } from './tokens/types';
|
|
130
|
+
export type { TokenType } from './tokens/types';
|
|
131
|
+
export type { ColorToken } from './tokens/types';
|
|
132
|
+
export type { FontToken } from './tokens/types';
|
|
133
|
+
export type { SpacingToken } from './tokens/types';
|
|
134
|
+
export type { ShadowToken } from './tokens/types';
|
|
135
|
+
export type { TransitionToken } from './tokens/types';
|
|
136
|
+
export type { TokenGroup } from './tokens/types';
|
|
137
|
+
export type { ThemeTokens } from './tokens/types';
|
|
138
|
+
export type { TokenExportOptions } from './tokens/types';
|
|
139
139
|
|
|
140
140
|
// Theme-specific exports
|
|
141
141
|
// Convenience exports
|