Skip to content

Conversation

@jnbain
Copy link
Contributor

@jnbain jnbain commented Dec 3, 2025

Fixes #47241


Checklist

  • The branch is targeted at master
  • I have tested the changes locally
  • The code follows the project's coding style (prettier applied)
  • Tests added/updated (guidance needed - this is my first PR to Material-UI)

Previews:

- Only select chip/value when cursor is at start of input (position 0)
- Makes multiple mode consistent with single mode behavior
- Fixes mui#47241
@mui-bot
Copy link

mui-bot commented Dec 3, 2025

Netlify deploy preview

https://deploy-preview-47411--material-ui.netlify.app/

Bundle size report

Bundle Parsed size Gzip size
@mui/material 🔺+199B(+0.04%) 🔺+58B(+0.04%)
@mui/lab 0B(0.00%) 0B(0.00%)
@mui/system 0B(0.00%) 0B(0.00%)
@mui/utils 0B(0.00%) 0B(0.00%)

Details of bundle changes

Generated by 🚫 dangerJS against a8815b7

@mj12albert
Copy link
Member

Single mode: Pressing ArrowLeft selects the value even when the input field contains text
Multiple mode: Pressing ArrowLeft does nothing when the input field contains text

TBH I don't really understand this, do you press ArrowLeft when the input is already focused? Would appreciate a screen recording if possible

@zannager zannager added the scope: autocomplete Changes related to the autocomplete. This includes ComboBox. label Dec 3, 2025
@ZeeshanTamboli
Copy link
Member

ZeeshanTamboli commented Dec 4, 2025

Single mode: Pressing ArrowLeft selects the value even when the input field contains text
Multiple mode: Pressing ArrowLeft does nothing when the input field contains text

TBH I don't really understand this, do you press ArrowLeft when the input is already focused? Would appreciate a screen recording if possible

@mj12albert Yes, it happens when the input is focused. By “value,” the author meant the selected value Chip. The behavior in the fix matches Base UI Combobox: https://base-ui.com/react/components/combobox#multiple-select (which I suppose is ARIA compliant).

Copy link
Member

@ZeeshanTamboli ZeeshanTamboli left a comment

Choose a reason for hiding this comment

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

@jnbain Thanks for the PR. Some existing tests are failing that can be checked in CI.

@ZeeshanTamboli ZeeshanTamboli added the type: enhancement It’s an improvement, but we can’t make up our mind whether it's a bug fix or a new feature. label Dec 4, 2025
@mj12albert
Copy link
Member

I think the change is fine, though I don't think this behavior is specified in ARIA

Single mode: Pressing ArrowLeft selects the value even when the input field contains text

The issue is this, assuming it's referring to https://mui.com/material-ui/react-autocomplete/#single-value-rendering

The behavior seems buggy as you can't move the caret through the whole text, it just jumps from the end to the chip

So I suppose it's not that the behaviors are inconsistent between single/multiple but they each have their individual bugs

@ZeeshanTamboli ZeeshanTamboli changed the title [material-ui][Autocomplete] Fix ArrowLeft behavior in multiple mode with input text [autocomplete] Fix ArrowLeft behavior in multiple mode with input text Dec 4, 2025
@ZeeshanTamboli ZeeshanTamboli changed the title [autocomplete] Fix ArrowLeft behavior in multiple mode with input text [autocomplete] Fix <kbd>ArrowLeft</kbd> behavior in multiple mode with input text Dec 4, 2025
@ZeeshanTamboli ZeeshanTamboli changed the title [autocomplete] Fix <kbd>ArrowLeft</kbd> behavior in multiple mode with input text [autocomplete] Fix ArrowLeft behavior in multiple mode with input text Dec 4, 2025
@ZeeshanTamboli ZeeshanTamboli changed the title [autocomplete] Fix ArrowLeft behavior in multiple mode with input text [autocomplete] Fix ArrowLeft behavior in multiple and single value rendering mode with input text Dec 5, 2025
@ZeeshanTamboli ZeeshanTamboli changed the title [autocomplete] Fix ArrowLeft behavior in multiple and single value rendering mode with input text [autocomplete] Fix ArrowLeft, Backspace and Delete behavior in multiple and single value rendering mode with input text Dec 5, 2025
@ZeeshanTamboli ZeeshanTamboli added type: bug It doesn't behave as expected. and removed type: enhancement It’s an improvement, but we can’t make up our mind whether it's a bug fix or a new feature. labels Dec 6, 2025
@ZeeshanTamboli ZeeshanTamboli changed the title [autocomplete] Fix ArrowLeft, Backspace and Delete behavior in multiple and single value rendering mode with input text [autocomplete] Fix ArrowLeft, Backspace & Delete behavior for multiple and single-value rendering with proper caret handling Dec 8, 2025
@ZeeshanTamboli
Copy link
Member

