@seniorsistemas/angular-components 14.9.12 → 14.9.13

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.
@@ -1537,6 +1537,7 @@ var ChipsField = /** @class */ (function (_super) {
1537
1537
  __extends(ChipsField, _super);
1538
1538
  function ChipsField(config) {
1539
1539
  var _this = _super.call(this, config) || this;
1540
+ _this.keyFilter = config.keyFilter;
1540
1541
  _this.onAdd = config.onAdd;
1541
1542
  _this.onRemove = config.onRemove;
1542
1543
  _this.onChipClick = config.onChipClick;
@@ -4057,7 +4058,7 @@ var ChipsFieldComponent = /** @class */ (function () {
4057
4058
  ], ChipsFieldComponent.prototype, "formControl", void 0);
4058
4059
  ChipsFieldComponent = __decorate([
4059
4060
  Component({
4060
- template: "<p-chips\n [inputId]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [placeholder]=\"field.placeholder\"\n [allowDuplicate]=\"false\"\n [addOnTab]=\"true\"\n [addOnBlur]=\"true\"\n (onAdd)=\"field.onAdd ? field.onAdd($event) : null\"\n (onRemove)=\"field.onRemove ? field.onRemove($event) : null\"\n (onChipClick)=\"field.onChipClick ? field.onChipClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n></p-chips>\n"
4061
+ template: "<p-chips\n [inputId]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [placeholder]=\"field.placeholder\"\n [allowDuplicate]=\"false\"\n [addOnTab]=\"true\"\n [addOnBlur]=\"true\"\n (onAdd)=\"field.onAdd ? field.onAdd($event) : null\"\n (onRemove)=\"field.onRemove ? field.onRemove($event) : null\"\n (onChipClick)=\"field.onChipClick ? field.onChipClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [pKeyFilter]=\"field.keyFilter\"\n></p-chips>\n"
4061
4062
  })
4062
4063
  ], ChipsFieldComponent);
4063
4064
  return ChipsFieldComponent;