From 43d80a4cd9719e0e58ca7d74c3ee068760fdc22e Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Mon, 23 Jun 2025 09:30:48 +0200 Subject: [PATCH] build: some overrides not showing up in docs site The `tokens` rule for the button didn't have a dependency on the FAB and icon button themes which meant that they weren't showing up in the docs. Fixes #31395. --- src/material/button/BUILD.bazel | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/material/button/BUILD.bazel b/src/material/button/BUILD.bazel index 036bf223f458..4487e6d3257f 100644 --- a/src/material/button/BUILD.bazel +++ b/src/material/button/BUILD.bazel @@ -194,7 +194,11 @@ markdown_to_html( extract_tokens( name = "tokens", - srcs = [":theme"], + srcs = [ + ":fab_theme", + ":icon_button_theme", + ":theme", + ], ) filegroup(