CKO

Results 11 comments of CKO

@crisbeto I have the same problem, basically I want to use it for a split view, so I lock the axis in one direction and also want to constrain the...

I have the same problem, with multiple editor instances on the page I need to disable actions.find for some editors. Once disabled, it is disabled for all instances. This worked...

> @Splaktar `` is totally valid, and is the intention of the design (consolidating by breakpoint). > > * (1 and 2) What's special about `fxLayoutAlign` and `fxFlex="33%"`? They should...

We also have a use case for multiple editors with varied background colors: the main editor is white, while a secondary one in a panel is light gray. I can...

I think disposing a diff editor is not working, following is still returning the instance after disposing of it. `console.log(monaco.editor.getDiffEditors().length)` https://microsoft.github.io/monaco-editor/playground.html?source=v0.47.0#XQAAAAJWAgAAAAAAAABBqQkHQ5NjdMjwa-jY7SIQ9S7DNlzs5W-mwj0fe1ZCDRFc9ws9XQE0SJE1jc2VKxhaLFIw9vEWSxW3yscw1uK2RgmSatbNyrNa50VLHWwDOn0YI7IfU0xJ0CGYU1vRtgnKPmZzQcQ1IYSLB-5f-1dobOlrSyV9lhyCGfRbcyTZzKUUtAds1JtDoPQEJpqTO95djXk-6PawQN0dP0T1WrRLDlgxURUMz9GQl9S3tzMWfjGDyPdNL6PtzbwrntvHcbKpANtQk1mH5ygqS9KQl0Pfq2-GwqTXLOKb-3tDlDAM1IfVj31RxFsVyqOV2rZQmjamTZh-Z0aoRAm2YYHz5C-uWsfHk18G9G3guXAuxPlstPfKgn1xOtQzaaqkMX0SpOnuU0upAUQxWwdo1Mlog8sfbC96LKSaRveXYPu9-JE

I used APP_INITIALIZER for the redirect handling. It works only when I include MsalBroadcastService as a dependency: ```typescript { provide: APP_INITIALIZER, useFactory: (authService: MsalService) => () => authService.handleRedirectObservable(), deps: [MsalService,...

I get the following warning with Angular 11: ``` npm WARN @ngxs-labs/[email protected] requires a peer of @angular/core@^8.0.2 but none is installed. You must install peer dependencies yourself. npm WARN @ngxs-labs/[email protected]...

I've encountered a similar situation while testing the new `resource`. Here's the approach I'm currently using: ```ts await lastValueFrom( toObservable(this.someResource.status).pipe( first(status => status === ResourceStatus.Resolved) ) ); ``` My use...