@jnbain Made the expected changes, including fixes for Backspace and Delete. I have also added tests. @mj12albert would you mind reviewing?

// always jump to the last tag (if any) from the input.
if (focusedItem === -1 && direction === 'previous') {
nextItem = value.length - 1;
// In freeSolo, clear any draft text so it doesn't "come back" later.
Copy link
Member

Choose a reason for hiding this comment

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

Are there any downsides to keeping the input string here? Might be frustrating to arrow too far and lose all the text 🤔

Copy link
Member

@ZeeshanTamboli ZeeshanTamboli Dec 16, 2025

Choose a reason for hiding this comment

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

Arrowing too far would be in the case of multiple selected chips. In Base UI, the input is also cleared when focus moves to selected options: https://base-ui.com/react/components/combobox#multiple-select.

Maybe we can keep the input text when freeSolo but not when it is not freeSolo.
Like normally (without single value rendering or multiple case), when it is freeSolo and an arbitrary string is typed, the input is not cleared on blur: https://mui.com/material-ui/react-autocomplete/#free-solo
And when not freeSolo, it is cleared on blur after any string is typed: https://mui.com/material-ui/react-autocomplete/#combo-box.
For both it is expected behaviour.

So, maybe we should follow this for consistency? Keep when freeSolo and clear when not freeSolo for single value rendering and multiple that we are fixing in this PR.

Copy link
Member

Choose a reason for hiding this comment

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

We can revisit this if someone opens a new issue about it or sth…it's not that important

@ZeeshanTamboli
Copy link
Member

Any further review on this?

@ZeeshanTamboli ZeeshanTamboli merged commit 4915b2f into mui:master Jan 5, 2026
19 checks passed
736-c41-2c1-e464fc974 pushed a commit to Swiss-Armed-Forces/Loom that referenced this pull request Jan 12, 2026
This MR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | dependencies | patch | [`7.3.6` → `7.3.7`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/7.3.6/7.3.7) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/mui/material-ui/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mui/material-ui) |
| [@mui/material](https://mui.com/material-ui/) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material)) | dependencies | patch | [`7.3.6` → `7.3.7`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/7.3.6/7.3.7) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/mui/material-ui/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mui/material-ui) |
| [@mui/types](https://github.com/mui/material-ui/tree/master/packages/mui-types) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-types)) | devDependencies | patch | [`7.4.9` → `7.4.10`](https://renovatebot.com/diffs/npm/@mui%2ftypes/7.4.9/7.4.10) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/mui/material-ui/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mui/material-ui) |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`24.10.4` → `24.10.7`](https://renovatebot.com/diffs/npm/@types%2fnode/24.10.4/24.10.7) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped) |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | devDependencies | patch | [`19.2.7` → `19.2.8`](https://renovatebot.com/diffs/npm/@types%2freact/19.2.7/19.2.8) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped) |
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | dependencies | patch | [`25.7.3` → `25.7.4`](https://renovatebot.com/diffs/npm/i18next/25.7.3/25.7.4) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/i18next/i18next/badge)](https://securityscorecards.dev/viewer/?uri=github.com/i18next/i18next) |

---

### Release Notes

<details>
<summary>mui/material-ui (@&#8203;mui/icons-material)</summary>

### [`v7.3.7`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#737)

[Compare Source](mui/material-ui@v7.3.6...v7.3.7)

<!-- generated comparing v7.3.6..master -->

*Jan 8, 2026*

A big thanks to the 16 contributors who made this release possible.

##### `@mui/material@7.3.7`

- \[accordion] Remove unnecessary handling of `square` prop on Accordion Root ([#&#8203;47457](mui/material-ui#47457)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[alert] Remove unnecessary default icon mapping fallback ([#&#8203;47460](mui/material-ui#47460)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[appbar] Fix inherit color CSS variable not getting applied ([#&#8203;47518](mui/material-ui#47518)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[autocomplete] Fix `ArrowLeft`, `Backspace` & `Delete` behavior for multiple and single-value rendering with proper caret handling ([#&#8203;47411](mui/material-ui#47411)) [@&#8203;jnbain](https://github.com/jnbain)
- \[backdrop] Remove unnecessary passing of `classes` from root slot ([#&#8203;47519](mui/material-ui#47519)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[button-group] Fix styles when variant is `contained` ([#&#8203;47499](mui/material-ui#47499)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[card-action-area] Remove incorrect root ref being forwarded to focus highlight component ([#&#8203;47523](mui/material-ui#47523)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[checkbox] Fix readonly checkboxes ([#&#8203;47503](mui/material-ui#47503)) [@&#8203;mj12albert](https://github.com/mj12albert)
- \[click-away-listener] Tighten the parameter type of createHandleSynthetic method ([#&#8203;47525](mui/material-ui#47525)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[dialog] Fix backdrop theme style overrides ([#&#8203;47544](mui/material-ui#47544)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[focus-trap] Compute `activeElement` inside `loopFocus` on every keydown ([#&#8203;47566](mui/material-ui#47566)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[modal] Take non-integer padding-right into consideration when scroll locking ([#&#8203;47420](mui/material-ui#47420)) [@&#8203;Zache](https://github.com/Zache)
- \[select] Fix dropdown width does not match trigger width on window resize ([#&#8203;47526](mui/material-ui#47526)) [@&#8203;AarishMansur](https://github.com/AarishMansur)
- \[tabs] Fix passing incorrect slot name props (scrollButton → scrollButtons) ([#&#8203;47215](mui/material-ui#47215)) [@&#8203;rithik56](https://github.com/rithik56)

##### Docs

- \[card] Fix key warning ([#&#8203;47524](mui/material-ui#47524)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[dialog] Replace TranstionProps with slotProps.transition ([#&#8203;47569](mui/material-ui#47569)) [@&#8203;sai6855](https://github.com/sai6855)
- \[number-field] Use stable Base UI package ([#&#8203;47504](mui/material-ui#47504)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
- \[snackbar] Replace TransitionComponent with slots.transition ([#&#8203;47570](mui/material-ui#47570)) [@&#8203;sai6855](https://github.com/sai6855)
- Fix incorrect indentation in migration guide ([#&#8203;47571](mui/material-ui#47571)) [@&#8203;sai6855](https://github.com/sai6855)
- Enable MUI chat on Material UI demos ([#&#8203;46837](mui/material-ui#46837)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
- Add docs and website banner for Dev survey'25 ([#&#8203;47521](mui/material-ui#47521)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1)
- Update Tailwind CSS v4 + Next.js Pages Router docs ([#&#8203;47546](mui/material-ui#47546)) [@&#8203;atharva3333](https://github.com/atharva3333)
- Add warning callout to Sync plugin doc ([#&#8203;47511](mui/material-ui#47511)) [@&#8203;mapache-salvaje](https://github.com/mapache-salvaje)
- Update typo in TailwindCSS v4 integration with Next.js docs ([#&#8203;47512](mui/material-ui#47512)) [@&#8203;TimKraemer](https://github.com/TimKraemer)
- Fix link to contributing guide ([#&#8203;47473](mui/material-ui#47473)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
- Improve description of Accordion props ([#&#8203;47459](mui/material-ui#47459)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)

##### Core

- \[blog] Whats new since MUI X v8 \[DX-51] ([#&#8203;47140](mui/material-ui#47140)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
- \[code-infra] Fix React\@&#8203;next CI job ([#&#8203;47493](mui/material-ui#47493)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Move font loading to [@&#8203;mui/docs](https://github.com/mui/docs) ([#&#8203;47385](mui/material-ui#47385)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Fix CI for React 18 ([#&#8203;47560](mui/material-ui#47560)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Prevent legacy browsers tests from updating ([#&#8203;47496](mui/material-ui#47496)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Move `@mui/internal-test-utils` to code infra repo ([#&#8203;47422](mui/material-ui#47422)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Fix React\@&#8203;next CI job ([#&#8203;47493](mui/material-ui#47493)) [@&#8203;Janpot](https://github.com/Janpot)
- \[examples] Update Next.js versions to v16 in Next.js examples (DX-57) ([#&#8203;47453](mui/material-ui#47453)) [@&#8203;alelthomas](https://github.com/alelthomas)
- \[internal] Bump Next.js & React version to avoid security vulnerability ([#&#8203;47427](mui/material-ui#47427)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
- \[test] Use plain playwright for e2e ([#&#8203;47410](mui/material-ui#47410)) [@&#8203;mj12albert](https://github.com/mj12albert)
- \[test] Fix react-18 tests ([#&#8203;47407](mui/material-ui#47407)) [@&#8203;Janpot](https://github.com/Janpot)

All contributors of this release in alphabetical order: [@&#8203;AarishMansur](https://github.com/AarishMansur), [@&#8203;alelthomas](https://github.com/alelthomas), [@&#8203;atharva3333](https://github.com/atharva3333), [@&#8203;bricefrisco](https://github.com/bricefrisco), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;jnbain](https://github.com/jnbain), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;mapache-salvaje](https://github.com/mapache-salvaje), [@&#8203;mj12albert](https://github.com/mj12albert), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;prakhargupta1](https://github.com/prakhargupta1), [@&#8203;rithik56](https://github.com/rithik56), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;TimKraemer](https://github.com/TimKraemer), [@&#8203;Zache](https://github.com/Zache), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)

</details>

<details>
<summary>i18next/i18next (i18next)</summary>

### [`v25.7.4`](https://github.com/i18next/i18next/blob/HEAD/CHANGELOG.md#2574)

[Compare Source](i18next/i18next@v25.7.3...v25.7.4)

- fix: Interpolation breaks when cloning an instance [2376](https://github.com/i18next/react-i18next/issues/2376)

</details>

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43Ni41IiwidXBkYXRlZEluVmVyIjoiNDIuNzYuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGUiXX0=-->

See merge request swiss-armed-forces/cyber-command/cea/loom!245

Co-authored-by: Loom MR Pipeline Trigger <group_103951964_bot_9504bb8dead6d4e406ad817a607f24be@noreply.gitlab.com>
736-c41-2c1-e464fc974 added a commit to Swiss-Armed-Forces/Loom that referenced this pull request Jan 12, 2026
chore(deps): update frontend dependencies (patch) (patch)

This MR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | dependencies | patch | [`7.3.6` → `7.3.7`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/7.3.6/7.3.7) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/mui/material-ui/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mui/material-ui) |
| [@mui/material](https://mui.com/material-ui/) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material)) | dependencies | patch | [`7.3.6` → `7.3.7`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/7.3.6/7.3.7) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/mui/material-ui/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mui/material-ui) |
| [@mui/types](https://github.com/mui/material-ui/tree/master/packages/mui-types) ([source](https://github.com/mui/material-ui/tree/HEAD/packages/mui-types)) | devDependencies | patch | [`7.4.9` → `7.4.10`](https://renovatebot.com/diffs/npm/@mui%2ftypes/7.4.9/7.4.10) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/mui/material-ui/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mui/material-ui) |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`24.10.4` → `24.10.7`](https://renovatebot.com/diffs/npm/@types%2fnode/24.10.4/24.10.7) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped) |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | devDependencies | patch | [`19.2.7` → `19.2.8`](https://renovatebot.com/diffs/npm/@types%2freact/19.2.7/19.2.8) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped) |
| [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | dependencies | patch | [`25.7.3` → `25.7.4`](https://renovatebot.com/diffs/npm/i18next/25.7.3/25.7.4) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/i18next/i18next/badge)](https://securityscorecards.dev/viewer/?uri=github.com/i18next/i18next) |

---

### Release Notes

<details>
<summary>mui/material-ui (@&#8203;mui/icons-material)</summary>

### [`v7.3.7`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#737)

[Compare Source](mui/material-ui@v7.3.6...v7.3.7)

<!-- generated comparing v7.3.6..master -->

*Jan 8, 2026*

A big thanks to the 16 contributors who made this release possible.

##### `@mui/material@7.3.7`

- \[accordion] Remove unnecessary handling of `square` prop on Accordion Root ([#&#8203;47457](mui/material-ui#47457)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[alert] Remove unnecessary default icon mapping fallback ([#&#8203;47460](mui/material-ui#47460)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[appbar] Fix inherit color CSS variable not getting applied ([#&#8203;47518](mui/material-ui#47518)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[autocomplete] Fix `ArrowLeft`, `Backspace` & `Delete` behavior for multiple and single-value rendering with proper caret handling ([#&#8203;47411](mui/material-ui#47411)) [@&#8203;jnbain](https://github.com/jnbain)
- \[backdrop] Remove unnecessary passing of `classes` from root slot ([#&#8203;47519](mui/material-ui#47519)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[button-group] Fix styles when variant is `contained` ([#&#8203;47499](mui/material-ui#47499)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[card-action-area] Remove incorrect root ref being forwarded to focus highlight component ([#&#8203;47523](mui/material-ui#47523)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[checkbox] Fix readonly checkboxes ([#&#8203;47503](mui/material-ui#47503)) [@&#8203;mj12albert](https://github.com/mj12albert)
- \[click-away-listener] Tighten the parameter type of createHandleSynthetic method ([#&#8203;47525](mui/material-ui#47525)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[dialog] Fix backdrop theme style overrides ([#&#8203;47544](mui/material-ui#47544)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[focus-trap] Compute `activeElement` inside `loopFocus` on every keydown ([#&#8203;47566](mui/material-ui#47566)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[modal] Take non-integer padding-right into consideration when scroll locking ([#&#8203;47420](mui/material-ui#47420)) [@&#8203;Zache](https://github.com/Zache)
- \[select] Fix dropdown width does not match trigger width on window resize ([#&#8203;47526](mui/material-ui#47526)) [@&#8203;AarishMansur](https://github.com/AarishMansur)
- \[tabs] Fix passing incorrect slot name props (scrollButton → scrollButtons) ([#&#8203;47215](mui/material-ui#47215)) [@&#8203;rithik56](https://github.com/rithik56)

##### Docs

- \[card] Fix key warning ([#&#8203;47524](mui/material-ui#47524)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
- \[dialog] Replace TranstionProps with slotProps.transition ([#&#8203;47569](mui/material-ui#47569)) [@&#8203;sai6855](https://github.com/sai6855)
- \[number-field] Use stable Base UI package ([#&#8203;47504](mui/material-ui#47504)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
- \[snackbar] Replace TransitionComponent with slots.transition ([#&#8203;47570](mui/material-ui#47570)) [@&#8203;sai6855](https://github.com/sai6855)
- Fix incorrect indentation in migration guide ([#&#8203;47571](mui/material-ui#47571)) [@&#8203;sai6855](https://github.com/sai6855)
- Enable MUI chat on Material UI demos ([#&#8203;46837](mui/material-ui#46837)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
- Add docs and website banner for Dev survey'25 ([#&#8203;47521](mui/material-ui#47521)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1)
- Update Tailwind CSS v4 + Next.js Pages Router docs ([#&#8203;47546](mui/material-ui#47546)) [@&#8203;atharva3333](https://github.com/atharva3333)
- Add warning callout to Sync plugin doc ([#&#8203;47511](mui/material-ui#47511)) [@&#8203;mapache-salvaje](https://github.com/mapache-salvaje)
- Update typo in TailwindCSS v4 integration with Next.js docs ([#&#8203;47512](mui/material-ui#47512)) [@&#8203;TimKraemer](https://github.com/TimKraemer)
- Fix link to contributing guide ([#&#8203;47473](mui/material-ui#47473)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
- Improve description of Accordion props ([#&#8203;47459](mui/material-ui#47459)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)

##### Core

- \[blog] Whats new since MUI X v8 \[DX-51] ([#&#8203;47140](mui/material-ui#47140)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
- \[code-infra] Fix React\@&#8203;next CI job ([#&#8203;47493](mui/material-ui#47493)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Move font loading to [@&#8203;mui/docs](https://github.com/mui/docs) ([#&#8203;47385](mui/material-ui#47385)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Fix CI for React 18 ([#&#8203;47560](mui/material-ui#47560)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Prevent legacy browsers tests from updating ([#&#8203;47496](mui/material-ui#47496)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Move `@mui/internal-test-utils` to code infra repo ([#&#8203;47422](mui/material-ui#47422)) [@&#8203;Janpot](https://github.com/Janpot)
- \[code-infra] Fix React\@&#8203;next CI job ([#&#8203;47493](mui/material-ui#47493)) [@&#8203;Janpot](https://github.com/Janpot)
- \[examples] Update Next.js versions to v16 in Next.js examples (DX-57) ([#&#8203;47453](mui/material-ui#47453)) [@&#8203;alelthomas](https://github.com/alelthomas)
- \[internal] Bump Next.js & React version to avoid security vulnerability ([#&#8203;47427](mui/material-ui#47427)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
- \[test] Use plain playwright for e2e ([#&#8203;47410](mui/material-ui#47410)) [@&#8203;mj12albert](https://github.com/mj12albert)
- \[test] Fix react-18 tests ([#&#8203;47407](mui/material-ui#47407)) [@&#8203;Janpot](https://github.com/Janpot)

All contributors of this release in alphabetical order: [@&#8203;AarishMansur](https://github.com/AarishMansur), [@&#8203;alelthomas](https://github.com/alelthomas), [@&#8203;atharva3333](https://github.com/atharva3333), [@&#8203;bricefrisco](https://github.com/bricefrisco), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;jnbain](https://github.com/jnbain), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;mapache-salvaje](https://github.com/mapache-salvaje), [@&#8203;mj12albert](https://github.com/mj12albert), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;prakhargupta1](https://github.com/prakhargupta1), [@&#8203;rithik56](https://github.com/rithik56), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;TimKraemer](https://github.com/TimKraemer), [@&#8203;Zache](https://github.com/Zache), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)

</details>

<details>
<summary>i18next/i18next (i18next)</summary>

### [`v25.7.4`](https://github.com/i18next/i18next/blob/HEAD/CHANGELOG.md#2574)

[Compare Source](i18next/i18next@v25.7.3...v25.7.4)

- fix: Interpolation breaks when cloning an instance [2376](https://github.com/i18next/react-i18next/issues/2376)

</details>

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43Ni41IiwidXBkYXRlZEluVmVyIjoiNDIuNzYuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGUiXX0=-->

See merge request swiss-armed-forces/cyber-command/cea/loom!245

Co-authored-by: Loom MR Pipeline Trigger <group_103951964_bot_9504bb8dead6d4e406ad817a607f24be@noreply.gitlab.com>
Co-authored-by: open-source Pipeline <group_90701827_bot_ed04ae348bc5f40af9966fb8b6867e99@noreply.gitlab.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

scope: autocomplete Changes related to the autocomplete. This includes ComboBox. type: bug It doesn't behave as expected.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[autocomplete] Inconsistent behavior between single and multiple rendered values

5 participants