mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
24 lines
595 B
TypeScript
24 lines
595 B
TypeScript
/**
|
|
* Accessibility Utilities - Re-exported from root hooks folder
|
|
*
|
|
* This file re-exports accessibility utilities from the root hooks folder
|
|
* to maintain backwards compatibility with existing imports in fakemui.
|
|
*
|
|
* For new code, import directly from the hooks folder:
|
|
* import { generateTestId, testId, aria } from '../../../hooks/useAccessible'
|
|
*/
|
|
|
|
export {
|
|
generateTestId,
|
|
testId,
|
|
aria,
|
|
keyboard,
|
|
validate,
|
|
} from '../../../hooks/useAccessible'
|
|
|
|
export type {
|
|
AccessibilityFeature,
|
|
AccessibilityComponent,
|
|
AccessibilityAction,
|
|
} from '../../../hooks/useAccessible'
|