@vaadin/multi-select-combo-box 23.1.4 → 23.1.7
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/README.md +7 -3
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -4,15 +4,19 @@
|
|
|
4
4
|
|
|
5
5
|
A web component that wraps `<vaadin-combo-box>` and allows selecting multiple items.
|
|
6
6
|
|
|
7
|
+
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/multi-select-combo-box)
|
|
8
|
+
|
|
7
9
|
```html
|
|
8
|
-
<vaadin-multi-select-combo-box
|
|
10
|
+
<vaadin-multi-select-combo-box style="width: 300px"></vaadin-multi-select-combo-box>
|
|
9
11
|
<script>
|
|
10
|
-
const comboBox = document.querySelector('
|
|
12
|
+
const comboBox = document.querySelector('vaadin-multi-select-combo-box');
|
|
11
13
|
comboBox.items = ['apple', 'banana', 'lemon', 'orange'];
|
|
12
|
-
comboBox.selectedItems = ['
|
|
14
|
+
comboBox.selectedItems = ['apple', 'banana'];
|
|
13
15
|
</script>
|
|
14
16
|
```
|
|
15
17
|
|
|
18
|
+
[<img src="https://raw.githubusercontent.com/vaadin/web-components/master/packages/multi-select-combo-box/screenshot.png" width="300" alt="Screenshot of vaadin-multi-select-combo-box">](https://vaadin.com/docs/latest/components/multi-select-combo-box)
|
|
19
|
+
|
|
16
20
|
## Installation
|
|
17
21
|
|
|
18
22
|
Install the component:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@polymer/polymer": "^3.0.0",
|
|
36
|
-
"@vaadin/combo-box": "
|
|
37
|
-
"@vaadin/component-base": "
|
|
38
|
-
"@vaadin/field-base": "
|
|
39
|
-
"@vaadin/input-container": "
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
41
|
-
"@vaadin/vaadin-material-styles": "
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
36
|
+
"@vaadin/combo-box": "~23.1.7",
|
|
37
|
+
"@vaadin/component-base": "~23.1.7",
|
|
38
|
+
"@vaadin/field-base": "~23.1.7",
|
|
39
|
+
"@vaadin/input-container": "~23.1.7",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "~23.1.7",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "~23.1.7",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "~23.1.7"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@esm-bundle/chai": "^4.3.4",
|
|
46
46
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
47
47
|
"sinon": "^13.0.2"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "879a4e5e6a245809bafa0ef2b5cdb24aef72565d"
|
|
50
50
|
}
|