@vaadin/multi-select-combo-box
Advanced tools
Comparing version 23.1.7 to 23.1.8
{ | ||
"name": "@vaadin/multi-select-combo-box", | ||
"version": "23.1.7", | ||
"version": "23.1.8", | ||
"publishConfig": { | ||
@@ -36,9 +36,9 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/combo-box": "~23.1.7", | ||
"@vaadin/component-base": "~23.1.7", | ||
"@vaadin/field-base": "~23.1.7", | ||
"@vaadin/input-container": "~23.1.7", | ||
"@vaadin/vaadin-lumo-styles": "~23.1.7", | ||
"@vaadin/vaadin-material-styles": "~23.1.7", | ||
"@vaadin/vaadin-themable-mixin": "~23.1.7" | ||
"@vaadin/combo-box": "~23.1.8", | ||
"@vaadin/component-base": "~23.1.8", | ||
"@vaadin/field-base": "~23.1.8", | ||
"@vaadin/input-container": "~23.1.8", | ||
"@vaadin/vaadin-lumo-styles": "~23.1.8", | ||
"@vaadin/vaadin-material-styles": "~23.1.8", | ||
"@vaadin/vaadin-themable-mixin": "~23.1.8" | ||
}, | ||
@@ -50,3 +50,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "879a4e5e6a245809bafa0ef2b5cdb24aef72565d" | ||
"gitHead": "297e4e51743751bed97f5400e661529a7d550870" | ||
} |
@@ -24,2 +24,3 @@ /** | ||
import { LabelMixinClass } from '@vaadin/field-base/src/label-mixin.js'; | ||
import { SlotStylesMixinClass } from '@vaadin/field-base/src/slot-styles-mixin.js'; | ||
import { ValidateMixinClass } from '@vaadin/field-base/src/validate-mixin.js'; | ||
@@ -326,2 +327,3 @@ import { ThemableMixinClass } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js'; | ||
extends ValidateMixinClass, | ||
SlotStylesMixinClass, | ||
LabelMixinClass, | ||
@@ -328,0 +330,0 @@ KeyboardMixinClass, |
@@ -34,6 +34,2 @@ /** | ||
:host([has-value]) ::slotted(input:placeholder-shown) { | ||
color: transparent !important; | ||
} | ||
::slotted(input) { | ||
@@ -464,2 +460,15 @@ box-sizing: border-box; | ||
/** @protected */ | ||
get slotStyles() { | ||
const tag = this.localName; | ||
return [ | ||
...super.slotStyles, | ||
` | ||
${tag}[has-value] input::placeholder { | ||
color: transparent !important; | ||
} | ||
`, | ||
]; | ||
} | ||
/** | ||
@@ -466,0 +475,0 @@ * Used by `InputControlMixin` as a reference to the clear button element. |
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
84343
2166