Tomas Rimkus
Tomas Rimkus
@splincode @waterplea here is the reproduction of the performance issue with the latest Taiga version (`4.39.2`): [StackBlitz](https://stackblitz.com/edit/nwyokgky?file=src%2Fapp%2Fapp.component.ts). Some notes: - Both `tui-input` and `tui-editor` have significant performance issues, but it's...
Unfortunately the dropdown fix doesn't seem to fix the input lag issue.
@waterplea I will test the updated html editor soon. As a sidenote, while checking the Chrome performance traces, I have noticed a couple of potential performance issues in Taiga. Following...
@waterplea sounds great. Looking forward to the new dialogs. Hope the new dialog service method definition will be similar to the current one. Also, thanks for looking into `(keydown)` issue.
Is there any good reason why the same dialog service can't be used for both: desktop and mobile dialogs? I really like how the current service makes dialogs fullscreen on...
There are a few issues with that option: - I don't use `addon-mobile` package since the application is primarily used on desktop and I don't really want to increase the...
esbuild is using `go` to build `win32-arm64`: [Makefile](https://github.com/evanw/esbuild/blob/360d47230813e67d0312ad754cad2b6ee09b151b/Makefile#L326) [go source code](https://github.com/evanw/esbuild/tree/360d47230813e67d0312ad754cad2b6ee09b151b/cmd/esbuild)
@AlexRyabikov you could use non-blocking `searchAsync()` method which returns `PromiseInterface` and call `wait()` on the promise after making multiple requests. You can find basic `searchAsync()` implementation in [my feature request](https://github.com/googleads/google-ads-php/issues/701#issuecomment-994539895).
This can be closed now, since [`searchAsync`](https://github.com/googleads/google-ads-php/blob/3b876a88574a44652ad091da9c731267095b97ea/src/Google/Ads/GoogleAds/V16/Services/Client/GoogleAdsServiceClient.php#L56) was added to the client library in [v21.1.0](https://github.com/googleads/google-ads-php/releases/tag/v21.1.0).
I guess now you have to explicitly specify the generic type: ```ts new Observable((observer) => { observer.next() } ``` Either the default generic should be set to `void` (`class Observable`)...