@@ -16,13 +16,13 @@ export const props = {
1616 prepend : {
1717 type : String
1818 } ,
19- prependHTML : {
19+ prependHtml : {
2020 type : String
2121 } ,
2222 append : {
2323 type : String
2424 } ,
25- appendHTML : {
25+ appendHtml : {
2626 type : String
2727 } ,
2828 tag : {
@@ -43,12 +43,12 @@ export const BInputGroup = /*#__PURE__*/ Vue.extend({
4343 const childNodes = [ ]
4444
4545 // Prepend prop/slot
46- if ( props . prepend || props . prependHTML || hasNormalizedSlot ( 'prepend' , $scopedSlots , $slots ) ) {
46+ if ( props . prepend || props . prependHtml || hasNormalizedSlot ( 'prepend' , $scopedSlots , $slots ) ) {
4747 childNodes . push (
4848 h ( BInputGroupPrepend , [
4949 // Prop
50- props . prepend || props . prependHTML
51- ? h ( BInputGroupText , { domProps : htmlOrText ( props . prependHTML , props . prepend ) } )
50+ props . prepend || props . prependHtml
51+ ? h ( BInputGroupText , { domProps : htmlOrText ( props . prependHtml , props . prepend ) } )
5252 : h ( false ) ,
5353 // Slot
5454 normalizeSlot ( 'prepend' , { } , $scopedSlots , $slots ) || h ( false )
@@ -66,12 +66,12 @@ export const BInputGroup = /*#__PURE__*/ Vue.extend({
6666 }
6767
6868 // Append prop
69- if ( props . append || props . appendHTML || hasNormalizedSlot ( 'append' , $scopedSlots , $slots ) ) {
69+ if ( props . append || props . appendHtml || hasNormalizedSlot ( 'append' , $scopedSlots , $slots ) ) {
7070 childNodes . push (
7171 h ( BInputGroupAppend , [
7272 // prop
73- props . append || props . appendHTML
74- ? h ( BInputGroupText , { domProps : htmlOrText ( props . appendHTML , props . append ) } )
73+ props . append || props . appendHtml
74+ ? h ( BInputGroupText , { domProps : htmlOrText ( props . appendHtml , props . append ) } )
7575 : h ( false ) ,
7676 // Slot
7777 normalizeSlot ( 'append' , { } , $scopedSlots , $slots ) || h ( false )
0 commit comments