@vaadin/input-container 24.2.0-dev.f254716fe → 24.3.0-alpha1
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.
|
|
3
|
+
"version": "24.3.0-alpha1",
|
|
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.
|
|
36
|
-
"@vaadin/vaadin-lumo-styles": "24.
|
|
37
|
-
"@vaadin/vaadin-material-styles": "24.
|
|
38
|
-
"@vaadin/vaadin-themable-mixin": "24.
|
|
35
|
+
"@vaadin/component-base": "24.3.0-alpha1",
|
|
36
|
+
"@vaadin/vaadin-lumo-styles": "24.3.0-alpha1",
|
|
37
|
+
"@vaadin/vaadin-material-styles": "24.3.0-alpha1",
|
|
38
|
+
"@vaadin/vaadin-themable-mixin": "24.3.0-alpha1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@esm-bundle/chai": "^4.3.4",
|
|
42
|
-
"@vaadin/icon": "24.
|
|
43
|
-
"@vaadin/icons": "24.
|
|
44
|
-
"@vaadin/testing-helpers": "^0.
|
|
42
|
+
"@vaadin/icon": "24.3.0-alpha1",
|
|
43
|
+
"@vaadin/icons": "24.3.0-alpha1",
|
|
44
|
+
"@vaadin/testing-helpers": "^0.5.0",
|
|
45
45
|
"sinon": "^13.0.2"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "9ca6f3ca220a777e8eea181a1f5717e39a732240"
|
|
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
|
-
|
|
148
|
+
defineCustomElement(InputContainer);
|