Mike Ellis

Results 31 issues of Mike Ellis

I'm using the `violationCallback` parameter of `cy.checkA11y()` to implement custom logging. Like this: ``` cy.checkA11y(undefined, undefined, showViolations); const showViolations = (violations: Result[]) => { violations.forEach((violation: Result) => { const {...

### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/format-tooltip-input-antd-4-23-5-forked-frqdwz?file=/demo.js) ### Steps to reproduce ##### Example for input out of range (1-10) 1. Put input in focus. 2. Type "11". 3. Hit Tab. #####...

Inactive
⌨️ Accessibility

I've created the following very basic component to start: ``` import * as React from 'react'; import InputMask from 'react-input-mask'; export const NumericFormControl: React.SFC = () => { return ;...

### Reproduction link [https://ant.design/components/table#components-table-demo-head](https://ant.design/components/table#components-table-demo-head) ### Steps to reproduce 1. Turn on screen reader. 2. Go to example URL. 3. Tab to Age column. 4. See the horrible column label announced....

help wanted
⌨️ Accessibility

### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/e9evzr) ### Steps to reproduce 1. Open example. 2. Click button to open notification box. ### What is actually happening? Since `role="alert"` is used, the...

Inactive
⌨️ Accessibility

### Reproduction link [https://ant.design/components/form/#components-form-demo-basic](https://ant.design/components/form/#components-form-demo-basic) ### Steps to reproduce 1. Enter something in the "Username" field (eg. "foo"). 2. Switch your screen reader to Browse Mode. 3. Use arrow navigation to...

help wanted
⌨️ Accessibility

I have a number of workflow jobs that use `cypress-io/github-action` which I have tied to branch protection status checks. Here is an example of a job: ``` - name: Cypress...

existing workaround
unexpected behavior
triaged

**Describe the bug** When a date is manually entered into a DatePicker component instance, if the string entered is invalid (eg. not a valid date string, not within a specified...

### Discussed in https://github.com/JedWatson/react-select/discussions/5557 Originally posted by **mellis481** February 14, 2023 It's possible to set an `aria-label` (or use `aria-labelledby`) on an HTML select option, but that doesn't not appear...

I'd essentially like to create a throttled server. I thought I could do something like this: ``` require('http').createServer(function (request, response) { request.addListener('end', function () { setTimeout(function () { fileServer.serve(request, response);...