Brenton Simpson
Brenton Simpson
Reqwest should support logging levels. At a minimum, I'd like to be able to tell it: - Log nothing - Log method and URL - with headers & cookies -...
# Steps to Reproduces 1) Select multiple hex values (`^D` for `Quick Add Next`) 2) Run CSS Color Converter (`⌘⇧C`) # Expected Result 1) Each color is now the appropriate...
If I point doclets at `src`, I get this: Error: ENOENT: no such file or directory, open '/usr/src/app/lib/7ea90b80-bf77-11e6-895d-f541a01addf8' If I point it at `dist`, I get a [bunch of comments...
It would be nice for the Gator standard library to include sugar for one-time listeners, namely `onFirst` and `onNth`. Here's a sample implementation of onFirst: ``` Gator.prototype.onFirst = function (events,...
This seems like it should work: ```typescript subscribe({ source: when( pointerEvents.up$.rewriteTo({ value$: thresholdCrossed$, onlyEmitWithUpstream: true, }) ).rewriteTo({ value$: dissolveSpring.destination$.inverted(), onlyEmitWithUpstream: true, }), sink: dissolveSpring.destination$, }); ``` to toggle the destination...
After views-dom is merged into core, it's worth investigating putting together a Rollup distribution and adding it to [Google Hosted Libraries](https://developers.google.com/speed/libraries/) to make throwing open a Codepen with Material Motion...
`StyleStreams` is currently a whitelist of values that `combineStyleStreams` can transform into CSS rules. Thus, even though `combineStyleStreams` will pass through streams of standard CSS rules, TypeScript will reject them:...
If you play with a tossable thing, sometimes velocity comes out as 0. I'm guessing it doesn't have enough data to calculate a velocity, but I haven't dug into why.
A new user might presumably do this: ```typescript const draggable = new Draggable(pointerEvents); const spring = new Point2DSpring(); const tossable = new Tossable({ draggable, spring }); ``` and wonder why...
`reactiveNextOperator` injects `{upstream: Observable}` into `combineLatest`, which is currently typed to be `D` (the `inputs` dictionary). The `inputs` kwarg shouldn't require `upstream`. When I tried to use `reactiveNextOperator`, TypeScript was...