@vaadin/multi-select-combo-box 25.1.0-alpha6 → 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.
- package/custom-elements.json +1336 -0
- package/package.json +17 -15
- package/src/vaadin-multi-select-combo-box-chip.js +1 -1
- package/src/vaadin-multi-select-combo-box-container.js +1 -1
- package/src/vaadin-multi-select-combo-box-item.js +3 -2
- package/src/vaadin-multi-select-combo-box-overlay.js +1 -1
- package/src/vaadin-multi-select-combo-box-scroller.js +1 -1
- package/src/vaadin-multi-select-combo-box.js +1 -1
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"src",
|
|
26
26
|
"vaadin-*.d.ts",
|
|
27
27
|
"vaadin-*.js",
|
|
28
|
+
"custom-elements.json",
|
|
28
29
|
"web-types.json",
|
|
29
30
|
"web-types.lit.json"
|
|
30
31
|
],
|
|
@@ -36,28 +37,29 @@
|
|
|
36
37
|
],
|
|
37
38
|
"dependencies": {
|
|
38
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
|
-
"@vaadin/a11y-base": "25.1.0-
|
|
40
|
-
"@vaadin/combo-box": "25.1.0-
|
|
41
|
-
"@vaadin/component-base": "25.1.0-
|
|
42
|
-
"@vaadin/field-base": "25.1.0-
|
|
43
|
-
"@vaadin/input-container": "25.1.0-
|
|
44
|
-
"@vaadin/item": "25.1.0-
|
|
45
|
-
"@vaadin/lit-renderer": "25.1.0-
|
|
46
|
-
"@vaadin/overlay": "25.1.0-
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
40
|
+
"@vaadin/a11y-base": "25.1.0-alpha7",
|
|
41
|
+
"@vaadin/combo-box": "25.1.0-alpha7",
|
|
42
|
+
"@vaadin/component-base": "25.1.0-alpha7",
|
|
43
|
+
"@vaadin/field-base": "25.1.0-alpha7",
|
|
44
|
+
"@vaadin/input-container": "25.1.0-alpha7",
|
|
45
|
+
"@vaadin/item": "25.1.0-alpha7",
|
|
46
|
+
"@vaadin/lit-renderer": "25.1.0-alpha7",
|
|
47
|
+
"@vaadin/overlay": "25.1.0-alpha7",
|
|
48
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-alpha7",
|
|
48
49
|
"lit": "^3.0.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
|
-
"@vaadin/aura": "25.1.0-
|
|
52
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
53
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
52
|
+
"@vaadin/aura": "25.1.0-alpha7",
|
|
53
|
+
"@vaadin/chai-plugins": "25.1.0-alpha7",
|
|
54
|
+
"@vaadin/test-runner-commands": "25.1.0-alpha7",
|
|
54
55
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
55
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
56
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-alpha7",
|
|
56
57
|
"sinon": "^21.0.0"
|
|
57
58
|
},
|
|
59
|
+
"customElements": "custom-elements.json",
|
|
58
60
|
"web-types": [
|
|
59
61
|
"web-types.json",
|
|
60
62
|
"web-types.lit.json"
|
|
61
63
|
],
|
|
62
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "98c586125f769c8fefd307536965293668fda81d"
|
|
63
65
|
}
|
|
@@ -24,7 +24,7 @@ import { multiSelectComboBoxChipStyles } from './styles/vaadin-multi-select-comb
|
|
|
24
24
|
*
|
|
25
25
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
26
26
|
*
|
|
27
|
-
* @customElement
|
|
27
|
+
* @customElement vaadin-multi-select-combo-box-chip
|
|
28
28
|
* @extends HTMLElement
|
|
29
29
|
* @private
|
|
30
30
|
*/
|
|
@@ -10,7 +10,7 @@ import { InputContainer } from '@vaadin/input-container/src/vaadin-input-contain
|
|
|
10
10
|
/**
|
|
11
11
|
* An element used internally by `<vaadin-multi-select-combo-box>`. Not intended to be used separately.
|
|
12
12
|
*
|
|
13
|
-
* @customElement
|
|
13
|
+
* @customElement vaadin-multi-select-combo-box-container
|
|
14
14
|
* @extends InputContainer
|
|
15
15
|
* @private
|
|
16
16
|
*/
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { html, LitElement } from 'lit';
|
|
7
|
+
import { comboBoxItemStyles } from '@vaadin/combo-box/src/styles/vaadin-combo-box-item-base-styles.js';
|
|
7
8
|
import { ComboBoxItemMixin } from '@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js';
|
|
8
9
|
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
9
10
|
import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js';
|
|
@@ -33,7 +34,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
|
|
|
33
34
|
*
|
|
34
35
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
35
36
|
*
|
|
36
|
-
* @customElement
|
|
37
|
+
* @customElement vaadin-multi-select-combo-box-item
|
|
37
38
|
* @mixes ComboBoxItemMixin
|
|
38
39
|
* @mixes ThemableMixin
|
|
39
40
|
* @mixes DirMixin
|
|
@@ -47,7 +48,7 @@ export class MultiSelectComboBoxItem extends ComboBoxItemMixin(
|
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
static get styles() {
|
|
50
|
-
return itemStyles;
|
|
51
|
+
return [itemStyles, comboBoxItemStyles];
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
/** @protected */
|
|
@@ -17,7 +17,7 @@ import { multiSelectComboBoxOverlayStyles } from './styles/vaadin-multi-select-c
|
|
|
17
17
|
/**
|
|
18
18
|
* An element used internally by `<vaadin-multi-select-combo-box>`. Not intended to be used separately.
|
|
19
19
|
*
|
|
20
|
-
* @customElement
|
|
20
|
+
* @customElement vaadin-multi-select-combo-box-overlay
|
|
21
21
|
* @extends HTMLElement
|
|
22
22
|
* @mixes ComboBoxOverlayMixin
|
|
23
23
|
* @mixes DirMixin
|
|
@@ -13,7 +13,7 @@ import { multiSelectComboBoxScrollerStyles } from './styles/vaadin-multi-select-
|
|
|
13
13
|
/**
|
|
14
14
|
* An element used internally by `<vaadin-multi-select-combo-box>`. Not intended to be used separately.
|
|
15
15
|
*
|
|
16
|
-
* @customElement
|
|
16
|
+
* @customElement vaadin-multi-select-combo-box-scroller
|
|
17
17
|
* @extends HTMLElement
|
|
18
18
|
* @mixes ComboBoxScrollerMixin
|
|
19
19
|
* @private
|
|
@@ -96,7 +96,7 @@ import { MultiSelectComboBoxMixin } from './vaadin-multi-select-combo-box-mixin.
|
|
|
96
96
|
* @fires {CustomEvent} selected-items-changed - Fired when the `selectedItems` property changes.
|
|
97
97
|
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
98
98
|
*
|
|
99
|
-
* @customElement
|
|
99
|
+
* @customElement vaadin-multi-select-combo-box
|
|
100
100
|
* @extends HTMLElement
|
|
101
101
|
* @mixes ElementMixin
|
|
102
102
|
* @mixes ThemableMixin
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED