@vaadin/multi-select-combo-box 24.3.0-alpha1 → 24.3.0-alpha2

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.3.0-alpha1",
3
+ "version": "24.3.0-alpha2",
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.3.0-alpha1",
41
- "@vaadin/combo-box": "24.3.0-alpha1",
42
- "@vaadin/component-base": "24.3.0-alpha1",
43
- "@vaadin/field-base": "24.3.0-alpha1",
44
- "@vaadin/input-container": "24.3.0-alpha1",
45
- "@vaadin/item": "24.3.0-alpha1",
46
- "@vaadin/lit-renderer": "24.3.0-alpha1",
47
- "@vaadin/overlay": "24.3.0-alpha1",
48
- "@vaadin/vaadin-lumo-styles": "24.3.0-alpha1",
49
- "@vaadin/vaadin-material-styles": "24.3.0-alpha1",
50
- "@vaadin/vaadin-themable-mixin": "24.3.0-alpha1"
40
+ "@vaadin/a11y-base": "24.3.0-alpha2",
41
+ "@vaadin/combo-box": "24.3.0-alpha2",
42
+ "@vaadin/component-base": "24.3.0-alpha2",
43
+ "@vaadin/field-base": "24.3.0-alpha2",
44
+ "@vaadin/input-container": "24.3.0-alpha2",
45
+ "@vaadin/item": "24.3.0-alpha2",
46
+ "@vaadin/lit-renderer": "24.3.0-alpha2",
47
+ "@vaadin/overlay": "24.3.0-alpha2",
48
+ "@vaadin/vaadin-lumo-styles": "24.3.0-alpha2",
49
+ "@vaadin/vaadin-material-styles": "24.3.0-alpha2",
50
+ "@vaadin/vaadin-themable-mixin": "24.3.0-alpha2"
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": "9ca6f3ca220a777e8eea181a1f5717e39a732240"
62
+ "gitHead": "0fd437292fa2a2f65e29b424d2456909ad2d684b"
63
63
  }
@@ -53,11 +53,6 @@ export type MultiSelectComboBoxChangeEvent<TItem> = Event & {
53
53
  */
54
54
  export type MultiSelectComboBoxCustomValueSetEvent = CustomEvent<string>;
55
55
 
56
- /**
57
- * Fired when the `dirty` property changes.
58
- */
59
- export type MultiSelectComboBoxDirtyChangedEvent = CustomEvent<{ value: boolean }>;
60
-
61
56
  /**
62
57
  * Fired when the `filter` property changes.
63
58
  */
@@ -88,8 +83,6 @@ export interface MultiSelectComboBoxEventMap<TItem> extends HTMLElementEventMap
88
83
 
89
84
  'custom-value-set': MultiSelectComboBoxCustomValueSetEvent;
90
85
 
91
- 'dirty-changed': MultiSelectComboBoxDirtyChangedEvent;
92
-
93
86
  'filter-changed': MultiSelectComboBoxFilterChangedEvent;
94
87
 
95
88
  'invalid-changed': MultiSelectComboBoxInvalidChangedEvent;
@@ -171,7 +164,6 @@ export interface MultiSelectComboBoxEventMap<TItem> extends HTMLElementEventMap
171
164
  *
172
165
  * @fires {Event} change - Fired when the user commits a value change.
173
166
  * @fires {CustomEvent} custom-value-set - Fired when the user sets a custom value.
174
- * @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
175
167
  * @fires {CustomEvent} filter-changed - Fired when the `filter` property changes.
176
168
  * @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
177
169
  * @fires {CustomEvent} opened-changed - Fired when the `opened` property changes.
@@ -121,7 +121,6 @@ registerStyles('vaadin-multi-select-combo-box', [inputFieldShared, multiSelectCo
121
121
  *
122
122
  * @fires {Event} change - Fired when the user commits a value change.
123
123
  * @fires {CustomEvent} custom-value-set - Fired when the user sets a custom value.
124
- * @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
125
124
  * @fires {CustomEvent} filter-changed - Fired when the `filter` property changes.
126
125
  * @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
127
126
  * @fires {CustomEvent} opened-changed - Fired when the `opened` property changes.
@@ -817,7 +816,6 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
817
816
 
818
817
  /** @private */
819
818
  __updateSelection(selectedItems) {
820
- this.dirty = true;
821
819
  this.selectedItems = selectedItems;
822
820
 
823
821
  this.validate();
@@ -3,6 +3,7 @@
3
3
  * Copyright (c) 2021 - 2023 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
+ import '@vaadin/input-container/theme/lumo/vaadin-input-container-styles.js';
6
7
  import '@vaadin/vaadin-lumo-styles/color.js';
7
8
  import '@vaadin/vaadin-lumo-styles/font-icons.js';
8
9
  import '@vaadin/vaadin-lumo-styles/style.js';
@@ -3,7 +3,6 @@
3
3
  * Copyright (c) 2021 - 2023 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import '@vaadin/input-container/theme/lumo/vaadin-input-container.js';
7
6
  import '@vaadin/overlay/theme/lumo/vaadin-overlay.js';
8
7
  import './vaadin-multi-select-combo-box-chip-styles.js';
9
8
  import './vaadin-multi-select-combo-box-styles.js';
@@ -3,6 +3,7 @@
3
3
  * Copyright (c) 2021 - 2023 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
+ import '@vaadin/input-container/theme/material/vaadin-input-container-styles.js';
6
7
  import '@vaadin/vaadin-material-styles/color.js';
7
8
  import '@vaadin/vaadin-material-styles/font-icons.js';
8
9
  import '@vaadin/vaadin-material-styles/typography.js';
@@ -3,7 +3,6 @@
3
3
  * Copyright (c) 2021 - 2023 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
- import '@vaadin/input-container/theme/material/vaadin-input-container.js';
7
6
  import '@vaadin/overlay/theme/material/vaadin-overlay.js';
8
7
  import './vaadin-multi-select-combo-box-chip-styles.js';
9
8
  import './vaadin-multi-select-combo-box-styles.js';
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.3.0-alpha1",
4
+ "version": "24.3.0-alpha2",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -120,17 +120,6 @@
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
- },
134
123
  {
135
124
  "name": "clear-button-visible",
136
125
  "description": "Set to true to display the clear icon which clears the input.",
@@ -442,17 +431,6 @@
442
431
  ]
443
432
  }
444
433
  },
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
- },
456
434
  {
457
435
  "name": "clearButtonVisible",
458
436
  "description": "Set to true to display the clear icon which clears the input.",
@@ -744,10 +722,6 @@
744
722
  {
745
723
  "name": "invalid-changed",
746
724
  "description": "Fired when the `invalid` property changes."
747
- },
748
- {
749
- "name": "dirty-changed",
750
- "description": "Fired when the `dirty` property changes."
751
725
  }
752
726
  ]
753
727
  }
@@ -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.3.0-alpha1",
4
+ "version": "24.3.0-alpha2",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -47,13 +47,6 @@
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
- },
57
50
  {
58
51
  "name": "?clearButtonVisible",
59
52
  "description": "Set to true to display the clear icon which clears the input.",
@@ -305,13 +298,6 @@
305
298
  "value": {
306
299
  "kind": "expression"
307
300
  }
308
- },
309
- {
310
- "name": "@dirty-changed",
311
- "description": "Fired when the `dirty` property changes.",
312
- "value": {
313
- "kind": "expression"
314
- }
315
301
  }
316
302
  ]
317
303
  }