Paul Draper

Results 165 comments of Paul Draper

It is working as expected. You verify that using native `atob` in a browser. Decoding `"4pyT"` is yields `"✓"`. That is, characters U+00E2 U+009C U+0093. Note that the output of...

> Yes, but I definitely don’t want to make the most flexible tool. > I don’t want to take things in the direction of supporting more different ways to do...

> What options would you suggest we remove from dependencies.yml? `licenses`, `transitivity`, `namePrefix`, and `replacements` can all be done post dep resolution, as Skylark parameters. And that accomodates, e.g. I...

@johneynek, I don't think anything I suggested is very different (I was not proposing transitive_maven_deps...just trying to understand your suggestion). "Use a repository rule to write the structure of the...

Ah, I see that it is a peer dependency. IMO should be a regular dependency; I probably don't need to select both a version of common and core.

I don't know the consequences of this workaround, but it works for this example and my own uses. Before app initialization, run: ```ts import { createInterceptingRenderer } from '@angular-contrib/core'; createInterceptingRenderer(undefined,...

@nmagesh84 try it before boostrapping anything at all, like in main.ts.

The nested ControlValueAccessor technique (https://github.com/angular/angular/issues/10887#issuecomment-490803771) is common: https://medium.com/angular-in-depth/angular-nested-reactive-forms-using-cvas-b394ba2e5d0d Without touched events, there is no clean way to implement this. (It can be done, by hooking ngDoCheck()).

> With Angular Ivy in the future, there will be a non zone mode, and user need to trigger change detection themselves. Any examples of this?