Tomas Rimkus

Results 204 comments of Tomas Rimkus

> @hakimio Hello hakimio! Thank you so much for the feedback, I learned a lot from it. You are welcome 🙂 BTW, with the changes mentioned in my comments, now...

@diegomvh thanks for releasing a new version with `provideODataClient()` but unfortunately I experienced an issue with `apply()` method in the new version. Can you tell me how can I migrate...

Ok, using `restore()` instead of `apply()` seems to work but when using `provideODataClient()` instead of `ODataModule.forRoot()`, http client interceptors don't work. **EDIT:** the issue seems to be that `angular-odata` is...

Sorry, `provideOdataClient()` is working fine. Fixed the issue with interceptors by adding `withInterceptorsFromDi()` to my `provideHttpClient()`. Following works as expected now for me: ```ts export const appConfig: ApplicationConfig = {...

Love the library, btw. Super nice DX 🙂

Might be a good idea to add `provideHttpClient()` to `provideODataClient()` since `ODataModule.forRoot()` imports `HttpClientModule`, otherwise `provideODataClient()` is working as it's supposed to. ```ts export function provideODataClient( passedConfig: PassedInitialConfig ): EnvironmentProviders...

You forgot to import `AngularResizeEventModule`.

Use [ngx-resize](https://github.com/nartc/ngx-resize/tree/main/projects/ngx-resize) library instead. It has `debounce` option and is actively maintained unlike `angular-resize-event`.

The project doesn't seem to be maintained anymore. Those looking for an alternative, can try actively maintained [ngx-resize](https://github.com/nartc/ngx-resize/tree/main/projects/ngx-resize). It can be used [the same way like this directive](https://github.com/nartc/ngx-resize/tree/main/projects/ngx-resize#ngxresize-1) but has...

You can use [`resize` directive](https://ngxtension.netlify.app/utilities/directives/resize/) from `ngxtension` library which should work the same like the one from `ngx-resize`.