Skip to content

Commit 1d5574c

Browse files
committed
fix(ui): add missing hook exports for useScreenReader, useAsyncOperation, and useAriaAttributes
1 parent 082c55e commit 1d5574c

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

packages/ui/src/hooks/index.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,22 @@
44
* Custom React hooks for UI functionality
55
*/
66

7-
// Add custom hooks exports here when available
7+
// Accessibility hooks
8+
export {
9+
useLiveRegion,
10+
useKeyboardNavigation,
11+
useFocusTrap,
12+
useAriaAttributes,
13+
useScreenReader,
14+
useHighContrast,
15+
useReducedMotion,
16+
useFocusManagement,
17+
} from './useAccessibility';
18+
19+
// Async operation hook
20+
export {
21+
useAsyncOperation,
22+
type AsyncOperationState,
23+
type AsyncOperationResult,
24+
type UseAsyncOperationOptions,
25+
} from './use-async-operation';

0 commit comments

Comments
 (0)