Békési István
Békési István
Using `::ng-deep` in parent component should work: For example, adding box-shadow on focus: ``` ng-select ::ng-deep .focus { border-color: #1268ff; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 53, 145,...
I’ve checked the Azure Guidelines and compared them to [one of the ACS service](https://learn.microsoft.com/en-us/rest/api/communication/chat/chat) references you recommended to look at. A few questions came to my mind that could help...
I think this solution does not solve the issue, even worst: selected text content simply overflows booth the caret and the select-box too. http://plnkr.co/edit/DLzS7cpyGtZEJJyKT4IQ?p=preview 
For some reason, editing javaOptions in `build.sbt` did not work for me. However (in windows), adding the following environment variable did the trick: `JAVA_TOOL_OPTIONS=-Djdk.lang.Process.allowAmbiguousCommands=true`
Workaround: ``` import com.vaadin.flow.component.customfield.CustomField; import com.vaadin.flow.component.listbox.MultiSelectListBox; import java.util.Set; public class MultiSelectListBoxWithLabel extends CustomField { private MultiSelectListBox multiSelectListBox = new MultiSelectListBox(); public MultiSelectListBoxWithLabel(String label, T ...values) { super(); this.multiSelectListBox.setItems(values); this.multiSelectListBox.addValueChangeListener(event ->...
Btw, I ended up using CheckboxGroup. I realized that CheckboxGroup is more rounded compared to ListBox and fits better in the Vaadin components palette, supporting labels, itemLabelGenerator... etc.