@@ -97,7 +97,7 @@ export const DashboardItemMixin = (superClass) =>
9797 id ="drag-handle "
9898 draggable ="true "
9999 class ="drag-handle "
100- part ="move-button "
100+ part ="button move-button "
101101 theme ="icon tertiary "
102102 aria-label ="${ this . __i18n . move } "
103103 title ="${ this . __i18n . move } "
@@ -114,7 +114,7 @@ export const DashboardItemMixin = (superClass) =>
114114 aria-label ="${ this . __i18n . remove } "
115115 title ="${ this . __i18n . remove } "
116116 id ="remove-button "
117- part ="remove-button "
117+ part ="button remove-button "
118118 theme ="icon tertiary "
119119 tabindex ="${ this . __selected ? 0 : - 1 } "
120120 @click ="${ ( ) => fireRemove ( this ) } "
@@ -156,7 +156,7 @@ export const DashboardItemMixin = (superClass) =>
156156 aria-label ="${ this . __i18n . resize } "
157157 title ="${ this . __i18n . resize } "
158158 id ="resize-handle "
159- part ="resize-button "
159+ part ="button resize-button "
160160 class ="resize-handle "
161161 theme ="icon tertiary "
162162 tabindex ="${ this . __selected ? 0 : - 1 } "
@@ -180,7 +180,7 @@ export const DashboardItemMixin = (superClass) =>
180180 title ="${ this . __i18n . moveBackward } "
181181 @click ="${ ( ) => fireMove ( this , - 1 ) } "
182182 id ="move-backward "
183- part ="move-backward-button "
183+ part ="button move-backward-button "
184184 >
185185 < div class ="icon "> </ div >
186186 </ vaadin-dashboard-button >
@@ -190,7 +190,7 @@ export const DashboardItemMixin = (superClass) =>
190190 title ="${ this . __i18n . moveApply } "
191191 @click ="${ ( ) => this . __exitMode ( true ) } "
192192 id ="move-apply "
193- part ="move-apply-button "
193+ part ="button move-apply-button "
194194 >
195195 < div class ="icon "> </ div >
196196 </ vaadin-dashboard-button >
@@ -200,7 +200,7 @@ export const DashboardItemMixin = (superClass) =>
200200 title ="${ this . __i18n . moveForward } "
201201 @click ="${ ( ) => fireMove ( this , 1 ) } "
202202 id ="move-forward "
203- part ="move-forward-button "
203+ part ="button move-forward-button "
204204 >
205205 < div class ="icon "> </ div >
206206 </ vaadin-dashboard-button >
@@ -233,7 +233,7 @@ export const DashboardItemMixin = (superClass) =>
233233 title ="${ this . __i18n . resizeApply } "
234234 @click ="${ ( ) => this . __exitMode ( true ) } "
235235 id ="resize-apply "
236- part ="resize-apply-button "
236+ part ="button resize-apply-button "
237237 >
238238 < div class ="icon "> </ div >
239239 </ vaadin-dashboard-button >
@@ -244,7 +244,7 @@ export const DashboardItemMixin = (superClass) =>
244244 @click ="${ ( ) => fireResize ( this , - 1 , 0 ) } "
245245 .hidden ="${ ! canShrinkWidth } "
246246 id ="resize-shrink-width "
247- part ="resize-shrink-width-button "
247+ part ="button resize-shrink-width-button "
248248 >
249249 < div class ="icon "> </ div >
250250 </ vaadin-dashboard-button >
@@ -255,7 +255,7 @@ export const DashboardItemMixin = (superClass) =>
255255 @click ="${ ( ) => fireResize ( this , 1 , 0 ) } "
256256 .hidden ="${ ! canGrowWidth } "
257257 id ="resize-grow-width "
258- part ="resize-grow-width-button "
258+ part ="button resize-grow-width-button "
259259 >
260260 < div class ="icon "> </ div >
261261 </ vaadin-dashboard-button >
@@ -265,7 +265,7 @@ export const DashboardItemMixin = (superClass) =>
265265 title ="${ this . __i18n . resizeShrinkHeight } "
266266 @click ="${ ( ) => fireResize ( this , 0 , - 1 ) } "
267267 id ="resize-shrink-height "
268- part ="resize-shrink-height-button "
268+ part ="button resize-shrink-height-button "
269269 .hidden ="${ ! hasMinRowHeight || ! canShrinkHeight } "
270270 >
271271 < div class ="icon "> </ div >
@@ -276,7 +276,7 @@ export const DashboardItemMixin = (superClass) =>
276276 title ="${ this . __i18n . resizeGrowHeight } "
277277 @click ="${ ( ) => fireResize ( this , 0 , 1 ) } "
278278 id ="resize-grow-height "
279- part ="resize-grow-height-button "
279+ part ="button resize-grow-height-button "
280280 .hidden ="${ ! hasMinRowHeight } "
281281 >
282282 < div class ="icon "> </ div >
0 commit comments