Accessibility Password: aria-* properties added

This commit is contained in:
Tuğçe Küçükoğlu 2022-07-29 17:16:14 +03:00
parent 9ba22cf24c
commit 20edb1c247
4 changed files with 51 additions and 9 deletions

View file

@ -77,6 +77,12 @@ const PasswordProps = [
default: "pi pi-eye",
description: "Icon to show displaying the password as plain text."
},
{
name: "inputId",
type: "string",
default: "null",
description: "Identifier of the underlying input element."
},
{
name: "inputStyle",
type: "any",
@ -89,11 +95,23 @@ const PasswordProps = [
default: "null",
description: "Style class of the input field."
},
{
name: "panelId",
type: "string",
default: "null",
description: "Identifier of the underlying overlay panel element."
},
{
name: "panelClass",
type: "string",
default: "null",
description: "Style class of the overlay panel."
},
{
name: "panelStyle",
type: "string",
default: "null",
description: "Inline style of the overlay panel."
}
];