@vaadin/vaadin-select 22.0.0-alpha5 → 22.0.0-alpha9

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/package.json CHANGED
@@ -1,10 +1,29 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-select",
3
- "version": "22.0.0-alpha5",
3
+ "version": "22.0.0-alpha9",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
4
7
  "description": "vaadin-select",
8
+ "license": "Apache-2.0",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/vaadin/web-components.git",
12
+ "directory": "packages/vaadin-select"
13
+ },
14
+ "author": "Vaadin Ltd",
15
+ "homepage": "https://vaadin.com/components",
16
+ "bugs": {
17
+ "url": "https://github.com/vaadin/vaadin-select/issues"
18
+ },
5
19
  "main": "vaadin-select.js",
6
20
  "module": "vaadin-select.js",
7
- "repository": "vaadin/vaadin-select",
21
+ "files": [
22
+ "src",
23
+ "theme",
24
+ "vaadin-*.d.ts",
25
+ "vaadin-*.js"
26
+ ],
8
27
  "keywords": [
9
28
  "Vaadin",
10
29
  "vaadin-select",
@@ -12,23 +31,8 @@
12
31
  "web-component",
13
32
  "polymer"
14
33
  ],
15
- "author": "Vaadin Ltd",
16
- "license": "Apache-2.0",
17
- "bugs": {
18
- "url": "https://github.com/vaadin/vaadin-select/issues"
19
- },
20
- "homepage": "https://vaadin.com/components",
21
- "files": [
22
- "vaadin-*.d.ts",
23
- "vaadin-*.js",
24
- "src",
25
- "theme"
26
- ],
27
34
  "dependencies": {
28
- "@vaadin/select": "^22.0.0-alpha5"
29
- },
30
- "publishConfig": {
31
- "access": "public"
35
+ "@vaadin/select": "22.0.0-alpha9"
32
36
  },
33
- "gitHead": "012f658db6f81375be8889f63ee15e3f660fe9ec"
37
+ "gitHead": "6e8c899dc65918f97e3c0acb2076122c4b2ef274"
34
38
  }
@@ -3,4 +3,16 @@
3
3
  * Copyright (c) 2021 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';
7
+
8
+ /**
9
+ * @deprecated Import `Select` from `@vaadin/select` instead.
10
+ */
11
+ export type SelectElement = Select;
12
+
13
+ /**
14
+ * @deprecated Import `Select` from `@vaadin/select` instead.
15
+ */
16
+ export const SelectElement: typeof Select;
17
+
6
18
  export * from '@vaadin/select/src/vaadin-select.js';
@@ -3,4 +3,11 @@
3
3
  * Copyright (c) 2021 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';
7
+
8
+ /**
9
+ * @deprecated Import `Select` from `@vaadin/select` instead.
10
+ */
11
+ export const SelectElement = Select;
12
+
6
13
  export * from '@vaadin/select/src/vaadin-select.js';
@@ -1,2 +1 @@
1
1
  export * from './src/vaadin-select.js';
2
- export * from '@vaadin/select/src/interfaces';