@@ -125,15 +125,15 @@ visitors with class `.sr-only`.
125
125
<div >
126
126
<b-form inline >
127
127
<label class =" sr-only" for =" inline-form-input-name" >Name</label >
128
- <b-input
128
+ <b-form- input
129
129
id =" inline-form-input-name"
130
130
class =" mb-2 mr-sm-2 mb-sm-0"
131
131
placeholder =" Jane Doe"
132
- ></b-input >
132
+ ></b-form- input >
133
133
134
134
<label class =" sr-only" for =" inline-form-input-username" >Username</label >
135
135
<b-input-group prepend =" @" class =" mb-2 mr-sm-2 mb-sm-0" >
136
- <b-input id =" inline-form-input-username" placeholder =" Username" ></b-input >
136
+ <b-form- input id =" inline-form-input-username" placeholder =" Username" ></b-form -input >
137
137
</b-input-group >
138
138
139
139
<b-form-checkbox class =" mb-2 mr-sm-2 mb-sm-0" >Remember me</b-form-checkbox >
@@ -222,7 +222,7 @@ will announce this help text when the user focuses or enters the control.
222
222
<div >
223
223
<b-form @submit.stop.prevent >
224
224
<label for =" text-password" >Password</label >
225
- <b-input type =" password" id =" text-password" aria-describedby =" password-help-block" ></b-input >
225
+ <b-form- input type =" password" id =" text-password" aria-describedby =" password-help-block" ></b-form -input >
226
226
<b-form-text id =" password-help-block" >
227
227
Your password must be 8-20 characters long, contain letters and numbers, and must not
228
228
contain spaces, special characters, or emoji.
@@ -261,7 +261,7 @@ or the `force-show` prop to display the feedback.
261
261
<div >
262
262
<b-form @submit.stop.prevent >
263
263
<label for =" feedback-user" >User ID</label >
264
- <b-input v-model =" userId" :state =" validation" id =" feedback-user" ></b-input >
264
+ <b-form- input v-model =" userId" :state =" validation" id =" feedback-user" ></b-form -input >
265
265
<b-form-invalid-feedback :state =" validation" >
266
266
Your user ID must be 5-12 characters long.
267
267
</b-form-invalid-feedback >
@@ -302,9 +302,11 @@ any `<option>` elements generated from the `options` prop.
302
302
303
303
``` html
304
304
<template >
305
- <label for =" input-with-list" >Input with datalist</label >
306
- <b-form-input list =" input-list" id =" input-with-list" ></b-form-input >
307
- <b-form-datalist id =" input-list" :options =" options" ></b-form-datalist >
305
+ <div >
306
+ <label for =" input-with-list" >Input with datalist</label >
307
+ <b-form-input list =" input-list" id =" input-with-list" ></b-form-input >
308
+ <b-form-datalist id =" input-list" :options =" options" ></b-form-datalist >
309
+ </div >
308
310
</template >
309
311
310
312
<script >
0 commit comments