Results 6 comments of Gabriel Lupu

Calling `Model.clear()` before `Model.set({})` will work in your case? This way you won't extend the current attributes, instead they will be replaced. `Model.clear()` also supports silent option if you don't...

``` npm i jexl --save npm i z-schema --save ``` fixed it for me. using `"ngx-schema-form": "^2.4.3",`

Getting the same issue with snapshot: ```typescript youtubeVideo.snapshot(formattedTime, './file.jpg') .then(() => { console.log("Done"); }).catch((err: any) => { console.log("err : ", err) }); ``` ```console { Error: ENOENT: no such file...

As @peterpme suggested: > In my case, I increased performance by debouncing the swipe handlers. Worked for me very well using lodash debounce with a 100ms wait: ```js import {...

I ended up writing my own autocomplete - more lightweight, for my needs, hope this update will get merged in some day anyway.