npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@evanminto/show-password-element

v2.0.0

Published

Web component for toggling visiblity of a password field

Downloads

14

Readme

<show-password> Element

Web component for toggling visiblity of a password field

Setup

HTML

<script src="path/to/@evanminto/show-password-element/dist/browser.js">

<!-- Base styles -->
<link rel="stylesheet" src="path/to/@evanminto/show-password-element/dist/base.css">

<!-- Overlay layout styles (optional) -->
<link rel="stylesheet" src="path/to/@evanminto/show-password-element/dist/overlay-inline-end.css">

ES Modules

You can also load the component directly in your JavaScript, which allows you to define your own custom name for the element or control the timing of module loading and custom element definition.

import { ShowPasswordElement } from '@evanminto/show-password-element';

customElement.define('show-password-element', ShowPasswordElement);

Usage

Basic

<show-password>
  <input type="password">
</show-password>

Specify Exact Input

<show-password>
  <input type="text">
  <!-- Specify this password and ignore the text input -->
  <input type="password" data-behavior="input">
</show-password>

Custom Toggle Label and Styles

<show-password>
  <input type="password">
  <span slot="toggle-content">Show PW</span>
</show-password>

<style>
  show-password::part(toggle) {
    color: red;
  }

  show-password::part(toggle-pressed) {
    color: darkred;
  }
</style>

Custom Toggle Button

<show-password>
  <input type="password">
  <button slot="toggle" data-behavior="toggle">Show</button>
</show-password>

Two Custom Buttons

<show-password>
  <input type="password">

  <div slot="toggle">
    <button data-behavior="show">Show</button>
    <button data-behavior="hide">Hide</button>
  </div>
</show-password>

Attributes

visible

Represents whether the password text is currently visible. Adding or removing it will change the visibility, and changes caused by other mechanisms (such as the user clicking the toggle) will be reflected in the attribute.

Properties

visible

Read-write boolean property representing the same value as the visible attribute. There is no toggle() method, but you can easily do the following to perform a toggle in JavaScript:

showPassword.visible = !showPassword.visible;

Events

show-password-toggle

Fired on the <show-password> element when the visibility has been toggled. If canceled, the toggle will not occur.

Behaviors

Behaviors can be assigned to descendants of <show-password> using the data-behavior attribute, enabling you to bring your own markup and hook it up to the element’s built-in behaviors.

toggle

When clicked, toggles visible on and off. The toggle element will also have its aria-pressed attribute toggled between true and false to reflect the current state for assistive technology.

show

When clicked, sets visible to true.

hide

When clicked, sets visible to false.