Matthew Holloway

Results 19 comments of Matthew Holloway

Hey @ajotka I'm keen to help out -- just let me know if there's anything I can do. @d3x42 any thoughts on the preceding question?

I agree on deferring a lot of these decisions to 3rd-parties. We have private repos so I guess we'd need private checklists too, and group support. Does that webapp support...

@tacitus Is there a design that we'll be implementing?

Hi @artemkolotilkin @seantomburke I added Basic Auth with the `requestHeaders` option. ```javascript const username = "username"; const password = "password123"; const usernamePasswordBuffer = Buffer.from( `${username}:${password}`, "utf-8" ); const base64UsernamePassword =...

The error seems to occur in [`postcss-merge-longhand/src/lib/decl/borders.js`'s `merge()`](https://github.com/cssnano/cssnano/blob/ceb24a1bf3fde0bf39dced9fa05155cdd7cf6964/packages/postcss-merge-longhand/src/lib/decl/borders.js#L205). It goes from [Line 205](https://github.com/cssnano/cssnano/blob/ceb24a1bf3fde0bf39dced9fa05155cdd7cf6964/packages/postcss-merge-longhand/src/lib/decl/borders.js#L205) having CSS of, ```css border-left-style: solid; border-bottom-style: solid; border-right-style: solid; border-top-style: solid; border-left-width: 5px; border-bottom-width: 5px; border-right-width:...

Yeah the Atlasian React `@atlaskit/tree` package implements it. Here's [someones demo](https://77edqe.csb.app/). Users move to the tree item, press ``, and then arrow keys to move the item around and ``...

Just fyi there's a draft requirement in WCAG 2.2 currently in which drag (_hold-click-and-drag_) interactions should also be usable with single clicks, without holding mousedown. This would be for accessibility...

Hmm... two thoughts come to mind... 1) Moving lines of text up and down works because each line can't be rejected as a drop target. In #62 there's the concept...

Great, thanks! So what's the first step? Is it making key bindings configurable, and then adding that mode to move the blue line?