|
1 | 1 | # CodeBeam.MudExtensions |
| 2 | + |
2 | 3 | #### Useful third party extension components for MudBlazor, from the community contributors. |
| 4 | + |
3 | 5 | ##### `TheMudSecondary` |
4 | 6 |
|
5 | 7 | [](https://github.com/codebeamorg/codebeam.mudblazor.extensions/stargazers) |
6 | 8 | [](https://github.com/codebeamorg/codebeam.mudblazor.extensions) |
7 | 9 | [](https://github.com/codebeamorg/codebeam.mudblazor.extensions/graphs/contributors) |
8 | | -[](https://www.nuget.org/packages/CodeBeam.MudBlazor.Extensions) |
9 | | -[](https://www.nuget.org/packages/CodeBeam.MudBlazor.Extensions) |
| 10 | +[](https://www.nuget.org/packages/CodeBeam.MudBlazor.Extensions) |
| 11 | +[](https://www.nuget.org/packages/CodeBeam.MudBlazor.Extensions) |
10 | 12 |
|
11 | 13 | ## Utilities |
12 | 14 |
|
|
49 | 51 | - MudSelectExtended |
50 | 52 | - MudTextFieldExtended |
51 | 53 |
|
52 | | - |
53 | 54 | ## Playground |
| 55 | + |
54 | 56 | - **Docs** |
55 | 57 | https://codebeam-mudextensions.pages.dev/ |
56 | 58 | - **Try MudExtensions** |
57 | 59 | https://trymudextensions.pages.dev/ |
58 | 60 |
|
59 | 61 | ## Breaking Changes |
| 62 | + |
60 | 63 | Look at the [Breaking Changes](https://github.com/CodeBeamOrg/CodeBeam.MudBlazor.Extensions/blob/dev/BreakingChanges.md) |
61 | 64 |
|
62 | 65 | ## API |
| 66 | + |
63 | 67 | https://codebeam-mudextensions.pages.dev/api |
64 | 68 |
|
65 | 69 | ## Supported MudBlazor Versions |
66 | | -| MudExtensions | MudBlazor | .Net | |
67 | | -| :--- | :----: | :---: | |
68 | | -| 6.0.0 - 6.0.3 | 6.0.16 | .Net 6 | |
69 | | -| 6.0.4 - 6.0.12 | 6.0.17 - 6.0.18 | .Net 6 | |
70 | | -| 6.1.0 - 6.1.4 | 6.1.0 - 6.1.2 | .Net 6 & .Net 7 | |
71 | | -| 6.1.5 - 6.1.9 | 6.1.4 - 6.1.7 | .Net 6 & .Net 7 | |
72 | | -| 6.2.0 - 6.2.5 | 6.1.8 | .Net 6 & .Net 7 | |
73 | | -| 6.2.6 - 6.4.8 | 6.1.9 - 6.2.0 | .Net 6 & .Net 7 | |
74 | | -| 6.4.9 - 6.5.5 | 6.2.1 - 6.7.0 | .Net 6 & .Net 7 | |
| 70 | + |
| 71 | +| MudExtensions | MudBlazor | .NET | |
| 72 | +| :------------- | :-------------: | :-------------: | |
| 73 | +| 6.0.0 - 6.0.3 | 6.0.16 | .NET 6 | |
| 74 | +| 6.0.4 - 6.0.12 | 6.0.17 - 6.0.18 | .NET 6 | |
| 75 | +| 6.1.0 - 6.1.4 | 6.1.0 - 6.1.2 | .NET 6 & .NET 7 | |
| 76 | +| 6.1.5 - 6.1.9 | 6.1.4 - 6.1.7 | .NET 6 & .NET 7 | |
| 77 | +| 6.2.0 - 6.2.5 | 6.1.8 | .NET 6 & .NET 7 | |
| 78 | +| 6.2.6 - 6.4.8 | 6.1.9 - 6.2.0 | .NET 6 & .NET 7 | |
| 79 | +| 6.4.9 - 6.5.5 | 6.2.1 - 6.7.0 | .NET 6 & .NET 7 | |
75 | 80 |
|
76 | 81 | ## Installation |
| 82 | + |
77 | 83 | This extension uses MudBlazor features (need to set up MudBlazor if you didn't before), so only need to add this line described below:<br /><br /> |
78 | 84 | Add the following to your HTML **head** section, it's either `index.html` or `_Layout.cshtml`/`_Host.cshtml` depending on whether you're running Server-Side or WASM. |
| 85 | + |
79 | 86 | ```html |
80 | 87 | <link href="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css" rel="stylesheet" /> |
81 | 88 | ``` |
82 | 89 |
|
83 | 90 | Add the following to your HTML **body** section |
| 91 | + |
84 | 92 | ```html |
85 | 93 | <script src="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"></script> |
86 | 94 | ``` |
87 | 95 |
|
88 | | -Add the extension services into program.cs |
89 | | -```razor |
| 96 | +Add the extension services into `Program.cs` |
| 97 | + |
| 98 | +```cs |
90 | 99 | using MudExtensions.Services; |
91 | 100 | builder.Services.AddMudExtensions(); |
92 | 101 | ``` |
93 | 102 |
|
94 | 103 | Adding namespace to `_Imports.razor` is not obligatory, but useful. |
| 104 | + |
95 | 105 | ```razor |
96 | 106 | @using MudExtensions |
97 | 107 | ``` |
98 | 108 |
|
99 | 109 | ## Examples |
| 110 | + |
100 | 111 | Each example is recorded in the playground website. |
101 | 112 |
|
102 | 113 | ### MudAnimate |
@@ -139,6 +150,6 @@ https://user-images.githubusercontent.com/78308169/195593490-6fd8d5fe-0472-4b9b- |
139 | 150 |
|
140 | 151 | https://user-images.githubusercontent.com/78308169/195979884-7cf1698c-ce0a-400f-83a7-2accf6fff8c5.mp4 |
141 | 152 |
|
142 | | - |
143 | 153 | ## Contribution |
| 154 | + |
144 | 155 | Feel free to contribute. |
0 commit comments