@vaadin/field-base 24.1.0-alpha1 → 24.1.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 +4 -4
- package/src/input-mixin.js +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/field-base",
|
|
3
|
-
"version": "24.1.0-
|
|
3
|
+
"version": "24.1.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/a11y-base": "24.1.0-
|
|
36
|
-
"@vaadin/component-base": "24.1.0-
|
|
35
|
+
"@vaadin/a11y-base": "24.1.0-alpha2",
|
|
36
|
+
"@vaadin/component-base": "24.1.0-alpha2",
|
|
37
37
|
"lit": "^2.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"@vaadin/testing-helpers": "^0.4.0",
|
|
42
42
|
"sinon": "^13.0.2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "9e3ee2557109030f2aba59e17a84e4e121d699c0"
|
|
45
45
|
}
|
package/src/input-mixin.js
CHANGED
|
@@ -54,10 +54,7 @@ export const InputMixin = dedupingMixin(
|
|
|
54
54
|
},
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
|
-
* Whether the input element has
|
|
58
|
-
*
|
|
59
|
-
* Note, the property indicates true only if the input has been entered by the user.
|
|
60
|
-
* In the case of programmatic changes, the property must be reset to false.
|
|
57
|
+
* Whether the input element has a non-empty value.
|
|
61
58
|
*
|
|
62
59
|
* @protected
|
|
63
60
|
*/
|