@vaadin/text-field 24.8.11 → 24.8.13
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-lit-text-field.js +2 -2
- package/src/vaadin-text-field.js +2 -1
- 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/text-field",
|
|
3
|
-
"version": "24.8.
|
|
3
|
+
"version": "24.8.13",
|
|
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.8.
|
|
40
|
-
"@vaadin/component-base": "~24.8.
|
|
41
|
-
"@vaadin/field-base": "~24.8.
|
|
42
|
-
"@vaadin/input-container": "~24.8.
|
|
43
|
-
"@vaadin/vaadin-lumo-styles": "~24.8.
|
|
44
|
-
"@vaadin/vaadin-material-styles": "~24.8.
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "~24.8.
|
|
39
|
+
"@vaadin/a11y-base": "~24.8.13",
|
|
40
|
+
"@vaadin/component-base": "~24.8.13",
|
|
41
|
+
"@vaadin/field-base": "~24.8.13",
|
|
42
|
+
"@vaadin/input-container": "~24.8.13",
|
|
43
|
+
"@vaadin/vaadin-lumo-styles": "~24.8.13",
|
|
44
|
+
"@vaadin/vaadin-material-styles": "~24.8.13",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "~24.8.13",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/chai-plugins": "~24.8.
|
|
50
|
-
"@vaadin/test-runner-commands": "~24.8.
|
|
49
|
+
"@vaadin/chai-plugins": "~24.8.13",
|
|
50
|
+
"@vaadin/test-runner-commands": "~24.8.13",
|
|
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": "3bdf9208b7ad24d55ed3d2ce18be06be71cf3443"
|
|
59
59
|
}
|
|
@@ -60,9 +60,9 @@ export class TextField extends TextFieldMixin(ThemableMixin(ElementMixin(Polylit
|
|
|
60
60
|
<div part="error-message">
|
|
61
61
|
<slot name="error-message"></slot>
|
|
62
62
|
</div>
|
|
63
|
-
</div>
|
|
64
63
|
|
|
65
|
-
|
|
64
|
+
<slot name="tooltip"></slot>
|
|
65
|
+
</div>
|
|
66
66
|
`;
|
|
67
67
|
}
|
|
68
68
|
|
package/src/vaadin-text-field.js
CHANGED
|
@@ -116,8 +116,9 @@ export class TextField extends TextFieldMixin(ThemableMixin(ElementMixin(Polymer
|
|
|
116
116
|
<div part="error-message">
|
|
117
117
|
<slot name="error-message"></slot>
|
|
118
118
|
</div>
|
|
119
|
+
|
|
120
|
+
<slot name="tooltip"></slot>
|
|
119
121
|
</div>
|
|
120
|
-
<slot name="tooltip"></slot>
|
|
121
122
|
`;
|
|
122
123
|
}
|
|
123
124
|
|
package/web-types.json
CHANGED