Skip to content

feat: export useTabsterAttributes() hook in react-components API #34995

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
Copy link

@github-actions github-actions bot Aug 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕵🏾‍♀️ visual changes to review in the Visual Change Report

vr-tests-react-components/Charts-DonutChart 2 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/Charts-DonutChart.Dynamic - RTL.default.chromium.png 30793 Changed
vr-tests-react-components/Charts-DonutChart.Dynamic - Dark Mode.default.chromium.png 12635 Changed
vr-tests-react-components/Drawer 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/Drawer.overlay drawer full - Dark Mode.chromium.png 941 Changed
vr-tests-react-components/Positioning 2 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/Positioning.Positioning end.updated 2 times.chromium.png 861 Changed
vr-tests-react-components/Positioning.Positioning end.chromium.png 594 Changed

"type": "minor",
"comment": "feat: export useTabsterAttributes() hook",
"packageName": "@fluentui/react-components",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -1913,6 +1913,7 @@ import { useTabList_unstable } from '@fluentui/react-tabs';
import { useTabListContext_unstable } from '@fluentui/react-tabs';
import { useTabListContextValues_unstable } from '@fluentui/react-tabs';
import { useTabListStyles_unstable } from '@fluentui/react-tabs';
import { useTabsterAttributes } from '@fluentui/react-tabster';
import { useTabStyles_unstable } from '@fluentui/react-tabs';
import { useTag_unstable } from '@fluentui/react-tags';
import { useTagAvatarContextValues_unstable } from '@fluentui/react-tags';
Expand Down Expand Up @@ -5832,6 +5833,8 @@ export { useTabListContextValues_unstable }

export { useTabListStyles_unstable }

export { useTabsterAttributes }

export { useTabStyles_unstable }

export { useTag_unstable }
Expand Down
1 change: 1 addition & 0 deletions packages/react-components/react-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
useFocusObserved,
useRestoreFocusTarget,
useRestoreFocusSource,
useTabsterAttributes,
useUncontrolledFocus,
} from '@fluentui/react-tabster';
export type {
Expand Down