@vaadin/date-picker 25.0.0-beta3 → 25.0.0-beta4
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/date-picker",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-beta4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
38
|
-
"@vaadin/button": "25.0.0-
|
|
39
|
-
"@vaadin/component-base": "25.0.0-
|
|
40
|
-
"@vaadin/field-base": "25.0.0-
|
|
41
|
-
"@vaadin/input-container": "25.0.0-
|
|
42
|
-
"@vaadin/overlay": "25.0.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/a11y-base": "25.0.0-beta4",
|
|
38
|
+
"@vaadin/button": "25.0.0-beta4",
|
|
39
|
+
"@vaadin/component-base": "25.0.0-beta4",
|
|
40
|
+
"@vaadin/field-base": "25.0.0-beta4",
|
|
41
|
+
"@vaadin/input-container": "25.0.0-beta4",
|
|
42
|
+
"@vaadin/overlay": "25.0.0-beta4",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-beta4",
|
|
44
44
|
"lit": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
48
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
47
|
+
"@vaadin/chai-plugins": "25.0.0-beta4",
|
|
48
|
+
"@vaadin/test-runner-commands": "25.0.0-beta4",
|
|
49
49
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
50
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
50
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-beta4",
|
|
51
51
|
"sinon": "^21.0.0"
|
|
52
52
|
},
|
|
53
53
|
"web-types": [
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "707c30af7ed0afacc13c0afb27d047b043160d1f"
|
|
58
58
|
}
|
|
@@ -216,6 +216,8 @@ class DatePicker extends DatePickerMixin(
|
|
|
216
216
|
<div part="error-message">
|
|
217
217
|
<slot name="error-message"></slot>
|
|
218
218
|
</div>
|
|
219
|
+
|
|
220
|
+
<slot name="tooltip"></slot>
|
|
219
221
|
</div>
|
|
220
222
|
|
|
221
223
|
<vaadin-date-picker-overlay
|
|
@@ -237,8 +239,6 @@ class DatePicker extends DatePickerMixin(
|
|
|
237
239
|
>
|
|
238
240
|
<slot name="overlay"></slot>
|
|
239
241
|
</vaadin-date-picker-overlay>
|
|
240
|
-
|
|
241
|
-
<slot name="tooltip"></slot>
|
|
242
242
|
`;
|
|
243
243
|
}
|
|
244
244
|
|
package/web-types.json
CHANGED