Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

bug(select): exit fade resets opacity before deferred panel removal with legacy animations

未关闭
#33,851 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
4/5
预计耗时
3-5 天
新手友好度
56/100
Issue 类型
缺陷
描述清晰度
基本清楚
活跃度
活跃
技术栈
angular, typescript
领域
frontend

调研方向

Start with the supplied isolated reproduction and inspect the Material select exit animation styles and the detachment methods mentioned in the issue. Run the Chromium reproduction with and without the legacy trigger, then verify that the panel retains its transparent final state until DOM removal without regressing the exit fade.

由索引模型根据 Issue 内容生成。

描述

area: material/select gemini-triaged
Is this a regression?
  • Yes, this behavior used to work in the previous version

Unknown. It was noticed recently, but I have not established the first affected Angular/Material or Chromium version.

Description

A mat-select panel can become opaque again after its closing fade has finished, before Angular actually removes its DOM node. The transient panel is visible as a flash in Chromium.

A reduced example uses only Angular, Material's prebuilt azure-blue theme, a standalone select, zoneless change detection, and provideAnimationsAsync(). Binding an empty legacy animation trigger on the root component activates the legacy animation renderer and reproduces the delayed removal / opacity rebound. There is no application filter logic, routing, custom select animation, or overlay configuration in this reduced case.

Reproduction

Complete isolated source and one-click StackBlitz launcher: https://gist.github.com/EthanSK/056299e55311004487e48e0a6f66b203

REPL link limitation: The official StackBlitz SDK launcher opens the complete project, but its anonymous generated URL is session-scoped until saved to an account, so the gist is the persistent entry point. I verified that the launcher opens the expected project files and begins dependency installation; remote dependency installation and browser preview have not completed in this test. CodeSandbox’s angular-cli preset unconditionally requires zone.js even though this reproduction is zoneless, and its generic Node sandbox did not start an Angular CLI preview. I did not add Zone.js because that would change the relevant configuration. The same component/providers were actually run and measured in a local Angular CLI build using the tested package versions.

  1. Run the supplied example in Chromium 153. Tested with 153.0.8010.48 on macOS 26.6.2.
  2. Open Choice, let the opening animation finish, then press Escape without changing the value. Repeat, leaving the page otherwise idle.
  3. For measurements, enable the optional diagnostics described in the reproduction. They sample animationend, its microtask, a zero-delay timer, and actual DOM disconnection. They do not run a continuous requestAnimationFrame loop.
  4. Compare with the empty animations: [trigger(...)] declaration and matching template binding removed, keeping provideAnimationsAsync() configured.
  5. Restore the trigger and add only the exit animation-fill-mode: forwards rule below.

Minimal component/provider configuration:

@Component({
  selector: 'app-root',
  imports: [MatFormFieldModule, MatSelectModule],
  animations: [trigger('activateLegacyRenderer', [])],
  template: `
    <h1 @activateLegacyRenderer>Material select close reproduction</h1>
    <mat-form-field>
      <mat-label>Choice</mat-label>
      <mat-select value="one">
        <mat-option value="one">One</mat-option>
        <mat-option value="two">Two</mat-option>
        <mat-option value="three">Three</mat-option>
      </mat-select>
    </mat-form-field>
  `,
})
class SelectReproductionComponent {}

bootstrapApplication(SelectReproductionComponent, {
  providers: [provideZonelessChangeDetection(), provideAnimationsAsync()],
});
Expected Behavior

The select remains transparent after its exit fade completes and until its DOM is removed.

Actual Behavior

The exit animation has fill mode none. When it finishes, computed opacity returns to 1 while the panel is still connected. The legacy animation renderer defers actual node removal, leaving an opportunity for the opaque panel to be painted.

Repeated measurements of the reduced example:

Configuration Result at the zero-delay callback after animationend
Zoneless + activated legacy renderer + default CDK overlay 10/10 still connected, opacity 1
Same, with usePopover: false 10/10 still connected, opacity 1
Remove the bound legacy trigger, retain async animation provider 10/10 already disconnected
Restore trigger and apply forwards fill 10/10 still connected, opacity 0

The baseline default-overlay animationend-to-removal interval was approximately 0.9–2.4 ms. Timing instrumentation can perturb scheduling; these measurements are not a frequency estimate of visible flashes. In the original application, consecutive browser screenshots captured a nearly transparent panel, then a fully opaque panel, then its removal. The reduced example reproduces the same connected/opaque state without application UI or styles.

A narrow workaround that preserves the fade and removal timing:

.mat-mdc-select-panel.mat-select-panel-animations-enabled.mat-select-panel-exit {
  animation-fill-mode: forwards;
}

This also prevented the measured rebound in 23/23 matched filter closes in the original application, and restoring the original CSS restored the rebound in 10/10 closes. Material menus already retain their final fade state and did not show this rebound in six control closes.

Environment
  • Angular core / animations / platform-browser: 21.2.10
  • CDK / Material: 21.2.8
  • Angular CLI / build: 21.2.8
  • TypeScript: 5.9.3
  • RxJS: 7.8.2
  • Browser directly instrumented: Chromium 153.0.8010.48 (embedded browser)
  • Also observed manually: Google Chrome 153.0.8010.52, including incognito
  • Operating system: macOS 26.6.2
  • Zoneless with provideAnimationsAsync() and an active legacy animation trigger
Related issues and scope

Chromium 153 has animation scheduling changes, but a browser feature toggle / version bisect has not been performed. I am not claiming that Chrome 153 introduced the bug or that it is a Chromium standards violation. Filing here because the select exit loses its final opacity before removal; please redirect to Angular core if the deferred cleanup is the preferred place to address it.

主要语言
TypeScript
星标
25k
派生
6.8k
平均合并
1 天 1 小时
30 天内合并 PR
84

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

angular/components 的其他 Issue

查看 angular/components 的全部 Issue

相似的 Issue

更多 TypeScript Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。