@vaadin/list-box 25.3.0-alpha7 → 25.3.0-dev.1fa5a51482
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/custom-elements.json +7 -0
- package/package.json +10 -10
- package/src/vaadin-list-box.js +1 -0
- package/web-types.json +2 -4
- package/web-types.lit.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
"name": "MultiSelectListMixin",
|
|
197
197
|
"module": "src/vaadin-multi-select-list-mixin.js"
|
|
198
198
|
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"type": {
|
|
202
|
+
"text": "string"
|
|
203
|
+
},
|
|
204
|
+
"description": "The theme variants to apply to the component.",
|
|
205
|
+
"name": "theme"
|
|
199
206
|
}
|
|
200
207
|
],
|
|
201
208
|
"mixins": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/list-box",
|
|
3
|
-
"version": "25.3.0-
|
|
3
|
+
"version": "25.3.0-dev.1fa5a51482",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.3.0-
|
|
39
|
-
"@vaadin/component-base": "25.3.0-
|
|
40
|
-
"@vaadin/item": "25.3.0-
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "25.3.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.3.0-dev.1fa5a51482",
|
|
39
|
+
"@vaadin/component-base": "25.3.0-dev.1fa5a51482",
|
|
40
|
+
"@vaadin/item": "25.3.0-dev.1fa5a51482",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "25.3.0-dev.1fa5a51482",
|
|
42
42
|
"lit": "^3.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/aura": "25.3.0-
|
|
46
|
-
"@vaadin/chai-plugins": "25.3.0-
|
|
47
|
-
"@vaadin/test-runner-commands": "25.3.0-
|
|
45
|
+
"@vaadin/aura": "25.3.0-dev.1fa5a51482",
|
|
46
|
+
"@vaadin/chai-plugins": "25.3.0-dev.1fa5a51482",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.3.0-dev.1fa5a51482",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "25.3.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.3.0-dev.1fa5a51482",
|
|
50
50
|
"sinon": "^22.0.0"
|
|
51
51
|
},
|
|
52
52
|
"customElements": "custom-elements.json",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "1cd5964b758ffbce3ddb6248a1997f55f8e0ebf6"
|
|
58
58
|
}
|
package/src/vaadin-list-box.js
CHANGED
|
@@ -45,6 +45,7 @@ import { MultiSelectListMixin } from './vaadin-multi-select-list-mixin.js';
|
|
|
45
45
|
* @fires {CustomEvent} selected-changed - Fired when the `selected` property changes. Not fired in multiple selection mode.
|
|
46
46
|
* @fires {CustomEvent} selected-values-changed - Fired when the `selectedValues` property changes. Not fired in single selection mode.
|
|
47
47
|
*
|
|
48
|
+
* @attr {string} theme - The theme variants to apply to the component.
|
|
48
49
|
* @customElement vaadin-list-box
|
|
49
50
|
* @extends HTMLElement
|
|
50
51
|
*/
|
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": "25.3.0-
|
|
4
|
+
"version": "25.3.0-dev.1fa5a51482",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -42,9 +42,7 @@
|
|
|
42
42
|
"description": "The theme variants to apply to the component.",
|
|
43
43
|
"value": {
|
|
44
44
|
"type": [
|
|
45
|
-
"string"
|
|
46
|
-
"null",
|
|
47
|
-
"undefined"
|
|
45
|
+
"string"
|
|
48
46
|
]
|
|
49
47
|
}
|
|
50
48
|
}
|
package/web-types.lit.json
CHANGED