slick-components 5.0.4 → 5.0.6

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.
@@ -53,7 +53,7 @@ class SlickInitService {
53
53
  SlickInitService.getParams().errorLog = errorLog;
54
54
  }
55
55
  }
56
- SlickInitService.version = "5.0.4";
56
+ SlickInitService.version = "5.0.6";
57
57
  /** @nocollapse */ SlickInitService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SlickInitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
58
58
  /** @nocollapse */ SlickInitService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SlickInitService });
59
59
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SlickInitService, decorators: [{
@@ -6673,7 +6673,7 @@ class SlickMultiSelectService {
6673
6673
  foundSomeText = true;
6674
6674
  return {
6675
6675
  id: id,
6676
- text: (text ?? "").toString,
6676
+ text: (text ?? "").toString(),
6677
6677
  item: item
6678
6678
  };
6679
6679
  }
@@ -6928,7 +6928,6 @@ class SlickMultiSelectComponent {
6928
6928
  this.skipClickExpand = false;
6929
6929
  }
6930
6930
  async onKeyDown(e) {
6931
- console.log(e, e.key);
6932
6931
  if (e.key !== 'Tab' &&
6933
6932
  e.key !== 'Enter' &&
6934
6933
  e.key !== 'Escape' &&
@@ -6942,7 +6941,6 @@ class SlickMultiSelectComponent {
6942
6941
  }
6943
6942
  e.stopPropagation();
6944
6943
  e.preventDefault();
6945
- console.log(this.isAndroid);
6946
6944
  // If this is android, it won't pass us any key data so just read the entire input element
6947
6945
  if (this.isAndroid === true) {
6948
6946
  await SlickSleepService.sleep();