@@ -94,7 +94,15 @@ rendered and a console warning will be issued.
9494- Older version of Firefox may not support ` readonly ` for ` range ` type inputs.
9595- Input types that do not support ` min ` , ` max ` and ` step ` (i.e. ` text ` , ` password ` , ` tel ` , ` email ` ,
9696 ` url ` , etc) will silently ignore these values (although they will still be rendered on the input
97- markup) iv values are provided.
97+ markup) if values are provided.
98+
99+ ** Caveats with predictive text entry and IME composition entry:**
100+
101+ - When using predictive text auto-suggested words, the ` v-model ` will not update until the
102+ auto-suggested word is selected (or a space is typed). If an auto suggested word is not selected,
103+ the v-model will update with the current _ displayed text_ of the input when the input is blurred.
104+ - When using IME composition (ie. Chinese, Japanese, etc), the ` v-model ` will not update until the
105+ IME composition is completed.
98106
99107### Range type input
100108
@@ -155,7 +163,7 @@ In the example below, we double the number of steps by using step="0.5".
155163convert the value to a native number by using ` Number(value) ` , ` parseInt(value, 10) ` ,
156164` parseFloat(value) ` , or use the ` number ` prop.
157165
158- ** Note:** Bootstrap v4.1 CSS does not include styling for range inputs inside input groups, nor
166+ ** Note:** Bootstrap v4 CSS does not include styling for range inputs inside input groups, nor
159167validation styling on range inputs. However, BootstrapVue includes custom styling to handle these
160168situations until styling is included in Bootstrap v4.
161169
0 commit comments