Releases: chanan/BlazorStyled
Releases · chanan/BlazorStyled
v1.0.0
Aspnet core 3.0.0 release!
BREAKING CHANGE
Previously when using Blazor WASM this line was required in Startup.cs:
app.AddClientSideStyled();
Use this line instead:
app.AddComponent<ClientSideStyled>("#styled");
v1.0.0-preview8-04
New Feature! You can now compose multiple styles together into one! #31
Enhnacement: Hashs created are stable across runs, that means you can copy your CSS and save it to a file. This is a forward looking enhancement needed for pre-rendering #39
v1.0.0-preview8-03
Updated:
- Aspnetcore preview8 support
New:
- #33
<Styled />
now support pseudo classes
- #36
<Styled />
now accepts html elements
- #30
<Styled>
now has support for media queries
v1.0.0-preview7-05
- NEW Added a new syntax to define your stylesheets #19
- Fixed an issue with media queries on html elements (class media queries were fine) #21
v1.0.0-preview7-03
BREAKING CHANGES - Please read!
- This is a big release! In this release, BlazorStyled no longer uses javascript!
- Also added
WithId
to allow for multiple BlazorStyled to exists at the same time without overwriting each others styles
v1.0.0-preview7-01
Update aspnet core to 3.0.0-preview7.19365.7