diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml new file mode 100644 index 00000000000..2ca5379d024 --- /dev/null +++ b/.github/workflows/npm-grunt.yml @@ -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 diff --git a/index.html b/index.html new file mode 100644 index 00000000000..743125591d6 --- /dev/null +++ b/index.html @@ -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.