ngx-template-streams icon indicating copy to clipboard operation
ngx-template-streams copied to clipboard

Small and lightweight Angular library that embraces reactivity and supercharges templates with Observables

Results 7 ngx-template-streams issues
Sort by recently updated
recently updated
newest added

I have found the following video resources quite interesting, maybe they should be included in the readme. How to use it (ngAir211): https://www.youtube.com/watch?v=tbr03N3WA2Q How it works (NG-BE 2019): https://www.youtube.com/watch?v=RcKB6NCrDPA

ERROR in src/app/app.component.ts:17:5 - error TS7008: I tried github sample: button click -> clicks$

bug

So I have this class I extend most of my "smart" components from. ```typescript import { OnInit, OnDestroy } from '@angular/core'; import { Store, Action } from '@ngrx/store'; import {...

bug

For this library to work with AOT as well, we currently cannot run the type checker in a forked process. This has some performance drawbacks for somewhat **large** applications because...

enhancement
help wanted
performance
discussion

The thing is, you sometimes want to trigger the event from both template and your class, this would require a mix of `ObservableEvent` and a `Subject`. Or `ObservableEvent` could return...

Currently the event parser's error handling is kept to a minimum, meaning if the parser fails to parse a template stream binding, it will gracefully fail and not transform the...

enhancement
help wanted

When running an app in AOT mode, formatting (mostly whitespace in form of newlines) is not preserved. That's because AST transformations alone are not enough and the AOT compiler runs...

enhancement
help wanted
discussion