Skip to content

Commit 45085b3

Browse files
committed
feat!: move search button to light dom
1 parent 9fe64b4 commit 45085b3

4 files changed

+38
-20
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vaadin-component-factory/vcf-lookup-field",
3-
"version": "24.0.0",
3+
"version": "5.0.0",
44
"description": "Vaadin Lookup field component",
55
"main": "theme/lumo/vcf-lookup-field.js",
66
"author": "Vaadin Ltd",

src/vcf-lookup-field.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ export class LookupField extends LookupField_base {
158158
_filterValue: any;
159159
_forceFooterRerender: boolean;
160160
_forceHeaderRerender: boolean;
161+
_createSearchButton(): void;
161162
focus(): void;
162163
__onSelectItem(event: any): void;
163164
__onSelectChanged(event: any): void;

src/vcf-lookup-field.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

src/vcf-lookup-field.js

+35-18
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
6060
width: 100%;
6161
min-width: 0;
6262
}
63-
vaadin-button.search-button {
63+
::slotted(vaadin-button.search-button) {
6464
margin-left: var(--lumo-space-xs);
6565
flex: 0 0 auto;
6666
}
@@ -70,24 +70,24 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
7070
:host([theme~='integrated']) vaadin-combo-box::part(input-field) {
7171
border-radius: var(--lumo-border-radius-s) 0 0 var(--lumo-border-radius-s);
7272
}
73-
:host([theme~='integrated']) .search-button {
73+
:host([theme~='integrated']) ::slotted(.search-button) {
7474
margin-left: 0;
7575
border-radius: 0 var(--lumo-border-radius-s) var(--lumo-border-radius-s) 0;
7676
}
7777
:host([theme~='full-width']) vaadin-combo-box::part(input-field) {
7878
margin-inline-end: var(--lumo-size-m);
7979
}
80-
:host([theme~='full-width']) vaadin-button.search-button {
80+
:host([theme~='full-width']) ::slotted(vaadin-button.search-button) {
8181
margin-inline-start: calc(var(--lumo-space-xs) + (var(--lumo-size-m) * -1));
8282
}
83-
:host([theme~='integrated'][theme~='full-width']) vaadin-button.search-button {
83+
:host([theme~='integrated'][theme~='full-width']) ::slotted(vaadin-button.search-button) {
8484
margin-inline-start: calc((var(--lumo-size-m) * -1));
8585
}
86-
:host([readonly]) vaadin-button.search-button {
86+
:host([readonly]) ::slotted(vaadin-button.search-button) {
8787
background-color: transparent;
8888
border: 1px dashed var(--lumo-contrast-30pct);
8989
}
90-
:host([invalid]) vaadin-button.search-button {
90+
:host([invalid]) ::slotted(vaadin-button.search-button) {
9191
color: var(--lumo-error-text-color);
9292
background-color: var(--lumo-error-color-10pct);
9393
}
@@ -106,17 +106,7 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
106106
></vaadin-combo-box>
107107
</slot>
108108
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>
120110
121111
<vaadin-dialog
122112
aria-label="lookup-grid"
@@ -201,6 +191,9 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
201191

202192
ready() {
203193
super.ready();
194+
195+
this._createSearchButton();
196+
204197
if (this.$.gridSlot.assignedNodes()[0]) {
205198
this._grod = this.$.gridSlot.assignedNodes()[0];
206199
} else {
@@ -307,6 +300,30 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
307300
});
308301
}
309302

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+
310327
focus() {
311328
setTimeout(() => {
312329
this._field.focusElement.focus();
@@ -535,7 +552,7 @@ export class LookupField extends ElementMixin(ThemableMixin(PolymerElement)) {
535552
}
536553

537554
static get version() {
538-
return '24.0.0';
555+
return '5.0.0';
539556
}
540557

541558
static get properties() {

0 commit comments

Comments
 (0)