Private
Public Access
1
0

feat: Fluent UI Outlook Lite + connections mockup

This commit is contained in:
2026-04-14 18:52:25 +00:00
parent 1199eff6c3
commit dfa4010406
34820 changed files with 1003813 additions and 205 deletions

33
node_modules/@fluentui/react-tabster/README.md generated vendored Normal file
View File

@@ -0,0 +1,33 @@
# @fluentui/react-tabster
**Tabster components for [Fluent UI React](https://react.fluentui.dev)**
Library for focus management that leverages [tabster](https://github.com/microsoft/tabster).
The API currently only supports declarative data-\* attributes that are returned using the exported react hooks:
```tsx
import * as React from 'react';
import { useArrowNavigationGroup } from '@fluentui/react-tabster';
const Item: React.FC = ({ children }) => <div tabIndex={0}>Item</div>;
const ArrowNavigationExample: React.FC = ({ children }) => {
const attrs = useArrowNavigationGroup({ circular: true });
return (
<div {...attrs}>
<Item />
<Item />
<Item />
<Item />
<Item />
<Item />
</div>
);
};
const App: React.FC = () => {
return <ArrowNavigationExample />;
};
```