|
11 | 11 | <div class="row g-3"> |
12 | 12 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
13 | 13 | <BootstrapInputGroup> |
14 | | - <BootstrapInputGroupLabel DisplayText="CurrentValue" /> |
15 | | - <BootstrapInput @bind-Value="@CurrentValue" /> |
| 14 | + <BootstrapInputGroupLabel DisplayText="CurrentValue"></BootstrapInputGroupLabel> |
| 15 | + <BootstrapInput @bind-Value="@CurrentValue"></BootstrapInput> |
16 | 16 | </BootstrapInputGroup> |
17 | 17 | </div> |
18 | 18 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
19 | 19 | <BootstrapInputGroup> |
20 | | - <BootstrapInputGroupLabel DisplayText="MinValue" /> |
21 | | - <BootstrapInput @bind-Value="@MinValue" /> |
| 20 | + <BootstrapInputGroupLabel DisplayText="MinValue"></BootstrapInputGroupLabel> |
| 21 | + <BootstrapInput @bind-Value="@MinValue"></BootstrapInput> |
22 | 22 | </BootstrapInputGroup> |
23 | 23 | </div> |
24 | 24 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
25 | 25 | <BootstrapInputGroup> |
26 | | - <BootstrapInputGroupLabel DisplayText="MaxValue" /> |
27 | | - <BootstrapInput @bind-Value="@MaxValue" /> |
| 26 | + <BootstrapInputGroupLabel DisplayText="MaxValue"></BootstrapInputGroupLabel> |
| 27 | + <BootstrapInput @bind-Value="@MaxValue"></BootstrapInput> |
28 | 28 | </BootstrapInputGroup> |
29 | 29 | </div> |
30 | 30 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
31 | 31 | <BootstrapInputGroup> |
32 | | - <BootstrapInputGroupLabel DisplayText="DisplayText" /> |
33 | | - <BootstrapInput @bind-Value="@DisplayText" /> |
| 32 | + <BootstrapInputGroupLabel DisplayText="DisplayText"></BootstrapInputGroupLabel> |
| 33 | + <BootstrapInput @bind-Value="@DisplayText"></BootstrapInput> |
34 | 34 | </BootstrapInputGroup> |
35 | 35 | </div> |
36 | 36 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
37 | 37 | <BootstrapInputGroup> |
38 | | - <BootstrapInputGroupLabel DisplayText="Step" /> |
39 | | - <BootstrapInput @bind-Value="@Step" /> |
| 38 | + <BootstrapInputGroupLabel DisplayText="Step"></BootstrapInputGroupLabel> |
| 39 | + <BootstrapInput @bind-Value="@Step"></BootstrapInput> |
40 | 40 | </BootstrapInputGroup> |
41 | 41 | </div> |
42 | 42 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
43 | 43 | <BootstrapInputGroup> |
44 | | - <BootstrapInputGroupLabel DisplayText="IsDisabled" /> |
45 | | - <Checkbox @bind-Value="@IsDisabled" /> |
| 44 | + <BootstrapInputGroupLabel DisplayText="IsDisabled"></BootstrapInputGroupLabel> |
| 45 | + <Checkbox @bind-Value="@IsDisabled"></Checkbox> |
46 | 46 | </BootstrapInputGroup> |
47 | 47 | </div> |
48 | 48 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
49 | 49 | <BootstrapInputGroup> |
50 | | - <BootstrapInputGroupLabel DisplayText="UseInput" /> |
51 | | - <Checkbox @bind-Value="@UseInput" /> |
| 50 | + <BootstrapInputGroupLabel DisplayText="UseInput"></BootstrapInputGroupLabel> |
| 51 | + <Checkbox @bind-Value="@UseInput"></Checkbox> |
52 | 52 | </BootstrapInputGroup> |
53 | 53 | </div> |
54 | 54 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
55 | 55 | <BootstrapInputGroup> |
56 | | - <BootstrapInputGroupLabel DisplayText="ShowLabel" /> |
57 | | - <Checkbox @bind-Value="@ShowLabel" /> |
| 56 | + <BootstrapInputGroupLabel DisplayText="ShowLabel"></BootstrapInputGroupLabel> |
| 57 | + <Checkbox @bind-Value="@ShowLabel"></Checkbox> |
58 | 58 | </BootstrapInputGroup> |
59 | 59 | </div> |
60 | 60 | <div class="col-12 col-md-6 col-lg-4 xl-3"> |
61 | 61 | <BootstrapInputGroup> |
62 | | - <BootstrapInputGroupLabel DisplayText="UseGroup" /> |
63 | | - <Checkbox @bind-Value="@UseGroup" /> |
| 62 | + <BootstrapInputGroupLabel DisplayText="UseGroup"></BootstrapInputGroupLabel> |
| 63 | + <Checkbox @bind-Value="@UseGroup"></Checkbox> |
64 | 64 | </BootstrapInputGroup> |
65 | 65 | </div> |
66 | 66 | </div> |
67 | 67 | </section> |
68 | 68 | @if (UseGroup) |
69 | 69 | { |
70 | 70 | <BootstrapInputGroup> |
71 | | - <BootstrapInputGroupLabel DisplayText="@DisplayText" /> |
| 71 | + <BootstrapInputGroupLabel DisplayText="@DisplayText" Width="100"></BootstrapInputGroupLabel> |
72 | 72 | <Slider @bind-Value="@CurrentValue" Max="MaxValue" Min="MinValue" Step="Step" UseInputEvent="UseInput" |
73 | 73 | DisplayText="@DisplayText" ShowLabel="ShowLabel" IsDisabled="IsDisabled" OnValueChanged="OnRangeSliderValueChanged"></Slider> |
74 | 74 | </BootstrapInputGroup> |
|
79 | 79 | DisplayText="@DisplayText" ShowLabel="ShowLabel" IsDisabled="IsDisabled" OnValueChanged="OnRangeSliderValueChanged"></Slider> |
80 | 80 | } |
81 | 81 | <section ignore> |
82 | | - <ConsoleLogger @ref="Logger" /> |
| 82 | + <ConsoleLogger @ref="Logger"></ConsoleLogger> |
83 | 83 | </section> |
84 | 84 | </DemoBlock> |
85 | 85 |
|
|
102 | 102 | </div> |
103 | 103 | </DemoBlock> |
104 | 104 |
|
105 | | -<AttributeTable Items="@GetAttributes()" /> |
| 105 | +<AttributeTable Items="@GetAttributes()"></AttributeTable> |
106 | 106 |
|
107 | | -<EventTable Items="@GetEvents()" /> |
| 107 | +<EventTable Items="@GetEvents()"></EventTable> |
0 commit comments