BlazorStrap

Bootstrap 4 Components for Blazor Framework

UNLICENSE License

Stars
916
Committers
56

Bot releases are visible (Hide)

BlazorStrap - 1.5.0-preview-02

Published by jbomhold3 almost 4 years ago

.Net5 Update to release version.

Includes Changes from
#410 Thanks XzaR90
#401 Thanks Jespersh

BlazorStrap - 1.5.0-preview-01

Published by jbomhold3 about 4 years ago

.Net 5/netstandard2.0 release thanks @jespersh

BlazorStrap - 1.3.3-Preview-03

Published by jbomhold3 over 4 years ago

Changes

  • Adds Validate on input thanks @MasterSkriptor
  • Adds Label sizing thanks @arivera12
  • Adds Set focus on input thanks @kiasyn
  • Adds outlined buttons thanks @kiasyn
  • Adds dropdown right alignment thanks @kiasyn
  • Adds short tags for tables.
  • Minor bug fixes

If I missed anything my apologies a lot has been happening this build.

BlazorStrap - v1.3.2

Published by jbomhold3 over 4 years ago

Fixes:

BSForm was missing intellisense for On events this has been resolved. @jbomhold3

Adds:

BSDataTable @MasterSkriptor
Support for SVG files @MasterSkriptor
BSAlert add AutoHide @timbze
Custom Checkboxes and Radio Buttons are now supported. @jbomhold3
Checkboxes now support non bool binding. @jbomhold3

BlazorStrap -

Published by chanan over 4 years ago

Fixes:

  • Popover would open multiple time if closed by clicking on it. #309

Merged more features into Extensions project. Getting ready for release.

BlazorStrap - 1.3.2-Preview1-03

Published by jbomhold3 over 4 years ago

  • Patch for collapsing class getting stuck
BlazorStrap -

Published by chanan over 4 years ago

BREAKING CHANGE

Going forward registering BlazorStrap in your dependency injection framework is required.

For Client side blazor update your Program.cs:

public static async Task Main(string[] args)
{
  WebAssemblyHostBuilder builder = WebAssemblyHostBuilder.CreateDefault(args);

  builder.Services.AddSingleton(new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
  builder.Services.AddBootstrapCss();
            
  builder.RootComponents.Add<App>("app");

  await builder.Build().RunAsync();
}

For Server side blazor update your Startup.cs:

public void ConfigureServices(IServiceCollection services)
{
  if (!services.Any(x => x.ServiceType == typeof(HttpClient))
  {
    services.AddScoped<HttpClient>(s =>
    {
      NavigationManager navman = s.GetRequiredService<NavigationManager>();
      return new HttpClient
      {
        BaseAddress = new Uri(navman.BaseUri)
      };
    });
  }
  services.AddBootstrapCss();
}
  • Updated to wasm 3.2 preview 5
  • Modals: In server side mode closing one modal closed all others. PR #301 Fixed by @timbze
  • Modals: If two modals were open at the same time, closing the first caused the background to be scrollable #302
  • JSInternop handling updated to make sure server side mode works correctly.

New Features coming soon!

  • PR #295 by @MasterSkriptor add a templated carousal and list
  • PR #293 also by @MasterSkriptor adds a templated table component

These new component will be released soon under a new nuget package

BlazorStrap -

Published by chanan over 4 years ago

  • pr #280 by @arivera12 closes #279 - Adds new options to modal: IsFullWidth, IsBottom, IsFullHeight, and IsFullScreen
  • Updated Docs site to preview3 of wasm
BlazorStrap -

Published by chanan over 4 years ago

Updated to WebAssembly 3.2 preview 2
Exposed IsOpen on BSAlert #273

BlazorStrap - Update to 3.2 Preview 1

Published by chanan over 4 years ago

  • Thanks to @chucker for updating to 3.2 preview 1 #264 #269
  • Typos was fixed: #267 (@danielabbatt) and a correction to the readme: #268 (@chucker)
  • Typo was fixed in the code ISHoverable #266 (@danielabbatt)
  • CSS is now Css #265 (@blinard)
BlazorStrap - V1.1.101

Published by jbomhold3 almost 5 years ago

Changes

PR #253 Fixes type in BSDropdownItem.razor.cs
PR #251 Added MaxDate to BSinput and BSBasicInput
Setting a 0 Interval value on Carousel's will disable the timer

BlazorStrap - 1.1.0-preview1-03

Published by jbomhold3 almost 5 years ago

Changes

PR #237 Fix IE11 compatiblity for JS interop.
PR #241 Addes Nullable enumeration support
PR #236 Remove BS specific data attributes from Razor markup
PR #235 Fix default tag name to be list element
PR #234 Removes launchSettings.json

BlazorStrap - 1.1.0-preview1-02

Published by jbomhold3 about 5 years ago

Changes

Issues #229

  • Fixed - ChildContent Missing nested in BSBasicForm
BlazorStrap - V1.0.106

Published by jbomhold3 about 5 years ago

Changes

Issues #229

  • Fixed - ChildContent Missing nested in BSBasicForm
BlazorStrap - 1.1.0-preview1-01

Published by jbomhold3 about 5 years ago

Upgrade to 3.1.0 Preview 1

BlazorStrap - V1.0.105

Published by jbomhold3 about 5 years ago

Changes

PR #222 By @MarkZither

  • Allows Setting inital active tab.

Issues #214 , #218, #219, #220

  • Adds ability to remove navbar-light HideLight=true;
  • Adds true support for Radio Buttons.
  • Fixes missing href in BSPaginationLink
  • Fixes missing form tag and onsubmit in BSBasicForm
BlazorStrap - V1.0.104

Published by jbomhold3 about 5 years ago

Minor - Update only if required

Changes

Fade class missing from modal causing no animation effect.

BlazorStrap - V1.0.103

Published by jbomhold3 about 5 years ago

Hotfix BSNav was attempting to access a disposed timer... The timer is no longer required and removed

BlazorStrap - V1.0.101

Published by jbomhold3 about 5 years ago

Changes

PR #209 By @Reltik

  • Changes Submit Input to submit button

PR #211 , #212, #215

  • Validating when input losses focus now only validates that input not the entire form.
  • BSModal and BSCarousel no longer require javascript for animations.
  • Fix for Issue 213 custom valiation on BSBasicInput was not displaying properly
BlazorStrap - V1.0.1

Published by jbomhold3 about 5 years ago

Critical Fix for tabs and prerendering