@@ -16,7 +16,7 @@ function InlineDropMenu({
1616 href,
1717 caption,
1818 target,
19- alignType = 'left ' ,
19+ alignType = 'start ' ,
2020 alignSize = '' ,
2121 direction = 'down' ,
2222 defaultSlot
@@ -91,9 +91,9 @@ describe('Drop Menu', () => {
9191 ) ;
9292 } ) ;
9393
94- it ( 'should render a Responsive Right -align Menu' , ( ) => {
94+ it ( 'should render a Responsive End -align Menu' , ( ) => {
9595 assertLooksLike (
96- < InlineDropMenu caption = "Demo" alignType = "right " alignSize = "md" /> ,
96+ < InlineDropMenu caption = "Demo" alignType = "end " alignSize = "md" /> ,
9797 < div >
9898 < Button
9999 className = "dropdown-toggle"
@@ -104,16 +104,16 @@ describe('Drop Menu', () => {
104104 Demo
105105 </ Button >
106106 < div
107- className = "dropdown-menu dropdown-menu-md-right "
107+ className = "dropdown-menu dropdown-menu-md-end "
108108 aria-labelledby = "test"
109109 />
110110 </ div >
111111 ) ;
112112 } ) ;
113113
114- it ( 'should render a Responsive Left -align Menu' , ( ) => {
114+ it ( 'should render a Responsive Start -align Menu' , ( ) => {
115115 assertLooksLike (
116- < InlineDropMenu caption = "Demo" alignType = "left " alignSize = "md" /> ,
116+ < InlineDropMenu caption = "Demo" alignType = "start " alignSize = "md" /> ,
117117 < div >
118118 < Button
119119 className = "dropdown-toggle"
@@ -124,7 +124,7 @@ describe('Drop Menu', () => {
124124 Demo
125125 </ Button >
126126 < div
127- className = "dropdown-menu dropdown-menu-right dropdown-menu-md-left "
127+ className = "dropdown-menu dropdown-menu-end dropdown-menu-md-start "
128128 aria-labelledby = "test"
129129 />
130130 </ div >
@@ -150,9 +150,9 @@ describe('Drop Menu', () => {
150150 ) ;
151151 } ) ;
152152
153- it ( 'should render a Single-layer Button group with Single Left direction' , ( ) => {
153+ it ( 'should render a Single-layer Button group with Single Start direction' , ( ) => {
154154 assertLooksLike (
155- < InlineDropMenu caption = "Demo" direction = "left " /> ,
155+ < InlineDropMenu caption = "Demo" direction = "start " /> ,
156156 < div >
157157 < Button
158158 className = "dropdown-toggle"
@@ -167,9 +167,9 @@ describe('Drop Menu', () => {
167167 ) ;
168168 } ) ;
169169
170- it ( 'should render a Double-layer Button group with Split Left direction' , ( ) => {
170+ it ( 'should render a Double-layer Button group with Split Start direction' , ( ) => {
171171 assertLooksLike (
172- < InlineDropMenu caption = "Demo" href = "example" direction = "left " /> ,
172+ < InlineDropMenu caption = "Demo" href = "example" direction = "start " /> ,
173173 < div >
174174 < div className = "dropdown-menu" aria-labelledby = "test" />
175175 < div className = "btn-group" >
0 commit comments