Skip to content

Commit 78d0658

Browse files
Updated Documentation
1 parent afee3a7 commit 78d0658

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AspNetCore Bootstrap5 Tag Helpers ![](https://img.shields.io/github/license/iowacomputergurus/aspnetcore.utilities.bootstrap5taghelpers.svg)
22

3-
A collection of TagHelpers for ASP.NET Core that make utilizing the Bootstrap 4.x library easier to use for developers. Designed to reduce code effort substantially
3+
A collection of TagHelpers for ASP.NET Core that make utilizing the Bootstrap 5.x library easier to use for developers. Designed to reduce code effort substantially
44

55
![Build Status](https://github.com/IowaComputerGurus/aspnetcore.utilities.bootstrap5taghelpers/actions/workflows/ci-build.yml/badge.svg)
66

@@ -23,14 +23,14 @@ These tag helpers are only for markup display, your web project must properly in
2323
You must modify your `_viewimports.cshtml` file by adding
2424

2525
``` html+razor
26-
@addTagHelper *, ICG.AspNetCore.Utilities.bootstrap5taghelpers
26+
@addTagHelper *, ICG.AspNetCore.Utilities.Bootstrap5TagHelpers
2727
```
2828

2929
## Usage
3030

31-
The goal of these tag helpers is to reduce the redundant coding, and compliance with various features of not only the Bootstrap library but form patterns. Within the "Samples" folder there are examples of all included tag helpers. However, the below shows a quick example of the power of these helps.
31+
The goal of these tag helpers is to reduce the redundant coding, and compliance with various features of not only the Bootstrap library but form patterns. Within the "Sample" project you will find examples of all tag helper usage. However, the below shows a quick example of the power of these tag helpers.
3232

33-
### Before Usage
33+
### Before Bootstrap 5 Tag Helper
3434

3535
The following markup is how you would output a model-bound field for a password field, including a note on complexity and validation.
3636

@@ -45,7 +45,7 @@ The following markup is how you would output a model-bound field for a password
4545

4646
This is a total of *306* characters with spaces or *268* without. Granted we get some help with auto-complete etc.
4747

48-
### After Using
48+
### After Using Bootstrap 5 Tag Helper
4949

5050
You can take the entire above example and simplify it to the following
5151

@@ -64,11 +64,15 @@ At this time tag helpers have been implemented for the following elements.
6464

6565
| Element | Description of Implementation |
6666
| --- | --- |
67+
| Accordion | Full support for implementation of accordion, including stay-open modes |
6768
| Alerts | Full support for implementation of alerts, including dismissible alerts |
6869
| Badges | Full support for implementation of badges of all Bootstrap color variations |
6970
| Buttons | Full support for implementation of buttons of all Bootstrap color variations, including outlines |
7071
| Cards | Support for Card, Card Header, Card Header Actions, and Card body elements |
7172
| Environment Alert | An extension of the `<environment>` tag helper to render as an alert style |
7273
| Input | Support for Form input controls for anything tied to the `<input>` tag including ASP.NET Code Model Binding & Validation |
7374
| Modals | Support for modal dialogs, including Modal Body, header, footer, dismiss, and toggles |
75+
| Offcanvas | Full support for implementation of offcanvas display, including sizing/placement |
7476
| TextArea | Support for Form input controls tied to the `<textarea>` tag including ASP.NET Core Model Binding & Validation |
77+
78+
If you find that we are missing a particular tag helper, we welcome contributions!

0 commit comments

Comments
 (0)