@@ -60,7 +60,7 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
60
60
width : 100% ;
61
61
min-width : 0 ;
62
62
}
63
- vaadin-button .search-button {
63
+ :: slotted ( vaadin-button.search-button) {
64
64
margin-left : var (--lumo-space-xs );
65
65
flex : 0 0 auto;
66
66
}
@@ -70,24 +70,24 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
70
70
: host ([theme ~= 'integrated' ]) vaadin- combo- box::part (input-field ) {
71
71
border-radius : var (--lumo-border-radius-s ) 0 0 var (--lumo-border-radius-s );
72
72
}
73
- : host ([theme ~= 'integrated' ]) .search-button {
73
+ : host ([theme ~= 'integrated' ]) :: slotted ( .search-button ) {
74
74
margin-left : 0 ;
75
75
border-radius : 0 var (--lumo-border-radius-s ) var (--lumo-border-radius-s ) 0 ;
76
76
}
77
77
: host ([theme ~= 'full-width' ]) vaadin- combo- box::part (input-field ) {
78
78
margin-inline-end : var (--lumo-size-m );
79
79
}
80
- : host ([theme ~= 'full-width' ]) vaadin- butto n.search-button {
80
+ : host ([theme ~= 'full-width' ]) :: slotted ( vaadin-button.search-button) {
81
81
margin-inline-start : calc (var (--lumo-space-xs ) + (var (--lumo-size-m ) * -1 ));
82
82
}
83
- : host ([theme ~= 'integrated' ][theme ~= 'full-width' ]) vaadin- butto n.search-button {
83
+ : host ([theme ~= 'integrated' ][theme ~= 'full-width' ]) :: slotted ( vaadin-button.search-button) {
84
84
margin-inline-start : calc ((var (--lumo-size-m ) * -1 ));
85
85
}
86
- : host ([readonly ]) vaadin-button .search-button {
86
+ : host ([readonly ]) :: slotted ( vaadin-button.search-button) {
87
87
background-color : transparent;
88
88
border : 1px dashed var (--lumo-contrast-30pct );
89
89
}
90
- : host ([invalid ]) vaadin-button .search-button {
90
+ : host ([invalid ]) :: slotted ( vaadin-button.search-button) {
91
91
color : var (--lumo-error-text-color );
92
92
background-color : var (--lumo-error-color-10pct );
93
93
}
@@ -106,17 +106,7 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
106
106
> </ vaadin-combo-box >
107
107
</ slot >
108
108
109
- < vaadin-button
110
- id ="searchButton "
111
- class ="search-button "
112
- theme ="icon "
113
- on-click ="__open "
114
- on-keydown ="__searchKeydown "
115
- aria-label ="[[i18n.searcharialabel]] "
116
- disabled$ ="[[buttondisabled]] "
117
- >
118
- < vaadin-icon icon ="vaadin:search "> </ vaadin-icon >
119
- </ vaadin-button >
109
+ < slot name ="search-button-slot "> </ slot >
120
110
121
111
< vaadin-dialog
122
112
aria-label ="lookup-grid "
@@ -201,6 +191,9 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
201
191
202
192
ready ( ) {
203
193
super . ready ( ) ;
194
+
195
+ this . _createSearchButton ( ) ;
196
+
204
197
if ( this . $ . gridSlot . assignedNodes ( ) [ 0 ] ) {
205
198
this . _grod = this . $ . gridSlot . assignedNodes ( ) [ 0 ] ;
206
199
} else {
@@ -307,6 +300,30 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
307
300
} ) ;
308
301
}
309
302
303
+ _createSearchButton ( ) {
304
+ const icon = document . createElement ( 'vaadin-icon' ) ;
305
+ icon . setAttribute ( 'icon' , 'vaadin:search' ) ;
306
+ icon . setAttribute ( 'slot' , 'prefix' ) ;
307
+
308
+ const button = document . createElement ( 'vaadin-button' ) ;
309
+ button . setAttribute ( 'slot' , 'search-button-slot' ) ;
310
+ button . setAttribute ( 'id' , 'searchButton' ) ;
311
+ button . classList . add ( 'search-button' ) ;
312
+ button . setAttribute ( 'theme' , 'icon' ) ;
313
+ button . setAttribute ( 'aria-label' , this . i18n . searcharialabel ) ;
314
+ button . disabled = this . buttondisabled ;
315
+
316
+ button . addEventListener ( 'click' , ( ) => {
317
+ this . __open ( ) ;
318
+ } ) ;
319
+ button . addEventListener ( 'keydown' , ( ) => {
320
+ this . __searchKeydown ( ) ;
321
+ } ) ;
322
+
323
+ button . appendChild ( icon ) ;
324
+ this . appendChild ( button ) ;
325
+ }
326
+
310
327
focus ( ) {
311
328
setTimeout ( ( ) => {
312
329
this . _field . focusElement . focus ( ) ;
@@ -535,7 +552,7 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
535
552
}
536
553
537
554
static get version ( ) {
538
- return '24 .0.0' ;
555
+ return '5 .0.0' ;
539
556
}
540
557
541
558
static get properties ( ) {
0 commit comments