@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
18 lines (17 loc) • 911 B
TypeScript
/**
* <p>The <strong>NeonPassword</strong> component is the equivalent of an
* <strong><input type="password" /></strong>. It supports the same properties as
* <a href="/user-input/input"><strong>NeonInput</strong></a> with the exception of the icon which is used to toggle the
* display of the password.
* </p>
*/
declare const _default: import("vue").DefineComponent<{}, {
show: import("vue").Ref<boolean>;
sanitizedAttributes: import("vue").ComputedRef<{
[x: string]: unknown;
}>;
iconClicked: () => void;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "icon-click"[], "icon-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
"onIcon-click"?: ((...args: any[]) => any) | undefined;
}, {}, {}>;
export default _default;