@flywheel-io/vision 19.5.0 → 19.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6358,12 +6358,12 @@ class FwSelectMenuComponent {
6358
6358
  this.isTyping = signal(false);
6359
6359
  this.valueDisplayFn = input((menuItem) => menuItem.title || '');
6360
6360
  this.defaultFilterFn = (filter, items) => (items.filter(item => {
6361
- if (item.disabled) {
6362
- return false;
6363
- }
6364
6361
  if (!filter || filter.trim() === '') {
6365
6362
  return true;
6366
6363
  }
6364
+ if (item.disabled) {
6365
+ return false;
6366
+ }
6367
6367
  return item.title?.toLowerCase().includes(filter.toLowerCase());
6368
6368
  }));
6369
6369
  /**
@@ -6429,7 +6429,8 @@ class FwSelectMenuComponent {
6429
6429
  });
6430
6430
  this.onTouched = () => {
6431
6431
  };
6432
- this.externalOnChange = (_val) => { };
6432
+ this.externalOnChange = (_val) => {
6433
+ };
6433
6434
  // this is just a different way of binding the controlValueAccessor
6434
6435
  // it can be accessed in the component this way
6435
6436
  if (this.ngControl) {