@vaadin/field-base 24.2.3 → 24.3.0-alpha10

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/field-base",
3
- "version": "24.2.3",
3
+ "version": "24.3.0-alpha10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,14 +32,14 @@
32
32
  "dependencies": {
33
33
  "@open-wc/dedupe-mixin": "^1.3.0",
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/a11y-base": "~24.2.3",
36
- "@vaadin/component-base": "~24.2.3",
37
- "lit": "^2.0.0"
35
+ "@vaadin/a11y-base": "24.3.0-alpha10",
36
+ "@vaadin/component-base": "24.3.0-alpha10",
37
+ "lit": "^3.0.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@esm-bundle/chai": "^4.3.4",
41
- "@vaadin/testing-helpers": "^0.5.0",
41
+ "@vaadin/testing-helpers": "^0.6.0",
42
42
  "sinon": "^13.0.2"
43
43
  },
44
- "gitHead": "72e557e765e72559e9c6a525e257d185ad186dc5"
44
+ "gitHead": "0271523d93fe5df0425ff64206886614f3c6f401"
45
45
  }
@@ -103,7 +103,7 @@ export const ClearButtonMixin = (superclass) =>
103
103
  * @protected
104
104
  */
105
105
  _onClearAction() {
106
- this.clear();
106
+ this._inputElementValue = '';
107
107
  // Note, according to the HTML spec, the native change event isn't composed
108
108
  // while the input event is composed.
109
109
  this.inputElement.dispatchEvent(new Event('input', { bubbles: true, composed: true }));