@vaadin/vaadin-time-picker 23.2.0-dev.8a7678b70 → 23.2.1
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/README.md +2 -2
- package/package.json +4 -4
- package/src/vaadin-time-picker.d.ts +1 -1
- package/src/vaadin-time-picker.js +4 -0
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
A web component that allows to enter a time, either by typing, or by selecting from a set of pre-defined options.
|
|
7
7
|
|
|
8
|
-
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/
|
|
8
|
+
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/time-picker)
|
|
9
9
|
|
|
10
10
|
## Contributing
|
|
11
11
|
|
|
12
|
-
Read the [contributing guide](https://vaadin.com/docs/latest/
|
|
12
|
+
Read the [contributing guide](https://vaadin.com/docs/latest/contributing/overview) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
|
|
13
13
|
|
|
14
14
|
## License
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-time-picker",
|
|
3
|
-
"version": "23.2.
|
|
3
|
+
"version": "23.2.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "Vaadin Ltd",
|
|
15
15
|
"homepage": "https://vaadin.com/components",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/vaadin/
|
|
17
|
+
"url": "https://github.com/vaadin/web-components/issues"
|
|
18
18
|
},
|
|
19
19
|
"main": "vaadin-time-picker.js",
|
|
20
20
|
"module": "vaadin-time-picker.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"polymer"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@vaadin/time-picker": "23.2.
|
|
36
|
+
"@vaadin/time-picker": "~23.2.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a6c314f6927bfd3309fc735eae6c6dc72ab8367a"
|
|
39
39
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2018 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import { TimePicker } from '@vaadin/time-picker';
|
|
6
|
+
import type { TimePicker } from '@vaadin/time-picker';
|
|
7
7
|
|
|
8
8
|
export * from '@vaadin/time-picker/src/vaadin-time-picker.js';
|
|
9
9
|
/**
|
|
@@ -11,3 +11,7 @@ export * from '@vaadin/time-picker/src/vaadin-time-picker.js';
|
|
|
11
11
|
* @deprecated Import `TimePicker` from `@vaadin/time-picker` instead.
|
|
12
12
|
*/
|
|
13
13
|
export const TimePickerElement = TimePicker;
|
|
14
|
+
|
|
15
|
+
console.warn(
|
|
16
|
+
'WARNING: Since Vaadin 23.2, "@vaadin/vaadin-time-picker" is deprecated. Use "@vaadin/time-picker" instead.',
|
|
17
|
+
);
|