@vaadin/number-field 24.1.13 → 24.1.14
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 +9 -9
- package/src/vaadin-number-field-mixin.js +12 -6
- package/web-types.json +2 -2
- package/web-types.lit.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/number-field",
|
|
3
|
-
"version": "24.1.
|
|
3
|
+
"version": "24.1.14",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "~24.1.
|
|
42
|
-
"@vaadin/component-base": "~24.1.
|
|
43
|
-
"@vaadin/field-base": "~24.1.
|
|
44
|
-
"@vaadin/input-container": "~24.1.
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "~24.1.
|
|
46
|
-
"@vaadin/vaadin-material-styles": "~24.1.
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "~24.1.
|
|
41
|
+
"@vaadin/a11y-base": "~24.1.14",
|
|
42
|
+
"@vaadin/component-base": "~24.1.14",
|
|
43
|
+
"@vaadin/field-base": "~24.1.14",
|
|
44
|
+
"@vaadin/input-container": "~24.1.14",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "~24.1.14",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "~24.1.14",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "~24.1.14",
|
|
48
48
|
"lit": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "ddff030b439f28a7b7f61ceae706d3dd9564a2b4"
|
|
60
60
|
}
|
|
@@ -136,16 +136,22 @@ export const NumberFieldMixin = (superClass) =>
|
|
|
136
136
|
|
|
137
137
|
/** @protected */
|
|
138
138
|
_onDecreaseButtonTouchend(e) {
|
|
139
|
-
// Cancel the following click and focus events
|
|
140
|
-
|
|
141
|
-
|
|
139
|
+
// Cancel the following click and focus events. If the event is not cancelable,
|
|
140
|
+
// it means scrolling is in progress, therefore we shouldn't update field value.
|
|
141
|
+
if (e.cancelable) {
|
|
142
|
+
e.preventDefault();
|
|
143
|
+
this._decreaseValue();
|
|
144
|
+
}
|
|
142
145
|
}
|
|
143
146
|
|
|
144
147
|
/** @protected */
|
|
145
148
|
_onIncreaseButtonTouchend(e) {
|
|
146
|
-
// Cancel the following click and focus events
|
|
147
|
-
|
|
148
|
-
|
|
149
|
+
// Cancel the following click and focus events. If the event is not cancelable,
|
|
150
|
+
// it means scrolling is in progress, therefore we shouldn't update field value.
|
|
151
|
+
if (e.cancelable) {
|
|
152
|
+
e.preventDefault();
|
|
153
|
+
this._increaseValue();
|
|
154
|
+
}
|
|
149
155
|
}
|
|
150
156
|
|
|
151
157
|
/** @protected */
|
package/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/number-field",
|
|
4
|
-
"version": "24.1.
|
|
4
|
+
"version": "24.1.14",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-number-field",
|
|
11
|
-
"description": "`<vaadin-number-field>` is an input field web component that only accepts numeric input.\n\n```html\n<vaadin-number-field label=\"Balance\"></vaadin-number-field>\n```\n\n### Styling\n\n`<vaadin-number-field>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.1.
|
|
11
|
+
"description": "`<vaadin-number-field>` is an input field web component that only accepts numeric input.\n\n```html\n<vaadin-number-field label=\"Balance\"></vaadin-number-field>\n```\n\n### Styling\n\n`<vaadin-number-field>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.1.14/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n------------------|-------------------------\n`increase-button` | Increase (\"plus\") button\n`decrease-button` | Decrease (\"minus\") button\n\nNote, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "disabled",
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/number-field",
|
|
4
|
-
"version": "24.1.
|
|
4
|
+
"version": "24.1.14",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"elements": [
|
|
17
17
|
{
|
|
18
18
|
"name": "vaadin-number-field",
|
|
19
|
-
"description": "`<vaadin-number-field>` is an input field web component that only accepts numeric input.\n\n```html\n<vaadin-number-field label=\"Balance\"></vaadin-number-field>\n```\n\n### Styling\n\n`<vaadin-number-field>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.1.
|
|
19
|
+
"description": "`<vaadin-number-field>` is an input field web component that only accepts numeric input.\n\n```html\n<vaadin-number-field label=\"Balance\"></vaadin-number-field>\n```\n\n### Styling\n\n`<vaadin-number-field>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/24.1.14/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n------------------|-------------------------\n`increase-button` | Increase (\"plus\") button\n`decrease-button` | Decrease (\"minus\") button\n\nNote, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|