@vaadin/list-box 24.2.0-alpha8 → 24.2.0-beta1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/list-box",
3
- "version": "24.2.0-alpha8",
3
+ "version": "24.2.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,21 +37,21 @@
37
37
  "dependencies": {
38
38
  "@open-wc/dedupe-mixin": "^1.3.0",
39
39
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/a11y-base": "24.2.0-alpha8",
41
- "@vaadin/component-base": "24.2.0-alpha8",
42
- "@vaadin/item": "24.2.0-alpha8",
43
- "@vaadin/vaadin-lumo-styles": "24.2.0-alpha8",
44
- "@vaadin/vaadin-material-styles": "24.2.0-alpha8",
45
- "@vaadin/vaadin-themable-mixin": "24.2.0-alpha8"
40
+ "@vaadin/a11y-base": "24.2.0-beta1",
41
+ "@vaadin/component-base": "24.2.0-beta1",
42
+ "@vaadin/item": "24.2.0-beta1",
43
+ "@vaadin/vaadin-lumo-styles": "24.2.0-beta1",
44
+ "@vaadin/vaadin-material-styles": "24.2.0-beta1",
45
+ "@vaadin/vaadin-themable-mixin": "24.2.0-beta1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
- "@vaadin/testing-helpers": "^0.4.3",
49
+ "@vaadin/testing-helpers": "^0.5.0",
50
50
  "sinon": "^13.0.2"
51
51
  },
52
52
  "web-types": [
53
53
  "web-types.json",
54
54
  "web-types.lit.json"
55
55
  ],
56
- "gitHead": "2c024e8fd462d178430418f76a61f498fb549998"
56
+ "gitHead": "67c8eef57d1c59e7476e29adaf003cf4548878f2"
57
57
  }
@@ -5,6 +5,7 @@
5
5
  */
6
6
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
7
7
  import { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
8
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
9
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
9
10
  import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js';
10
11
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
@@ -36,6 +37,7 @@ import { MultiSelectListMixin } from './vaadin-multi-select-list-mixin.js';
36
37
  * @fires {CustomEvent} selected-changed - Fired when the `selected` property changes.
37
38
  * @fires {CustomEvent} selected-values-changed - Fired when the `selectedValues` property changes.
38
39
  *
40
+ * @customElement
39
41
  * @extends HTMLElement
40
42
  * @mixes MultiSelectListMixin
41
43
  * @mixes ThemableMixin
@@ -125,6 +127,6 @@ class ListBox extends ElementMixin(MultiSelectListMixin(ThemableMixin(Controller
125
127
  }
126
128
  }
127
129
 
128
- customElements.define(ListBox.is, ListBox);
130
+ defineCustomElement(ListBox);
129
131
 
130
132
  export { ListBox };
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/list-box",
4
- "version": "24.2.0-alpha8",
4
+ "version": "24.2.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/list-box",
4
- "version": "24.2.0-alpha8",
4
+ "version": "24.2.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {