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

Feature/af password component #1407

Open
wants to merge 32 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
42bd32b
Initial commit for the AF password box core component
kum-sushil Feb 23, 2024
fadf21a
AF Password Component| Updated license year and few code comments blo…
kum-sushil Feb 23, 2024
7752e1f
AF Password Field| Updated Javascript code, updated apps pom.xml.
kum-sushil Feb 27, 2024
2c322ef
AF Password|Test Cases and html updates supporting responsiveness
kum-sushil Mar 4, 2024
390a3fd
AF Password| Test case updates
kum-sushil Mar 4, 2024
eb470c3
AF Password | PR review comments Updates
kum-sushil Mar 11, 2024
ab5b4e7
AF Password| Cypress test cases for editor and runtime JS
kum-sushil Mar 18, 2024
400da15
AF-Password|PR Comments| Removed Constants from FormConstants to dire…
kum-sushil Apr 27, 2024
57c8c09
AF-password||Resolved test cases and password java for exclusive max …
kum-sushil Jun 5, 2024
0da36ae
Fixing flaky test (#1312)
rismehta Jul 11, 2024
c9f0077
AF Password Field| Updated Javascript code, updated apps pom.xml.
kum-sushil Feb 27, 2024
9ecb0d6
AF Password|Test Cases and html updates supporting responsiveness
kum-sushil Mar 4, 2024
e05f21f
AF Password | PR review comments Updates
kum-sushil Mar 11, 2024
a52e9b2
AF-password||Resolved test cases and password java for exclusive max …
kum-sushil Jun 5, 2024
fa45679
Validation pattern fix
kum-sushil Aug 1, 2024
1f9b1ea
Fixing flaky test (#1312)
rismehta Jul 11, 2024
5a4756c
AF Password Field| Updated Javascript code, updated apps pom.xml.
kum-sushil Feb 27, 2024
858ea43
AF Password|Test Cases and html updates supporting responsiveness
kum-sushil Mar 4, 2024
0f802c6
AF Password | PR review comments Updates
kum-sushil Mar 11, 2024
740bde1
AF-password||Resolved test cases and password java for exclusive max …
kum-sushil Jun 5, 2024
9f036bc
Password Component feature addition for eye open and close icons and …
kum-sushil Sep 17, 2024
e6d0182
GH actions (#1428)
rismehta Sep 30, 2024
a647fc3
AF Password Component| Updated license year and few code comments blo…
kum-sushil Feb 23, 2024
75b6d80
AF Password Field| Updated Javascript code, updated apps pom.xml.
kum-sushil Feb 27, 2024
f93ac9e
AF Password|Test Cases and html updates supporting responsiveness
kum-sushil Mar 4, 2024
0f250b1
AF Password | PR review comments Updates
kum-sushil Mar 11, 2024
d1da0a9
Addressed review comments
Nov 22, 2024
85a3153
Fixing GH workflow
rismehta Nov 28, 2024
2c4303c
AF Password|PR review comments
kum-sushil Nov 29, 2024
ffc3f3b
AF-Password-Component |PR review comments fixes
kum-sushil Jan 6, 2025
d4633cc
Fix commit issues
kum-sushil Jan 14, 2025
f193d34
Fix merge conflict issues
kum-sushil Jan 14, 2025
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
Prev Previous commit
Next Next commit
AF Password|Test Cases and html updates supporting responsiveness
  • Loading branch information
kum-sushil committed Jan 14, 2025
commit f93ac9ef35448de39cf81e84ffbce1fb21c77218
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
******************************************************************************/
(function() {
"use strict";
let togglePasswordButton = document.querySelector('.cmp-adaptiveform-password .fisheye');
let passwordInput = document.querySelector('input.cmp-adaptiveform-password__widget');
const togglePasswordButton = document.querySelector('.cmp-adaptiveform-password__input-wrapper .eyeicon');
const passwordInput = document.querySelector('.cmp-adaptiveform-password__input-wrapper input.cmp-adaptiveform-password__widget');
if(togglePasswordButton && passwordInput){
togglePasswordButton.addEventListener('click', function () {
if (passwordInput.type === 'password') {
Expand Down