@stemy/ngx-utils 19.7.24 → 19.7.26
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.
|
@@ -3857,12 +3857,12 @@ class ConfigService {
|
|
|
3857
3857
|
return "";
|
|
3858
3858
|
return decodeURIComponent(results[2].replace(/\+/g, " "));
|
|
3859
3859
|
}
|
|
3860
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ConfigService, deps: [{ token:
|
|
3860
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ConfigService, deps: [{ token: BaseHttpClient }, { token: UniversalService }, { token: i0.Injector }, { token: ROOT_ELEMENT }, { token: APP_BASE_URL }, { token: BASE_CONFIG, optional: true }, { token: SCRIPT_PARAMS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3861
3861
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ConfigService }); }
|
|
3862
3862
|
}
|
|
3863
3863
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ConfigService, decorators: [{
|
|
3864
3864
|
type: Injectable
|
|
3865
|
-
}], ctorParameters: () => [{ type:
|
|
3865
|
+
}], ctorParameters: () => [{ type: BaseHttpClient }, { type: UniversalService }, { type: i0.Injector }, { type: HTMLElement, decorators: [{
|
|
3866
3866
|
type: Inject,
|
|
3867
3867
|
args: [ROOT_ELEMENT]
|
|
3868
3868
|
}] }, { type: undefined, decorators: [{
|
|
@@ -7320,10 +7320,10 @@ class ChipsComponent {
|
|
|
7320
7320
|
}
|
|
7321
7321
|
return false;
|
|
7322
7322
|
}
|
|
7323
|
-
if (ev.key
|
|
7323
|
+
if (ev.key === "Enter" || ev.key === "Tab") {
|
|
7324
7324
|
return this.enterOption(input.value);
|
|
7325
7325
|
}
|
|
7326
|
-
if (ev.key
|
|
7326
|
+
if (ev.key === "Backspace" && !input.value && !changed && this.valueOptions.length > 0) {
|
|
7327
7327
|
this.makeUndo();
|
|
7328
7328
|
this.updateValues(this.valueOptions.slice(0, this.valueOptions.length - 1));
|
|
7329
7329
|
this.onTouched(this.value);
|