From 640e0eeddd918f6f2a0201a23faeec1f52f5e612 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:02:33 +0000 Subject: [PATCH 1/2] Initial plan From a04af5940f7c85345e498d6623a208eb1cefda6e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:08:36 +0000 Subject: [PATCH 2/2] Fix stylelint error in SelectPanel.module.css Replace type selector 'li' with class selector '.ActionListItem' to comply with selector-max-type rule (max 1 type selector per selector) Co-authored-by: hectahertz <24622853+hectahertz@users.noreply.github.com> --- .../react/src/experimental/SelectPanel2/SelectPanel.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/experimental/SelectPanel2/SelectPanel.module.css b/packages/react/src/experimental/SelectPanel2/SelectPanel.module.css index becb60a1260..5f453894d2e 100644 --- a/packages/react/src/experimental/SelectPanel2/SelectPanel.module.css +++ b/packages/react/src/experimental/SelectPanel2/SelectPanel.module.css @@ -79,7 +79,7 @@ flex-grow: 1; /* Allow the browser to skip rendering for off-screen items, reducing style recalc and layout costs in long lists */ - & li { + & .ActionListItem { content-visibility: auto; contain-intrinsic-size: auto 32px; }