fix(password-input): disable visibility button

- set default values for tooltipAlignment, tooltipPosition
This commit is contained in:
Eric Liu 2021-01-22 15:04:06 -08:00
commit 97d3a9f653
4 changed files with 20 additions and 10 deletions

View file

@ -38,11 +38,13 @@ export interface PasswordInputProps extends svelte.JSX.HTMLAttributes<HTMLElemen
/**
* Set the alignment of the tooltip relative to the icon
* @default "center"
*/
tooltipAlignment?: "start" | "center" | "end";
/**
* Set the position of the tooltip relative to the icon
* @default "bottom"
*/
tooltipPosition?: "top" | "right" | "bottom" | "left";