Releases: chanan/BlazorStyled
net5 support
v3.0.0-alpha-07
Reduce memory allocations
v3.0.0-alpha-05
This preview release should have all working features
Client Side Sample Site updated to Asp.net 3.2 preview 4
https://blazorstyled.io is now running on 3.0.0 alpha 05
v3.0.0-alpha-04
Changes:
- IStyled API now includes both Sync and Async versions of the API
Fixes:
- Fixed the speed issue in CSB (Mono runtime is very slow for Regex. Replaced Regex with IndexOf on Span)
Known Issues:
- Global styles not working in this release
v3.0.0-alpha-01
This is a pre-release version 3.0.0 of blazorStyled. All functionality should work.
Check: #86 for some notes on some breaking changes if you use the API.
Note that the internals of BlazorStyled have been changed to reduce memory usage, because of this there might be some issues (on the alpha version) where things might not work the same as they did before. That's why this is an alpha version... in other words, use at your own risk.
Also, this version has an issue in it where it writes too many times to the stylesheet. This might cause this version to be slower which might be noticeable in CSB mode.
v2.2.0
v2.1.0
v2.0.1
v2.0.0
BREAKING CHANGES
- Setup: No need for tags in the head anymore. Remove them all. Only setup needed is register the services (
AddBlazorStyled
) - Themes API changes: Set theme values using
IStyled.SetThemeValue
- Themes API changes: Get all values using
IStyled.GetThemeValues
Other changes
- Each Styledsheet id (
WithId
) now has its own style tag in the head - Compose now returns returns a list of classes instead of creating a new class with all the rules of the composed classes
- You can now put rules directly in the
<Styled>...</Styled>
tag when composing that serve as the basis for the all the classes being composed - A bug was fixed where a class with just a label caused an exception