mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
29 lines
646 B
TypeScript
29 lines
646 B
TypeScript
/**
|
|
* useAccessible Hooks - Re-exported from root hooks folder
|
|
*
|
|
* This file re-exports from the root hooks folder to maintain backwards
|
|
* compatibility with existing imports in fakemui components.
|
|
*
|
|
* Direct import from root hooks folder bypasses the barrel export
|
|
* to avoid pulling in hooks with project-specific dependencies.
|
|
*/
|
|
|
|
export {
|
|
generateTestId,
|
|
testId,
|
|
aria,
|
|
keyboard,
|
|
validate,
|
|
useAccessible,
|
|
useKeyboardNavigation,
|
|
useFocusManagement,
|
|
useLiveRegion,
|
|
useFocusTrap,
|
|
} from './useAccessible'
|
|
|
|
export type {
|
|
AccessibilityFeature,
|
|
AccessibilityComponent,
|
|
AccessibilityAction,
|
|
} from './useAccessible'
|