Oliver Joseph Ash
Oliver Joseph Ash
👍 This also makes it easier to extract a function, e.g. to convert from ```ts T.map(flow( one, two, )), ``` to ```ts const fn = flow( one, two, ); T.map(fn),...
Another example: ```ts pipe(pipe(value, fn1), fn2) ``` should be ```ts pipe(value, fn1, fn2) ```
https://github.com/buildo/eslint-plugin-fp-ts/pull/225
@mikearnaldi Do you know if there's anything similar to this package in the Effect ecosystem? Especially interested in [something like `no-discarded-pure-expression`](https://github.com/buildo/eslint-plugin-fp-ts/blob/main/docs/rules/no-discarded-pure-expression.md) so we don't forget to execute Effects.
We also just ran into this. I have a hidden input inside a label, which I apply focus styles using `:focus-within`. When the label (and thereby input) is actioned via...
@robdodson https://jsbin.com/fokexoc/1/edit?html,css,output
> In other words, if you could just style the `` button you wouldn't need `:focus-visible-within`, correct? @robdodson Correct! Although consider this example where we don't want to hide the...
Interesting, do you know if this is how the browser version of `:focus-ring` will behave? Or is it still under consideration?
Do you think this polyfill should move forward with the proposed behaviour, or does it need to wait?
> I think the way the polyfill works today @robdodson I just tried this and I don't think it does work that way currently. Here is a demo: https://stackblitz.com/edit/wicg-focus-ring-test-programmatically-focusing Clicking...