@vaadin/input-container 25.1.0-alpha5 → 25.1.0-alpha7

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.
@@ -0,0 +1,125 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "vaadin-input-container.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "js",
12
+ "name": "*",
13
+ "declaration": {
14
+ "name": "*",
15
+ "module": "src/vaadin-input-container.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/vaadin-input-container.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "class",
26
+ "description": "",
27
+ "name": "InputContainer",
28
+ "members": [
29
+ {
30
+ "kind": "field",
31
+ "name": "disabled",
32
+ "privacy": "public",
33
+ "type": {
34
+ "text": "boolean"
35
+ },
36
+ "description": "If true, the user cannot interact with this element.",
37
+ "attribute": "disabled"
38
+ },
39
+ {
40
+ "kind": "field",
41
+ "name": "invalid",
42
+ "privacy": "public",
43
+ "type": {
44
+ "text": "boolean"
45
+ },
46
+ "description": "Set to true when the element is invalid.",
47
+ "attribute": "invalid"
48
+ },
49
+ {
50
+ "kind": "field",
51
+ "name": "readonly",
52
+ "privacy": "public",
53
+ "type": {
54
+ "text": "boolean"
55
+ },
56
+ "description": "Set to true to make this element read-only.",
57
+ "attribute": "readonly"
58
+ }
59
+ ],
60
+ "attributes": [
61
+ {
62
+ "name": "disabled",
63
+ "type": {
64
+ "text": "boolean"
65
+ },
66
+ "description": "If true, the user cannot interact with this element.",
67
+ "fieldName": "disabled"
68
+ },
69
+ {
70
+ "name": "invalid",
71
+ "type": {
72
+ "text": "boolean"
73
+ },
74
+ "description": "Set to true when the element is invalid.",
75
+ "fieldName": "invalid"
76
+ },
77
+ {
78
+ "name": "readonly",
79
+ "type": {
80
+ "text": "boolean"
81
+ },
82
+ "description": "Set to true to make this element read-only.",
83
+ "fieldName": "readonly"
84
+ }
85
+ ],
86
+ "mixins": [
87
+ {
88
+ "name": "ThemableMixin",
89
+ "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
90
+ },
91
+ {
92
+ "name": "DirMixin",
93
+ "package": "@vaadin/component-base/src/dir-mixin.js"
94
+ },
95
+ {
96
+ "name": "PolylitMixin",
97
+ "package": "@vaadin/component-base/src/polylit-mixin.js"
98
+ },
99
+ {
100
+ "name": "LumoInjectionMixin",
101
+ "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
102
+ }
103
+ ],
104
+ "superclass": {
105
+ "name": "LitElement",
106
+ "package": "lit"
107
+ },
108
+ "tagName": "vaadin-input-container",
109
+ "customElement": true,
110
+ "events": []
111
+ }
112
+ ],
113
+ "exports": [
114
+ {
115
+ "kind": "js",
116
+ "name": "InputContainer",
117
+ "declaration": {
118
+ "name": "InputContainer",
119
+ "module": "src/vaadin-input-container.js"
120
+ }
121
+ }
122
+ ]
123
+ }
124
+ ]
125
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/input-container",
3
- "version": "25.1.0-alpha5",
3
+ "version": "25.1.0-alpha7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -22,7 +22,8 @@
22
22
  "files": [
23
23
  "src",
24
24
  "vaadin-*.d.ts",
25
- "vaadin-*.js"
25
+ "vaadin-*.js",
26
+ "custom-elements.json"
26
27
  ],
27
28
  "keywords": [
28
29
  "Vaadin",
@@ -30,19 +31,20 @@
30
31
  "web-component"
31
32
  ],
32
33
  "dependencies": {
33
- "@vaadin/component-base": "25.1.0-alpha5",
34
- "@vaadin/vaadin-themable-mixin": "25.1.0-alpha5",
34
+ "@vaadin/component-base": "25.1.0-alpha7",
35
+ "@vaadin/vaadin-themable-mixin": "25.1.0-alpha7",
35
36
  "lit": "^3.0.0"
36
37
  },
37
38
  "devDependencies": {
38
- "@vaadin/aura": "25.1.0-alpha5",
39
- "@vaadin/chai-plugins": "25.1.0-alpha5",
40
- "@vaadin/icon": "25.1.0-alpha5",
41
- "@vaadin/icons": "25.1.0-alpha5",
42
- "@vaadin/test-runner-commands": "25.1.0-alpha5",
39
+ "@vaadin/aura": "25.1.0-alpha7",
40
+ "@vaadin/chai-plugins": "25.1.0-alpha7",
41
+ "@vaadin/icon": "25.1.0-alpha7",
42
+ "@vaadin/icons": "25.1.0-alpha7",
43
+ "@vaadin/test-runner-commands": "25.1.0-alpha7",
43
44
  "@vaadin/testing-helpers": "^2.0.0",
44
- "@vaadin/vaadin-lumo-styles": "25.1.0-alpha5",
45
+ "@vaadin/vaadin-lumo-styles": "25.1.0-alpha7",
45
46
  "sinon": "^21.0.0"
46
47
  },
47
- "gitHead": "9681e63d220c9e8d9d7c58cee272e5820b8ced19"
48
+ "customElements": "custom-elements.json",
49
+ "gitHead": "98c586125f769c8fefd307536965293668fda81d"
48
50
  }
@@ -12,7 +12,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
12
12
  import { inputContainerStyles } from './styles/vaadin-input-container-base-styles.js';
13
13
 
14
14
  /**
15
- * @customElement
15
+ * @customElement vaadin-input-container
16
16
  * @extends HTMLElement
17
17
  * @mixes ThemableMixin
18
18
  * @mixes DirMixin