@seniorsistemas/angular-components 17.29.4-feature-sds-392-a9d9cc78 → 17.30.0
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.
- package/bundles/seniorsistemas-angular-components.umd.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +2 -2
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +2 -2
- package/fesm2015/seniorsistemas-angular-components.js +1 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +1 -1
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -7477,7 +7477,7 @@ var LookupComponent = /** @class */ (function () {
|
|
|
7477
7477
|
};
|
|
7478
7478
|
LookupComponent.prototype.onCompleteMethod = function (event) {
|
|
7479
7479
|
if (!this.autocompleteForceSelection) {
|
|
7480
|
-
this.onChange(this.value);
|
|
7480
|
+
this.onChange(this.value === "" ? null : this.value);
|
|
7481
7481
|
}
|
|
7482
7482
|
this.onLookupRequest.next(event.query);
|
|
7483
7483
|
};
|