@vaadin/field-base 24.6.0-beta1 → 24.7.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.6.0-beta1",
3
+ "version": "24.7.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.6.0-beta1",
36
- "@vaadin/component-base": "24.6.0-beta1",
35
+ "@vaadin/a11y-base": "24.7.0-alpha1",
36
+ "@vaadin/component-base": "24.7.0-alpha1",
37
37
  "lit": "^3.0.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@vaadin/chai-plugins": "24.6.0-beta1",
40
+ "@vaadin/chai-plugins": "24.7.0-alpha1",
41
41
  "@vaadin/testing-helpers": "^1.0.0",
42
42
  "sinon": "^18.0.0"
43
43
  },
44
- "gitHead": "ab28efb0dcf2cd1ef72100e2e8f32232fa49aacc"
44
+ "gitHead": "04be941c9a7b659871c97f31b9cc3ffd7528087b"
45
45
  }
@@ -30,6 +30,7 @@ export const CheckedMixin = dedupingMixin(
30
30
  value: false,
31
31
  notify: true,
32
32
  reflectToAttribute: true,
33
+ sync: true,
33
34
  },
34
35
  };
35
36
  }
@@ -115,6 +115,8 @@ export const InputMixin = dedupingMixin(
115
115
  if (this.inputElement) {
116
116
  this.inputElement[this._inputElementValueProperty] = value;
117
117
  }
118
+
119
+ this._hasInputValue = value && value.length > 0;
118
120
  }
119
121
 
120
122
  /**