@colijnit/corecomponents_v12 12.0.47 → 12.0.48

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.
@@ -5394,6 +5394,7 @@
5394
5394
  * Where 'text' is showing in the dropdown and 'id' used for the model binding
5395
5395
  */
5396
5396
  _this.fields = {};
5397
+ _this.allowFiltering = false;
5397
5398
  _super.prototype._markAsOnPush.call(_this);
5398
5399
  return _this;
5399
5400
  }
@@ -5410,7 +5411,7 @@
5410
5411
  DropDownListComponent.decorators = [
5411
5412
  { type: core.Component, args: [{
5412
5413
  selector: "co-drop-down-list",
5413
- template: "\n <ejs-dropdownlist\n [dataSource]=\"collection\"\n [value]=\"model\"\n [fields]=\"fields\"\n [placeholder]=\"placeholder\"\n [readonly]=\"readonly\"\n [itemTemplate]=\"itemTemplate\"\n [headerTemplate]=\"headerTemplate\"\n [valueTemplate]=\"valueTemplate\"\n [disabled]=\"disabled\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"handleValueChanged($event)\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-dropdownlist>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
5414
+ template: "\n <ejs-dropdownlist\n [dataSource]=\"collection\"\n [allowFiltering]=\"allowFiltering\"\n [value]=\"model\"\n [fields]=\"fields\"\n [filterBarPlaceholder]=\"filterBarPlaceholder\"\n [filterType]=\"filterType\"\n [placeholder]=\"placeholder\"\n [readonly]=\"readonly\"\n [itemTemplate]=\"itemTemplate\"\n [headerTemplate]=\"headerTemplate\"\n [valueTemplate]=\"valueTemplate\"\n [disabled]=\"disabled\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"handleValueChanged($event)\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-dropdownlist>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
5414
5415
  providers: [
5415
5416
  ej2AngularDropdowns.CheckBoxSelectionService,
5416
5417
  {
@@ -5436,6 +5437,9 @@
5436
5437
  collection: [{ type: core.Input }],
5437
5438
  fields: [{ type: core.Input }],
5438
5439
  placeholder: [{ type: core.Input }],
5440
+ allowFiltering: [{ type: core.Input }],
5441
+ filterBarPlaceholder: [{ type: core.Input }],
5442
+ filterType: [{ type: core.Input }],
5439
5443
  itemTemplate: [{ type: core.Input }],
5440
5444
  headerTemplate: [{ type: core.Input }],
5441
5445
  valueTemplate: [{ type: core.Input }],
@@ -9848,9 +9852,6 @@
9848
9852
  this.cellClick.next();
9849
9853
  }
9850
9854
  };
9851
- SimpleGridCellComponent.prototype.ngOnChanges = function (changes) {
9852
- console.log(changes);
9853
- };
9854
9855
  SimpleGridCellComponent.prototype._setFocusComponent = function () {
9855
9856
  if (this.editMode && this.fieldEditMode) {
9856
9857
  var element = this._getElement();