@vaadin/vaadin-combo-box
Advanced tools
Comparing version 5.3.0-alpha3 to 5.4.0-alpha1
@@ -13,3 +13,3 @@ { | ||
"name": "@vaadin/vaadin-combo-box", | ||
"version": "5.3.0-alpha3", | ||
"version": "5.4.0-alpha1", | ||
"main": "vaadin-combo-box.js", | ||
@@ -42,3 +42,3 @@ "author": "Vaadin Ltd", | ||
"@vaadin/vaadin-overlay": "^3.5.0", | ||
"@vaadin/vaadin-text-field": "^2.7.0-alpha4", | ||
"@vaadin/vaadin-text-field": "^2.8.0-alpha1", | ||
"@vaadin/vaadin-themable-mixin": "^1.6.1", | ||
@@ -45,0 +45,0 @@ "@vaadin/vaadin-lumo-styles": "^1.1.1", |
@@ -235,2 +235,7 @@ /** | ||
/** | ||
* String used for the helper text. | ||
*/ | ||
helperText: string|null|undefined; | ||
/** | ||
* Set to true to display the clear icon which clears the input. | ||
@@ -237,0 +242,0 @@ */ |
@@ -206,4 +206,5 @@ /** | ||
<vaadin-text-field part="text-field" id="input" pattern="[[pattern]]" prevent-invalid-input="[[preventInvalidInput]]" value="{{_inputElementValue}}" autocomplete="off" invalid="[[invalid]]" label="[[label]]" name="[[name]]" placeholder="[[placeholder]]" required="[[required]]" disabled="[[disabled]]" readonly="[[readonly]]" error-message="[[errorMessage]]" autocapitalize="none" autofocus="[[autofocus]]" on-change="_stopPropagation" on-input="_inputValueChanged" clear-button-visible="[[clearButtonVisible]]" theme\$="[[theme]]"> | ||
<vaadin-text-field part="text-field" id="input" pattern="[[pattern]]" prevent-invalid-input="[[preventInvalidInput]]" value="{{_inputElementValue}}" autocomplete="off" invalid="[[invalid]]" label="[[label]]" name="[[name]]" placeholder="[[placeholder]]" required="[[required]]" disabled="[[disabled]]" readonly="[[readonly]]" helper-text="[[helperText]]" error-message="[[errorMessage]]" autocapitalize="none" autofocus="[[autofocus]]" on-change="_stopPropagation" on-input="_inputValueChanged" clear-button-visible="[[clearButtonVisible]]" theme\$="[[theme]]"> | ||
<slot name="prefix" slot="prefix"></slot> | ||
<slot name="helper" slot="helper">[[helperText]]</slot> | ||
@@ -232,3 +233,3 @@ <div part="toggle-button" id="toggleButton" slot="suffix" role="button" aria-label="Toggle"></div> | ||
static get version() { | ||
return '5.3.0-alpha3'; | ||
return '5.4.0-alpha1'; | ||
} | ||
@@ -299,2 +300,10 @@ | ||
/** | ||
* String used for the helper text. | ||
*/ | ||
helperText: { | ||
type: String, | ||
value: '' | ||
}, | ||
/** @type {boolean} */ | ||
@@ -301,0 +310,0 @@ readonly: { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
138890
3541