@@ -20,25 +20,28 @@ The Blazor Bootstrap `CheckboxInput` component is constructed using an HTML inpu
2020## Parameters
2121| Name | Type | Default | Required | Description | Added Version |
2222| :--| :--| :--| :--| :--| :--|
23+ | Disabled | bool | false | | Gets or sets the disabled state. | 3.3.0 |
24+ | Label | string | null | | Gets or sets the label. | 3.3.0 |
25+ | Value | bool | false | ✔️ | Gets or sets the value. | 3.3.0 |
2326
2427## Methods
2528
2629| Name | Returns | Description | Added Version |
2730| :--| :--| :--| :--|
28- | Disable() | void | Disables autocomplete . | 3.3.0 |
29- | Enable() | void | Enables autocomplete . | 3.3.0 |
31+ | Disable() | void | Disables checkbox input . | 3.3.0 |
32+ | Enable() | void | Enables checkbox input . | 3.3.0 |
3033
3134## Events
3235
3336| Name | Description | Added Version |
3437| :--| :--| :--|
35- | ValueChanged | This event fires on every user keystroke that changes the textbox value. | 3.3.0 |
38+ | ValueChanged | This event fires when the ` CheckboxInput ` value changes . | 3.3.0 |
3639
3740## Examples
3841
3942### Basic Usage
4043
41- <img src = " " alt = " Blazor Bootstrap Checkbox Input Component - Basic Usage" />
44+ <img src = " https://i.imgur.com/kqSggFK.png " alt = " Blazor Bootstrap Checkbox Input Component - Basic Usage" />
4245
4346``` cshtml {} showLineNumbers
4447<CheckboxInput Label="Default checkbox" @bind-Value="isChecked" />
@@ -131,7 +134,7 @@ Do not use both the `Disabled` parameter and `Enable()` & `Disable()` methods.
131134
132135### Events: ValueChanged
133136
134- This event fires when the ` CheckboxInput ` value changes, but not on every keystroke .
137+ This event fires when the ` CheckboxInput ` value change .
135138
136139<img src = " https://i.imgur.com/Vrztsvo.png" alt = " Blazor Bootstrap Checkbox Input Component - Events: ValueChanged" />
137140
0 commit comments