maximelkin
maximelkin
This bug reproducing on dialog-outlet placed inside app-root MdlDialogInnerOutletComponent constructor -> setDefaultViewContainerRef -> setViewContainerRef -> created MdlBackdropOverlayComponent And MdlDialogOutletService constructor -> ngZone.onStable.pipe subscribe -> setViewContainerRef -> created MdlBackdropOverlayComponent So this...
Temporary workaround ``` const initial = (MdlDialogOutletService.prototype as any).setViewContainerRef; (MdlDialogOutletService.prototype as any).setViewContainerRef = function(...args) { if (!this.backdropComponent) { initial.apply(this, args); } }; ```
For now nominal types can be expressed via ```ts type DateString = string & {__tag: 'DateString'}; ``` Can we implement it like this? (Also typescript inside use such solution)
Can you please publish packages under @protobufjs/? In v7.0.0 utf8 issue marked as fixed, but if you npm i protobufjs - you will still receive code, which imports old version...
@dougwilson Thank you for your proposal, your solution is much better. About naming of cancel method - name should show, what method only does job only when query in queue,...
@martinmacko47 :thinking: they actually for streaming, as per docs. In default workflow everything is good, but not sure about `Connection lost` cases (slow connection creation & cancelling? exhausting mysql connection...