@vaadin/input-container 24.2.0-dev.f254716fe → 24.2.0-rc1

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/input-container",
3
- "version": "24.2.0-dev.f254716fe",
3
+ "version": "24.2.0-rc1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,17 +32,17 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/component-base": "24.2.0-dev.f254716fe",
36
- "@vaadin/vaadin-lumo-styles": "24.2.0-dev.f254716fe",
37
- "@vaadin/vaadin-material-styles": "24.2.0-dev.f254716fe",
38
- "@vaadin/vaadin-themable-mixin": "24.2.0-dev.f254716fe"
35
+ "@vaadin/component-base": "24.2.0-rc1",
36
+ "@vaadin/vaadin-lumo-styles": "24.2.0-rc1",
37
+ "@vaadin/vaadin-material-styles": "24.2.0-rc1",
38
+ "@vaadin/vaadin-themable-mixin": "24.2.0-rc1"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@esm-bundle/chai": "^4.3.4",
42
- "@vaadin/icon": "24.2.0-dev.f254716fe",
43
- "@vaadin/icons": "24.2.0-dev.f254716fe",
44
- "@vaadin/testing-helpers": "^0.4.3",
42
+ "@vaadin/icon": "24.2.0-rc1",
43
+ "@vaadin/icons": "24.2.0-rc1",
44
+ "@vaadin/testing-helpers": "^0.5.0",
45
45
  "sinon": "^13.0.2"
46
46
  },
47
- "gitHead": "da54950b9f8c14c6451ede0d426e16a489c7fb9b"
47
+ "gitHead": "012bef350bbf29865748f4c78338dd17c6f61a74"
48
48
  }
@@ -4,9 +4,16 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { html, PolymerElement } from '@polymer/polymer';
7
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
7
8
  import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
8
9
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
9
10
 
11
+ /**
12
+ * @customElement
13
+ * @extends HTMLElement
14
+ * @mixes ThemableMixin
15
+ * @mixes DirMixin
16
+ */
10
17
  export class InputContainer extends ThemableMixin(DirMixin(PolymerElement)) {
11
18
  static get is() {
12
19
  return 'vaadin-input-container';
@@ -138,4 +145,4 @@ export class InputContainer extends ThemableMixin(DirMixin(PolymerElement)) {
138
145
  }
139
146
  }
140
147
 
141
- customElements.define(InputContainer.is, InputContainer);
148
+ defineCustomElement(InputContainer);