From e539d6a30ab20a45bf4b2d18b6504a147d3c1c13 Mon Sep 17 00:00:00 2001 From: bek-bsw Date: Mon, 10 Nov 2025 16:24:41 +0100 Subject: [PATCH] bek-FLOR-1908: Add customizability to dropdown button --- .../Stories/Dropdown/Variants.razor | 87 +++++++++++++++++++ BlueBlazor.sln | 4 +- BlueBlazor/Components/Dropdown/Dropdown.razor | 2 +- .../Components/Dropdown/Dropdown.razor.cs | 66 ++++++++++++++ 4 files changed, 156 insertions(+), 3 deletions(-) create mode 100644 BlueBlazor.Docs/Stories/Dropdown/Variants.razor diff --git a/BlueBlazor.Docs/Stories/Dropdown/Variants.razor b/BlueBlazor.Docs/Stories/Dropdown/Variants.razor new file mode 100644 index 0000000..9826427 --- /dev/null +++ b/BlueBlazor.Docs/Stories/Dropdown/Variants.razor @@ -0,0 +1,87 @@ +@{ + /*docs { + "description": "You can customize the dropdown button using `Variant`, `Color` and `Size`. To have full control, set `Variant` to `Variant.None` and use the `HeaderClass` property." + } */ +} +@using BlueBlazor.Shared + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + + + + + ☀️ + + + 🚀 + + \ No newline at end of file diff --git a/BlueBlazor.sln b/BlueBlazor.sln index 35be5c0..c95c9a1 100644 --- a/BlueBlazor.sln +++ b/BlueBlazor.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 18 -VisualStudioVersion = 18.0.11121.172 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36518.9 d17.14 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlueBlazor.Docs", "BlueBlazor.Docs\BlueBlazor.Docs.csproj", "{0D314BF4-DACC-4BF3-BA8B-8754152EBCCA}" ProjectSection(ProjectDependencies) = postProject diff --git a/BlueBlazor/Components/Dropdown/Dropdown.razor b/BlueBlazor/Components/Dropdown/Dropdown.razor index b8af9ce..db68f9e 100644 --- a/BlueBlazor/Components/Dropdown/Dropdown.razor +++ b/BlueBlazor/Components/Dropdown/Dropdown.razor @@ -1,6 +1,6 @@ @namespace BlueBlazor.Components -