diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a29795410..31944c23c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Add `pointing` prop to `Popup` ([#1198](https://github.com/stardust-ui/react/pull/1198)) - [Teams Theme] Export missing read-aloud icon in Teams Theme @joheredi ([#1225](https://github.com/stardust-ui/react/pull/1225)) - Add styles for scrollbar to `ProviderBox` in Teams Theme ([#1223](https://github.com/stardust-ui/react/pull/1223)) +- Export `FocusZoneMode` type @sophieH29 ([#1229](https://github.com/stardust-ui/react/pull/1229)) ## [v0.27.0](https://github.com/stardust-ui/react/tree/v0.27.0) (2019-04-10) diff --git a/packages/react/src/index.ts b/packages/react/src/index.ts index 1e5fba0558..03d5bed655 100644 --- a/packages/react/src/index.ts +++ b/packages/react/src/index.ts @@ -235,3 +235,4 @@ export const FocusZoneUtilities = { focusAsync, } export { FocusZoneDirection, FocusZoneProps } from './lib/accessibility/FocusZone/FocusZone.types' +export { FocusZoneMode } from './lib/accessibility/types'