update api-generator

This commit is contained in:
Tuğçe Küçükoğlu 2021-06-14 17:03:46 +03:00
parent 2a2c97703c
commit cb659b73ef
14 changed files with 233 additions and 31 deletions

View file

@ -59,6 +59,18 @@ const PasswordProps = [
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.'
},
{
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."
},
{
name: "inputStyle",
type: "any",
@ -72,16 +84,22 @@ const PasswordProps = [
description: "Style class of the input field."
},
{
name: "hideIcon",
name: "class",
type: "string",
default: "pi pi-eye-slash",
description: "Icon to hide displaying the password as plain text."
default: "null",
description: "Style class of the component."
},
{
name: "showIcon",
name: "style",
type: "any",
default: "null",
description: "Inline of the component."
},
{
name: "panelClass",
type: "string",
default: "pi pi-eye",
description: "Icon to show displaying the password as plain text."
default: "null",
description: "Style class of the overlay panel."
}
];