@senior-gestao-pessoas/payroll-core 9.6.1 → 9.7.0-develop-83cda3e2

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.
@@ -2854,6 +2854,12 @@ var InputRestAutoCompleteComponent = /** @class */ (function () {
2854
2854
  })
2855
2855
  .subscribe(function (payload) { return _this.formaterResponce(payload.result); });
2856
2856
  }
2857
+ else if (this.isSituationDefinition) {
2858
+ var params = { searchText: query };
2859
+ return this.service
2860
+ .query('autocompleteSituationDefinitionQuery', params, ServiceType.ORGANIZATION_REGISTER)
2861
+ .subscribe(function (payload) { return _this.formaterResponce(payload.result); });
2862
+ }
2857
2863
  else if (this.isWagetype) {
2858
2864
  var params = { searchText: query, companyId: this.companyId };
2859
2865
  return this.service
@@ -3085,6 +3091,9 @@ var InputRestAutoCompleteComponent = /** @class */ (function () {
3085
3091
  __decorate([
3086
3092
  Input()
3087
3093
  ], InputRestAutoCompleteComponent.prototype, "isWagetype", void 0);
3094
+ __decorate([
3095
+ Input()
3096
+ ], InputRestAutoCompleteComponent.prototype, "isSituationDefinition", void 0);
3088
3097
  __decorate([
3089
3098
  Input()
3090
3099
  ], InputRestAutoCompleteComponent.prototype, "multiple", void 0);