@vaadin/field-base 24.5.0-rc2 → 24.6.0-alpha1

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.5.0-rc2",
3
+ "version": "24.6.0-alpha1",
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.5.0-rc2",
36
- "@vaadin/component-base": "24.5.0-rc2",
35
+ "@vaadin/a11y-base": "24.6.0-alpha1",
36
+ "@vaadin/component-base": "24.6.0-alpha1",
37
37
  "lit": "^3.0.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@vaadin/chai-plugins": "24.5.0-rc2",
40
+ "@vaadin/chai-plugins": "24.6.0-alpha1",
41
41
  "@vaadin/testing-helpers": "^1.0.0",
42
42
  "sinon": "^18.0.0"
43
43
  },
44
- "gitHead": "be5bf40aec33761c6defdb5b3093c7b6dd5d97fd"
44
+ "gitHead": "ae1fb0e6e7ce925999051c6cc62ba8476264c63f"
45
45
  }
@@ -128,30 +128,6 @@ export const InputControlMixin = (superclass) =>
128
128
  }
129
129
  }
130
130
 
131
- /**
132
- * Override an event listener inherited from `InputMixin`
133
- * to capture native `change` event and make sure that
134
- * a new one is dispatched after validation runs.
135
- * @param {Event} event
136
- * @protected
137
- * @override
138
- */
139
- _onChange(event) {
140
- event.stopPropagation();
141
-
142
- this.validate();
143
-
144
- this.dispatchEvent(
145
- new CustomEvent('change', {
146
- detail: {
147
- sourceEvent: event,
148
- },
149
- bubbles: event.bubbles,
150
- cancelable: event.cancelable,
151
- }),
152
- );
153
- }
154
-
155
131
  /**
156
132
  * Override a method from `InputMixin`.
157
133
  * @param {!HTMLElement} input