@vaadin/vaadin-select 2.4.1 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -13
- package/package.json +1 -1
- package/src/vaadin-select.js +4 -8
package/README.md
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
[](https://github.com/vaadin/vaadin-select/releases)
|
|
3
|
-
[](https://www.webcomponents.org/element/vaadin/vaadin-select)
|
|
4
|
-
[](https://travis-ci.org/vaadin/vaadin-select)
|
|
5
|
-
[](https://coveralls.io/github/vaadin/vaadin-select?branch=master)
|
|
6
|
-
[](https://gitter.im/vaadin/web-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
|
1
|
+
# <vaadin-select>
|
|
7
2
|
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
> ⚠️ Starting from Vaadin 20, the source code and issues for this component are migrated to the [`vaadin/web-components`](https://github.com/vaadin/web-components/tree/master/packages/vaadin-select) monorepository.
|
|
4
|
+
> This repository contains the source code and releases of `<vaadin-select>` for the Vaadin versions 10 to 19.
|
|
10
5
|
|
|
11
|
-
|
|
6
|
+
[<vaadin-select>](https://vaadin.com/components/vaadin-select) is a Web Component similar to a native browser select element, part of the [Vaadin components](https://vaadin.com/components).
|
|
12
7
|
|
|
13
|
-
[Live Demo ↗](https://
|
|
8
|
+
[Live Demo ↗](https://vaadin.com/components/vaadin-select/html-examples)
|
|
14
9
|
|
|
|
15
|
-
[API documentation ↗](https://
|
|
10
|
+
[API documentation ↗](https://vaadin.com/components/vaadin-select/html-api)
|
|
16
11
|
|
|
17
|
-
|
|
18
|
-
[
|
|
12
|
+
[](https://www.npmjs.com/package/@vaadin/vaadin-select)
|
|
13
|
+
[](https://www.webcomponents.org/element/vaadin/vaadin-select)
|
|
14
|
+
[](https://vaadin.com/directory/component/vaadinvaadin-select)
|
|
15
|
+
[](https://discord.gg/PHmkCKC)
|
|
19
16
|
|
|
20
17
|
<!--
|
|
21
18
|
```
|
package/package.json
CHANGED
package/src/vaadin-select.js
CHANGED
|
@@ -178,7 +178,7 @@ class SelectElement extends
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
static get version() {
|
|
181
|
-
return '2.4.
|
|
181
|
+
return '2.4.2';
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
static get properties() {
|
|
@@ -562,13 +562,9 @@ class SelectElement extends
|
|
|
562
562
|
this._setPosition();
|
|
563
563
|
window.addEventListener('scroll', this._boundSetPosition, true);
|
|
564
564
|
} else if (wasOpened) {
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
this.focusElement.focus();
|
|
569
|
-
if (this._openedWithFocusRing) {
|
|
570
|
-
this.focusElement.setAttribute('focus-ring', '');
|
|
571
|
-
}
|
|
565
|
+
this.focusElement.focus();
|
|
566
|
+
if (this._openedWithFocusRing) {
|
|
567
|
+
this.focusElement.setAttribute('focus-ring', '');
|
|
572
568
|
}
|
|
573
569
|
this.validate();
|
|
574
570
|
window.removeEventListener('scroll', this._boundSetPosition, true);
|