@vaadin/number-field 24.9.4 → 24.9.6
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 +11 -11
- package/src/vaadin-number-field.js +2 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/number-field",
|
|
3
|
-
"version": "24.9.
|
|
3
|
+
"version": "24.9.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/a11y-base": "~24.9.
|
|
40
|
-
"@vaadin/component-base": "~24.9.
|
|
41
|
-
"@vaadin/field-base": "~24.9.
|
|
42
|
-
"@vaadin/input-container": "~24.9.
|
|
43
|
-
"@vaadin/vaadin-lumo-styles": "~24.9.
|
|
44
|
-
"@vaadin/vaadin-material-styles": "~24.9.
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "~24.9.
|
|
39
|
+
"@vaadin/a11y-base": "~24.9.6",
|
|
40
|
+
"@vaadin/component-base": "~24.9.6",
|
|
41
|
+
"@vaadin/field-base": "~24.9.6",
|
|
42
|
+
"@vaadin/input-container": "~24.9.6",
|
|
43
|
+
"@vaadin/vaadin-lumo-styles": "~24.9.6",
|
|
44
|
+
"@vaadin/vaadin-material-styles": "~24.9.6",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "~24.9.6",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/chai-plugins": "~24.9.
|
|
50
|
-
"@vaadin/test-runner-commands": "~24.9.
|
|
49
|
+
"@vaadin/chai-plugins": "~24.9.6",
|
|
50
|
+
"@vaadin/test-runner-commands": "~24.9.6",
|
|
51
51
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
52
52
|
"sinon": "^18.0.0"
|
|
53
53
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "04dec563d48efd4e5ca0c0b96687302666ee5ab1"
|
|
59
59
|
}
|
|
@@ -141,9 +141,9 @@ export class NumberField extends NumberFieldMixin(ThemableMixin(ElementMixin(Pol
|
|
|
141
141
|
<div part="error-message">
|
|
142
142
|
<slot name="error-message"></slot>
|
|
143
143
|
</div>
|
|
144
|
-
</div>
|
|
145
144
|
|
|
146
|
-
|
|
145
|
+
<slot name="tooltip"></slot>
|
|
146
|
+
</div>
|
|
147
147
|
`;
|
|
148
148
|
}
|
|
149
149
|
}
|
package/web-types.json
CHANGED