@vaadin/vaadin-time-picker
Advanced tools
Comparing version 2.3.0-alpha4 to 2.3.0-beta1
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-time-picker", | ||
"version": "2.3.0-alpha4", | ||
"version": "2.3.0-beta1", | ||
"main": "vaadin-time-picker.js", | ||
@@ -41,4 +41,4 @@ "author": "Vaadin Ltd", | ||
"@vaadin/vaadin-material-styles": "^1.3.2", | ||
"@vaadin/vaadin-text-field": "~2.7.0-alpha4", | ||
"@vaadin/vaadin-combo-box": "~5.3.0-alpha3", | ||
"@vaadin/vaadin-text-field": "~2.7.0-beta1", | ||
"@vaadin/vaadin-combo-box": "~5.3.0-beta1", | ||
"@vaadin/vaadin-control-state-mixin": "^2.2.2" | ||
@@ -45,0 +45,0 @@ }, |
@@ -115,2 +115,3 @@ /** | ||
* Set to true to prevent the user from entering invalid input. | ||
* @attr {boolean} prevent-invalid-input | ||
*/ | ||
@@ -126,2 +127,3 @@ preventInvalidInput: boolean|null|undefined; | ||
* The error message to display when the input is invalid. | ||
* @attr {string} error-message | ||
*/ | ||
@@ -185,2 +187,3 @@ errorMessage: string|null|undefined; | ||
* Set to true to display the clear icon which clears the input. | ||
* @attr {boolean} clear-button-visible | ||
*/ | ||
@@ -191,2 +194,3 @@ clearButtonVisible: boolean; | ||
* Set true to prevent the overlay from opening automatically. | ||
* @attr {boolean} auto-open-disabled | ||
*/ | ||
@@ -193,0 +197,0 @@ autoOpenDisabled: boolean|null|undefined; |
@@ -106,3 +106,3 @@ /** | ||
static get version() { | ||
return '2.3.0-alpha4'; | ||
return '2.3.0-beta1'; | ||
} | ||
@@ -163,2 +163,3 @@ | ||
* Set to true to prevent the user from entering invalid input. | ||
* @attr {boolean} prevent-invalid-input | ||
*/ | ||
@@ -178,2 +179,3 @@ preventInvalidInput: { | ||
* The error message to display when the input is invalid. | ||
* @attr {string} error-message | ||
*/ | ||
@@ -264,2 +266,3 @@ errorMessage: { | ||
* Set to true to display the clear icon which clears the input. | ||
* @attr {boolean} clear-button-visible | ||
* @type {boolean} | ||
@@ -274,2 +277,3 @@ */ | ||
* Set true to prevent the overlay from opening automatically. | ||
* @attr {boolean} auto-open-disabled | ||
*/ | ||
@@ -276,0 +280,0 @@ autoOpenDisabled: Boolean, |
@@ -15,1 +15,2 @@ /** | ||
export * from './src/vaadin-time-picker.js'; | ||
export * from './@types/interfaces'; |
51331
961