@vaadin/vaadin-select 23.2.0-dev.8a7678b70 → 23.2.1
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 +2 -2
- package/package.json +4 -4
- package/src/vaadin-select.d.ts +1 -1
- package/src/vaadin-select.js +2 -0
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
A web component for selecting a single value from a list of options presented in an overlay.
|
|
7
7
|
|
|
8
|
-
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/
|
|
8
|
+
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/select)
|
|
9
9
|
|
|
10
10
|
## Contributing
|
|
11
11
|
|
|
12
|
-
Read the [contributing guide](https://vaadin.com/docs/latest/
|
|
12
|
+
Read the [contributing guide](https://vaadin.com/docs/latest/contributing/overview) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
|
|
13
13
|
|
|
14
14
|
## License
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-select",
|
|
3
|
-
"version": "23.2.
|
|
3
|
+
"version": "23.2.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "Vaadin Ltd",
|
|
15
15
|
"homepage": "https://vaadin.com/components",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/vaadin/
|
|
17
|
+
"url": "https://github.com/vaadin/web-components/issues"
|
|
18
18
|
},
|
|
19
19
|
"main": "vaadin-select.js",
|
|
20
20
|
"module": "vaadin-select.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"polymer"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@vaadin/select": "23.2.
|
|
36
|
+
"@vaadin/select": "~23.2.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a6c314f6927bfd3309fc735eae6c6dc72ab8367a"
|
|
39
39
|
}
|
package/src/vaadin-select.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import { Select } from '@vaadin/select/src/vaadin-select.js';
|
|
6
|
+
import type { Select } from '@vaadin/select/src/vaadin-select.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @deprecated Import `Select` from `@vaadin/select` instead.
|
package/src/vaadin-select.js
CHANGED
|
@@ -11,3 +11,5 @@ import { Select } from '@vaadin/select/src/vaadin-select.js';
|
|
|
11
11
|
export const SelectElement = Select;
|
|
12
12
|
|
|
13
13
|
export * from '@vaadin/select/src/vaadin-select.js';
|
|
14
|
+
|
|
15
|
+
console.warn('WARNING: Since Vaadin 23.2, "@vaadin/vaadin-select" is deprecated. Use "@vaadin/select" instead.');
|