Releases: chanan/BlazorStrap
BlazorStrap 5.1.100-Beta1
Docs https://blazorstrap.io/Beta/
New Installs
- Include Core Package
https://www.nuget.org/packages/BlazorStrap/5.1.100-Beta1 - Include one of the components packages
For Bootstrap 4 https://www.nuget.org/packages/BlazorStrap.V4/5.1.100-Beta1
For Bootstrap 5 https://www.nuget.org/packages/BlazorStrap.V5/5.1.100-Beta1
_Imports.razor
For Bootstrap 4 @using BlazorStrap.V4
For Bootstrap 5 @using BlazorStrap.V5
In _Host.cshtml for server side or index.html for wasm add the following
For bootstrap 4.
- Head section
<link href="_content/BlazorStrap.V4/offcanvas.css" rel="stylesheet" />
or your custom version of it.<link href=yourproject.styles.css" rel="stylesheet">
- End of Body section
<script src="_content/BlazorStrap/popper.min.js"></script>
<script src="_content/BlazorStrap/blazorstrap.js"></script>
For bootstrap 5.
In _Host.cshtml for server side or index.html for wasm add the following
For bootstrap 4.
- Head section
<link href=yourproject.styles.css" rel="stylesheet">
- End of Body section
<script src="_content/BlazorStrap/popper.min.js"></script>
<script src="_content/BlazorStrap/blazorstrap.js"></script>
Upgrading from BlazorStrap 5.0.x
Change @using BlazorStrap to @using BlazorStrap.V5 in your _Imports.razor
Add package https://www.nuget.org/packages/BlazorStrap.V5/5.1.100-Beta1
Upgrading from BlazorStrap 1.x
There is no direct upgrade path as some components have changed names and/or parameters.
Please follow new install steps to get started.
BlazorStrap 5.0.106
BlazorStrap 5.0.106
Fixes
-
BSInput: Int, Long, Double, Float, Decimal. Will no longer throw an exception when conversion fails. Instead, it will throw a validation error.
-
BSFeedback #522
-
BSToaster #520
-
Misc Bug fixes
-
Multi-line feedback will no longer print html
as text -
"A typo in BSTooltip was making it so that after showing and hiding a tooltip, it was not visible but was still intercepting mouse events." #532
-
Ignore duplicate calls to show/hide BSDropDown, BSPopover #529
-
Guttering Issue #524
-
Validation now correctly marks Fields on submit.
Changes
- Improved support for BlazorServer Side
- Don't submit when clicking buttons #526
- EventListener in javascript is now able to clean up dereferenced event listeners.
Adds
BlazorStrap 5.0.106-Preview3
BlazorStrap 5.0.106-Preview3 (Should be last preview and official release will come out soon.)
Note preview versions are generally safe use and are there just to ensure we didn't create new bugs before release. Adopting these versions helps to prevent bugs getting into official releases. TL;DR please help test if you can so I can get the official release out sooner.
Fixes
- BSInput: Int, Long, Double, Float, Decimal. Will no longer throw an exception when conversion fails. Instead, it will throw a validation error.
Thanks for the following changes @uecasm really appreciate all the effort and help you have provided.
Fixes
- Multi-line feedback will no longer print html
as text - "A typo in BSTooltip was making it so that after showing and hiding a tooltip, it was not visible but was still intercepting mouse events." #532
- Ignore duplicate calls to show/hide BSDropDown, BSPopover #529
- Guttering Issue #524
Changes
- Don't submit when clicking buttons #526
Adds
BlazorStrap 5.0.106-Preview2
BlazorStrap 5.0.106-Beta1
BlazorStrap 5.0.106-Beta1
- Improved support for BlazorServer Side
- Adds Callbacks for all necessary Interop
- EventListener in javascript is now able to clean up dereferenced event listeners.
- Validation now correctly marks Fields on submit.
BlazorStrap 5.0.105
BlazorStrap 5.0.105
Misc
- Added: HasCloseButton to
BSModal
defaults to true Thanks @uecasm - Added: Dynamic Support For
BSPopover
see docs - Added: New version of BSDataTable to core.
- Added: BSDataTableRow #495 Thanks @zandermar18
- Added: BSSpinner Thanks @JulianDev24
- Added: Set styles for Modal footer.
- Fixes: empty footer error #496 Thanks @stepkillah
Changes to BSProgressBar
Thanks @uecasm
- Added: Min parameter
- Fixes: the width calculation for multiple progress bars
- Removes: rounding of the width percent
Changes to BSAccordionItem
, BSCollapse
, BSDropDown
, BSModal
, BSOffCanvas
, BSPopover
, BSToast
, BSTooltip
Thanks @uecasm
- Adds: RefreshAsync()
- Change: ShowAsync, HideAsync will no longer fire if the component is already in that state.
- Shown: Is now public.
Javascript
- Fixes: JS PeakHeight was resolving before the timeout completed.
- Change: JS PeakHeight now restores the orginal styles of the element
BlazorStrap 5.0.105-Preview4
BlazorStrap 5.0.105-Preview4
Added: HasCloseButton to BSModal
defaults to true Thanks @uecasm
Added: Dynamic Support For BSPopover
see docs
Changes to BSProgressBar
Thanks @uecasm
- Added: Min parameter
- Fixes: the width calculation for multiple progress bars
- Removes: rounding of the width percent
Changes to BSAccordionItem
, BSCollapse
, BSDropDown
, BSModal
, BSOffCanvas
, BSPopover
, BSToast
, BSTooltip
Thanks @uecasm
- Change: ShowAsync, HideAsync will no longer fire if the component is already in that state.
- Shown: Is now public.
BlazorStrap 5.0.105-Preview3
BlazorStrap 5.0.105-Preview3
Preview2 Skipped due to version error in nuget
- Changes to BSDataTable see docs
- Allow set styles for Modal footer and fix empty footer error #496 Thanks @stepkillah
- Adds: BSDataTableRow #495 Thanks @zandermar18
BlazorStrap 5.0.105-Preview1
BlazorStrap 5.0.105-Preview1
Adds new
- Standard/Dynamic Data Support
- Sortable Columns
- Filterable Columns