@vaadin/vaadin-time-picker
Advanced tools
Comparing version 2.3.0-alpha4 to 2.4.0-alpha1
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-time-picker", | ||
"version": "2.3.0-alpha4", | ||
"version": "2.4.0-alpha1", | ||
"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.8.0-alpha1", | ||
"@vaadin/vaadin-combo-box": "^5.4.0-alpha1", | ||
"@vaadin/vaadin-control-state-mixin": "^2.2.2" | ||
@@ -45,0 +45,0 @@ }, |
@@ -129,2 +129,7 @@ /** | ||
/** | ||
* String used for the helper text. | ||
*/ | ||
helperText: string|null|undefined; | ||
/** | ||
* A placeholder string in addition to the label. | ||
@@ -131,0 +136,0 @@ */ |
@@ -95,3 +95,4 @@ /** | ||
</template> | ||
<vaadin-time-picker-text-field class="input" name="[[name]]" invalid="[[invalid]]" autocomplete="off" label="[[label]]" required="[[required]]" disabled="[[disabled]]" prevent-invalid-input="[[preventInvalidInput]]" pattern="[[pattern]]" error-message="[[errorMessage]]" autofocus="[[autofocus]]" placeholder="[[placeholder]]" readonly="[[readonly]]" role="application" aria-live="assertive" min\$="[[min]]" max\$="[[max]]" aria-label\$="[[label]]" clear-button-visible="[[clearButtonVisible]]" i18n="[[i18n]]" theme\$="[[theme]]"> | ||
<vaadin-time-picker-text-field class="input" name="[[name]]" invalid="[[invalid]]" autocomplete="off" label="[[label]]" required="[[required]]" disabled="[[disabled]]" prevent-invalid-input="[[preventInvalidInput]]" pattern="[[pattern]]" error-message="[[errorMessage]]" autofocus="[[autofocus]]" placeholder="[[placeholder]]" readonly="[[readonly]]" role="application" aria-live="assertive" min\$="[[min]]" max\$="[[max]]" aria-label\$="[[label]]" clear-button-visible="[[clearButtonVisible]]" i18n="[[i18n]]" helper-text="[[helperText]]" theme\$="[[theme]]"> | ||
<slot name="helper" slot="helper">[[helperText]]</slot> | ||
<span slot="suffix" part="toggle-button" class="toggle-button" role="button" aria-label\$="[[i18n.selector]]"></span> | ||
@@ -107,3 +108,3 @@ </vaadin-time-picker-text-field> | ||
static get version() { | ||
return '2.3.0-alpha4'; | ||
return '2.4.0-alpha1'; | ||
} | ||
@@ -184,2 +185,10 @@ | ||
/** | ||
* String used for the helper text. | ||
*/ | ||
helperText: { | ||
type: String, | ||
value: '' | ||
}, | ||
/** | ||
* A placeholder string in addition to the label. | ||
@@ -186,0 +195,0 @@ * @type {string} |
51277
965
+ Added@vaadin/vaadin-combo-box@5.5.3(transitive)
+ Added@vaadin/vaadin-text-field@2.10.0(transitive)
- Removed@vaadin/vaadin-combo-box@5.3.0(transitive)
- Removed@vaadin/vaadin-text-field@2.7.2(transitive)