Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump @progress/wct-a11y-spec from 2.14.0 to 2.14.1 in /src-a11y #2356

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/dateinput/accessibility/wai-aria-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This section lists the selectors, attributes, and behavior patterns supported by
| `.k-input-inner` | `role=textbox` or `nodeName=input` | The element should either be an `<input type="text">` element or should have `role="textbox"` assigned. |
| | `label for` or `aria-label` or `aria-labelledby` | The input needs an accessible name to be assigned to it. |
| | `aria-required=true` | The attribute is rendered only when the DateInput is in a `form` HTML element and announces the required state of the component. |
| | `aria-invalid=true` | Attribute is rendered only when the DateInput is in form and announces the valid state of the component. |
| | `aria-invalid=true` | The attribute is rendered only when the DateInput is in a `form` HTML element and announces the valid state of the component. |
| | `aria-describedby=.k-form-hint id/.k-form-error id` | Points to the hint for the input, or if the input is invalid, to the error message. This attribute should only be present when a hint is set or when the input is invalid. |
| | `readonly=readonly` or `aria-readonly=true` | Attribute is rendered only when the DateInput is readonly. |
| | `tabindex=0` | The element should be focusable. |
Expand Down
8 changes: 4 additions & 4 deletions components/datepicker/accessibility/wai-aria-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ This section lists the selectors, attributes, and behavior patterns supported by
| | `aria-controls=.k-animation-container id` | Points to the popup element. Signifies that the `combobox` element controls the Calendar `grid`. |
| | `aria-activedescendant=.k-calendar-td.k-focus id` | Points to the focused item (date/month/year) in the Calendar Popup. Should only be present when the Popup is open. |
| | `aria-describedby=.k-form-hint id/.k-form-error id` | Points to the hint for the input, or if the input is invalid, to the error message. This attribute should only be present when a hint is set or when the input is invalid. |
| | `readonly=readonly` or `aria-readonly=true` | Attribute is rendered only when the DatePicker is readonly. |
| | `aria-invalid=true` | Attribute is rendered only when the DatePicker is in form and announces the valid state of the component. |
| | `readonly=readonly` or `aria-readonly=true` | The attribute is rendered only when the DatePicker is readonly. |
| | `aria-invalid=true` | The attribute is rendered only when the DatePicker is in a `form` HTML element and announces the valid state of the component. |
| | `tabindex=0` | The element must be focusable. |
| `.k-disabled .k-input-inner` | `disabled=disabled` or `aria-disabled=true` | Attribute is rendered only when the DatePicker is disabled. |
| `.k-disabled .k-input-inner` | `disabled=disabled` or `aria-disabled=true` | The attribute is rendered only when the DatePicker is disabled. |
| `.k-input-button` | `role=button` or `nodeName=button` | The element should either be a `<button>` element or should have `role="button"` assigned. |
| | `aria-label` | The button needs an accessible name to be assigned to it. |
| | `tabindex=-1` | Button element should not be focusable. |
| | `tabindex=-1` | The button element should not be focusable. |

### Calendar Popup

Expand Down
6 changes: 3 additions & 3 deletions src-a11y/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-a11y/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@progress/wct-a11y-spec": "^2.14.0",
"@progress/wct-a11y-spec": "^2.14.1",
"gulp": "^4.0.2",
"gulp-json-editor": "^2.5.6",
"gulp-rename": "^2.0.0",
Expand Down
Loading