Skip to content
Merged
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

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "fix: use the valid nomemory focusgroup token for TabList",
"packageName": "@fluentui/react-headless-components-preview",
"email": "dmytrokirpa@microsoft.com",
"dependentChangeType": "patch"
}

This file was deleted.

This file was deleted.

This file was deleted.

22 changes: 22 additions & 0 deletions packages/charts/chart-web-components/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
{
"name": "@fluentui/chart-web-components",
"entries": [
{
"date": "Thu, 13 Aug 2026 04:10:22 GMT",
"version": "0.0.94",
"tag": "@fluentui/chart-web-components_v0.0.94",
"comments": {
"none": [
{
"author": "7559015+janechu@users.noreply.github.com",
"package": "@fluentui/chart-web-components",
"commit": "32b42a5bf79c1836047dfc7fae07b1320731bce4",
"comment": "package bump due to a partial publish"
}
],
"patch": [
{
"author": "beachball",
"package": "@fluentui/chart-web-components",
"comment": "Bump @fluentui/web-components to v3.1.0"
}
]
}
},
{
"date": "Mon, 10 Aug 2026 17:06:43 GMT",
"tag": "@fluentui/chart-web-components_v0.0.93",
Expand Down
11 changes: 10 additions & 1 deletion packages/charts/chart-web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# Change Log - @fluentui/chart-web-components

This log was last generated on Mon, 10 Aug 2026 17:06:43 GMT and should not be manually modified.
<!-- This log was last generated on Thu, 13 Aug 2026 04:10:22 GMT and should not be manually modified. -->

<!-- Start content -->

## [0.0.94](https://github.com/microsoft/fluentui/tree/@fluentui/chart-web-components_v0.0.94)

Thu, 13 Aug 2026 04:10:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/chart-web-components_v0.0.93..@fluentui/chart-web-components_v0.0.94)

### Patches

- Bump @fluentui/web-components to v3.1.0 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)

## [0.0.93](https://github.com/microsoft/fluentui/tree/@fluentui/chart-web-components_v0.0.93)

Mon, 10 Aug 2026 17:06:43 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/charts/chart-web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fluentui/chart-web-components",
"description": "A library of Fluent Chart Web Components",
"version": "0.0.93",
"version": "0.0.94",
"author": {
"name": "Microsoft"
},
Expand Down Expand Up @@ -68,7 +68,7 @@
},
"dependencies": {
"@fluentui/tokens": "^1.0.0-alpha.24",
"@fluentui/web-components": "^3.0.3",
"@fluentui/web-components": "^3.1.0",
"@microsoft/fast-web-utilities": "^6.0.0",
"@types/d3-selection": "^3.0.0",
"@types/d3-shape": "^3.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('TabList', () => {

expect(tablist).toBeInTheDocument();
expect(tablist).toHaveAttribute('data-orientation', 'horizontal');
expect(tablist).toHaveAttribute('focusgroup', 'tablist inline wrap no-memory');
expect(tablist).toHaveAttribute('focusgroup', 'tablist inline wrap nomemory');

const tabs = getAllByRole('tab');

Expand All @@ -41,6 +41,6 @@ describe('TabList', () => {
const tablist = getByRole('tablist');

expect(tablist).toHaveAttribute('data-orientation', 'vertical');
expect(tablist).toHaveAttribute('focusgroup', 'tablist block wrap no-memory');
expect(tablist).toHaveAttribute('focusgroup', 'tablist block wrap nomemory');
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const useTabList = (props: TabListProps, ref: React.Ref<HTMLElement>): Ta
const state: TabListState = useTabListBase_unstable(props, ref);

// eslint-disable-next-line react-hooks/immutability
state.root.focusgroup = state.vertical ? 'tablist block wrap no-memory' : 'tablist inline wrap no-memory';
state.root.focusgroup = `tablist ${state.vertical ? 'block' : 'inline'} wrap nomemory`;
// eslint-disable-next-line react-hooks/immutability
state.root['data-orientation'] = state.vertical ? 'vertical' : 'horizontal';

Expand Down
29 changes: 29 additions & 0 deletions packages/web-components/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
{
"name": "@fluentui/web-components",
"entries": [
{
"date": "Thu, 13 Aug 2026 04:10:22 GMT",
"version": "3.1.0",
"tag": "@fluentui/web-components_v3.1.0",
"comments": {
"none": [
{
"author": "martinhochel@microsoft.com",
"package": "@fluentui/web-components",
"commit": "035ee66b71902ad8e1d066f0b7e3899d74dd979e",
"comment": "Use a namespace import for the now ESM-only `@fluentui/tokens`"
},
{
"author": "7559015+janechu@users.noreply.github.com",
"package": "@fluentui/web-components",
"commit": "32b42a5bf79c1836047dfc7fae07b1320731bce4",
"comment": "package bump due to a partial publish"
}
],
"minor": [
{
"author": "jolud@microsoft.com",
"package": "@fluentui/web-components",
"commit": "33e4a021a728e9a7ba2f023e1a500fee549c4be5",
"comment": "Remove max-width from MessageBar component"
}
]
}
},
{
"date": "Mon, 10 Aug 2026 17:06:42 GMT",
"tag": "@fluentui/web-components_v3.0.3",
Expand Down
11 changes: 10 additions & 1 deletion packages/web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# Change Log - @fluentui/web-components

This log was last generated on Mon, 10 Aug 2026 17:06:42 GMT and should not be manually modified.
<!-- This log was last generated on Thu, 13 Aug 2026 04:10:22 GMT and should not be manually modified. -->

<!-- Start content -->

## [3.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.1.0)

Thu, 13 Aug 2026 04:10:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.3..@fluentui/web-components_v3.1.0)

### Minor changes

- Remove max-width from MessageBar component ([PR #36521](https://github.com/microsoft/fluentui/pull/36521) by jolud@microsoft.com)

## [3.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.3)

Mon, 10 Aug 2026 17:06:42 GMT
Expand Down
2 changes: 1 addition & 1 deletion packages/web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fluentui/web-components",
"description": "A library of Fluent Web Components",
"version": "3.0.3",
"version": "3.1.0",
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2619,7 +2619,7 @@ __metadata:
resolution: "@fluentui/chart-web-components@workspace:packages/charts/chart-web-components"
dependencies:
"@fluentui/tokens": "npm:^1.0.0-alpha.24"
"@fluentui/web-components": "npm:^3.0.3"
"@fluentui/web-components": "npm:^3.1.0"
"@microsoft/fast-web-utilities": "npm:^6.0.0"
"@storybook/html": "npm:9.1.17"
"@storybook/html-vite": "npm:9.1.17"
Expand Down Expand Up @@ -6632,7 +6632,7 @@ __metadata:
languageName: unknown
linkType: soft

"@fluentui/web-components@npm:*, @fluentui/web-components@npm:^3.0.3, @fluentui/web-components@workspace:packages/web-components":
"@fluentui/web-components@npm:*, @fluentui/web-components@npm:^3.1.0, @fluentui/web-components@workspace:packages/web-components":
version: 0.0.0-use.local
resolution: "@fluentui/web-components@workspace:packages/web-components"
dependencies:
Expand Down
Loading