<kendo-multicolumncombobox [fillMode]="'flat'" [readonly]="!canEdit() || invoice().isPosted" #vendorList [data]="vendors()"
[filterable]="true" (filterChange)="handleFilter($event)" textField="display" valueField="id"
formControlName="vendor" [valuePrimitive]="true" (valueChange)="onVendorChange($event)" [popupSettings]="{width: '75em'}">
that is how it is being used. all the values being accessed with () are signals and not methods that should get endlessly called (except for the filter and value change handlers) But in 17.1.1 if you try to expand the dropdown or change the filter it grinds the whole page to a halt and the entire browser page becomes unresponsive.
Reverting to 17.1.0 fixes the issue.