2021-05-12 09:35:29 +00:00
const PasswordProps = [
{
name : "modelValue" ,
type : "any" ,
default : "null" ,
description : "Value of the component."
} ,
2022-06-28 07:01:49 +00:00
{
name : "inputId" ,
type : "string" ,
default : "null" ,
description : "Identifier of the underlying input element."
} ,
2021-05-12 09:35:29 +00:00
{
name : "promptLabel" ,
type : "string" ,
default : "null" ,
description : "Text to prompt password entry. Defaults to PrimeVue Locale configuration."
} ,
{
name : "mediumRegex" ,
type : "string" ,
default : "^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})" ,
description : "Regex for a medium level password."
} ,
{
name : "strongRegex" ,
type : "string" ,
default : "^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})" ,
description : "Regex for a strong level password."
} ,
{
name : "weakLabel" ,
type : "string" ,
default : "null" ,
description : "Text for a weak password. Defaults to PrimeVue Locale configuration."
} ,
{
name : "mediumLabel" ,
type : "string" ,
default : "null" ,
description : "Text for a medium password. Defaults to PrimeVue Locale configuration."
} ,
{
name : "strongLabel" ,
type : "string" ,
default : "null" ,
description : "Text for a strong password. Defaults to PrimeVue Locale configuration."
} ,
{
name : "feedback" ,
type : "boolean" ,
default : "true" ,
description : "Whether to show the strength indicator or not."
} ,
{
name : "toogleMask" ,
type : "boolean" ,
default : "false" ,
description : "Whether to show an icon to display the password as plain text."
} ,
{
name : "appendTo" ,
type : "string" ,
default : "body" ,
description : 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
} ,
2021-06-14 14:03:46 +00:00
{
name : "hideIcon" ,
type : "string" ,
default : "pi pi-eye-slash" ,
description : "Icon to hide displaying the password as plain text."
} ,
{
name : "showIcon" ,
type : "string" ,
default : "pi pi-eye" ,
description : "Icon to show displaying the password as plain text."
} ,
2022-07-29 14:16:14 +00:00
{
name : "inputId" ,
type : "string" ,
default : "null" ,
description : "Identifier of the underlying input element."
} ,
2021-05-12 09:35:29 +00:00
{
name : "inputStyle" ,
type : "any" ,
default : "null" ,
description : "Inline style of the input field."
} ,
{
name : "inputClass" ,
2022-04-25 06:12:32 +00:00
type : "any" ,
2021-05-12 09:35:29 +00:00
default : "null" ,
description : "Style class of the input field."
2021-05-18 09:57:22 +00:00
} ,
2022-07-29 14:16:14 +00:00
{
name : "panelId" ,
type : "string" ,
default : "null" ,
description : "Identifier of the underlying overlay panel element."
} ,
2021-06-14 14:03:46 +00:00
{
name : "panelClass" ,
2021-05-18 09:57:22 +00:00
type : "string" ,
2021-06-14 14:03:46 +00:00
default : "null" ,
description : "Style class of the overlay panel."
2022-07-29 14:16:14 +00:00
} ,
{
name : "panelStyle" ,
type : "string" ,
default : "null" ,
description : "Inline style of the overlay panel."
2021-05-12 09:35:29 +00:00
}
] ;
const PasswordSlots = [
{
name : "header" ,
description : "Custom content for the component's header"
} ,
{
name : "content" ,
description : "Custom content for the component"
} ,
{
name : "footer" ,
description : "Custom content for the component's footer"
}
] ;
module . exports = {
password : {
name : "Password" ,
description : "Password displays strength indicator for password fields." ,
props : PasswordProps ,
slots : PasswordSlots
}
} ;