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

Fix/16728 #16784

Closed
wants to merge 6 commits into from
Closed
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
28 changes: 28 additions & 0 deletions .github/workflows/npm-grunt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Grunt

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
grunt
28 changes: 28 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
1.Component: RadioButton #16553
https://github.com/primefaces/primeng/issues/16553

Issue:The RadioButton component is not functioning correctly with screen readers. When navigating using only the keyboard, the screen reader does not announce when a radio button is checked

Requirement: Radiobutton component should work correctly with the screen readers when navigating using only the keyboard.

2.Component: Carousel accessibility issue #16552
https://github.com/primefaces/primeng/issues/16552

Issue: Aria-hidden element must not be focusable or contain focusable elements.

Requirement: Aria-hidden should not display or contain is focusable element. The need to examine whether elements are hidden using CSS (e.g. display: none) or ARIA attributes such as aria-hidden to ensure that they are correctly blocked from access.

3.table inappropriately displays p-column-title of span #16549
https://github.com/primefaces/primeng/issues/16549

Issue: The hidden p-column-title span data is being displayed.

Requirement: Check the p-column-title span data shouldn't display.

4.Tab navigation not getting focussed on Eye icon in ToggleMask Mode

https://github.com/primefaces/primeng/issues/16555

Issue: Password: Tab navigation not getting focussed on Eye icon in ToggleMask Mode.

Requirement: When user has the focus inside input field, and click tab, then the focus should be redirected to the eye-icon.