@vaadin/multi-select-combo-box 24.2.0-alpha7 → 24.2.0-alpha8
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/multi-select-combo-box",
|
|
3
|
-
"version": "24.2.0-
|
|
3
|
+
"version": "24.2.0-alpha8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/a11y-base": "24.2.0-
|
|
41
|
-
"@vaadin/combo-box": "24.2.0-
|
|
42
|
-
"@vaadin/component-base": "24.2.0-
|
|
43
|
-
"@vaadin/field-base": "24.2.0-
|
|
44
|
-
"@vaadin/input-container": "24.2.0-
|
|
45
|
-
"@vaadin/item": "24.2.0-
|
|
46
|
-
"@vaadin/lit-renderer": "24.2.0-
|
|
47
|
-
"@vaadin/overlay": "24.2.0-
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "24.2.0-
|
|
49
|
-
"@vaadin/vaadin-material-styles": "24.2.0-
|
|
50
|
-
"@vaadin/vaadin-themable-mixin": "24.2.0-
|
|
40
|
+
"@vaadin/a11y-base": "24.2.0-alpha8",
|
|
41
|
+
"@vaadin/combo-box": "24.2.0-alpha8",
|
|
42
|
+
"@vaadin/component-base": "24.2.0-alpha8",
|
|
43
|
+
"@vaadin/field-base": "24.2.0-alpha8",
|
|
44
|
+
"@vaadin/input-container": "24.2.0-alpha8",
|
|
45
|
+
"@vaadin/item": "24.2.0-alpha8",
|
|
46
|
+
"@vaadin/lit-renderer": "24.2.0-alpha8",
|
|
47
|
+
"@vaadin/overlay": "24.2.0-alpha8",
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "24.2.0-alpha8",
|
|
49
|
+
"@vaadin/vaadin-material-styles": "24.2.0-alpha8",
|
|
50
|
+
"@vaadin/vaadin-themable-mixin": "24.2.0-alpha8"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"web-types.json",
|
|
60
60
|
"web-types.lit.json"
|
|
61
61
|
],
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "2c024e8fd462d178430418f76a61f498fb549998"
|
|
63
63
|
}
|
|
@@ -159,6 +159,7 @@ export interface MultiSelectComboBoxEventMap<TItem> extends HTMLElementEventMap
|
|
|
159
159
|
* @fires {CustomEvent} custom-value-set - Fired when the user sets a custom value.
|
|
160
160
|
* @fires {CustomEvent} filter-changed - Fired when the `filter` property changes.
|
|
161
161
|
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
|
|
162
|
+
* @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
|
|
162
163
|
* @fires {CustomEvent} selected-items-changed - Fired when the `selectedItems` property changes.
|
|
163
164
|
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
164
165
|
*/
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/multi-select-combo-box",
|
|
4
|
-
"version": "24.2.0-
|
|
4
|
+
"version": "24.2.0-alpha8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -120,6 +120,17 @@
|
|
|
120
120
|
]
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
|
+
{
|
|
124
|
+
"name": "dirty",
|
|
125
|
+
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event. Additionally, the field can be manually\nmarked as dirty by setting the property to `true`.",
|
|
126
|
+
"value": {
|
|
127
|
+
"type": [
|
|
128
|
+
"boolean",
|
|
129
|
+
"null",
|
|
130
|
+
"undefined"
|
|
131
|
+
]
|
|
132
|
+
}
|
|
133
|
+
},
|
|
123
134
|
{
|
|
124
135
|
"name": "clear-button-visible",
|
|
125
136
|
"description": "Set to true to display the clear icon which clears the input.",
|
|
@@ -431,6 +442,17 @@
|
|
|
431
442
|
]
|
|
432
443
|
}
|
|
433
444
|
},
|
|
445
|
+
{
|
|
446
|
+
"name": "dirty",
|
|
447
|
+
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event. Additionally, the field can be manually\nmarked as dirty by setting the property to `true`.",
|
|
448
|
+
"value": {
|
|
449
|
+
"type": [
|
|
450
|
+
"boolean",
|
|
451
|
+
"null",
|
|
452
|
+
"undefined"
|
|
453
|
+
]
|
|
454
|
+
}
|
|
455
|
+
},
|
|
434
456
|
{
|
|
435
457
|
"name": "clearButtonVisible",
|
|
436
458
|
"description": "Set to true to display the clear icon which clears the input.",
|
|
@@ -722,6 +744,10 @@
|
|
|
722
744
|
{
|
|
723
745
|
"name": "invalid-changed",
|
|
724
746
|
"description": "Fired when the `invalid` property changes."
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "dirty-changed",
|
|
750
|
+
"description": "Fired when the `dirty` property changes."
|
|
725
751
|
}
|
|
726
752
|
]
|
|
727
753
|
}
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/multi-select-combo-box",
|
|
4
|
-
"version": "24.2.0-
|
|
4
|
+
"version": "24.2.0-alpha8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -47,6 +47,13 @@
|
|
|
47
47
|
"kind": "expression"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
+
{
|
|
51
|
+
"name": "?dirty",
|
|
52
|
+
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event. Additionally, the field can be manually\nmarked as dirty by setting the property to `true`.",
|
|
53
|
+
"value": {
|
|
54
|
+
"kind": "expression"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
50
57
|
{
|
|
51
58
|
"name": "?clearButtonVisible",
|
|
52
59
|
"description": "Set to true to display the clear icon which clears the input.",
|
|
@@ -298,6 +305,13 @@
|
|
|
298
305
|
"value": {
|
|
299
306
|
"kind": "expression"
|
|
300
307
|
}
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "@dirty-changed",
|
|
311
|
+
"description": "Fired when the `dirty` property changes.",
|
|
312
|
+
"value": {
|
|
313
|
+
"kind": "expression"
|
|
314
|
+
}
|
|
301
315
|
}
|
|
302
316
|
]
|
|
303
317
|
}
|