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

focustype

v0.1.2

Published

better looking, intentionally designed focus states for accessible websites

Downloads

382

Readme

focustype focustype

tl;dr better looking, intentionally designed focus states for accessible websites

See it in action at https://ryanberliner.com/focustype/

How to Use

If you are using npm, you can npm i focustype

Otherwise, you can use jsDelivr to reference the latest version from their CDN.

<script async src="https://cdn.jsdelivr.net/npm/[email protected]/dist/focustype.js"></script>

Overview

This is focustype. It provides useful data attributes to isolate focus events based on their origins.

Every browser seems to focus elements under different circumstances. Don't believe me? Go click these bootstrap buttons in different browsers and you'll see how the focus state shows in some browsers but not others. This is because the visual focus state uses the :focus selector, but different browsers focus the element differently on clicking, or tabbing through. This small javascript solution gives you insights into how an element received focus, so you can make the behavior look the same between all browsers under the exact scenarios you wish.

Why Would You Need This?

Focus states are an important part of letting users know what part of your web page currently has focus. This is the case for almost all users of the web (even if you don't realize it), and even more so for those who navigate the web entirely by keyboard, jumping from element to element. You likely care about how your websites elements look for all users, and focustype helps you dial in your design under all circumstances. For mouse users, and keyboard users.

Problems and Notes

Isn't this :focus-visible?

Kinda. However, the current support for this is not great (see support here), and you don't get the additional insight about specific focus origins. Once/if :focus-visible has better support I can see use cases where focustype is overkill.

Mixins

If you are using scss you may find the following mixins helpful.

@mixin key-only-focus {
  &[data-focustype="key"]:focus {
    @content;
  }
}

@mixin mouse-only-focus {
  &[data-focustype="mouse"] {
    @content;
  }
}

@mixin unknown-only-focus {
  &[data-focustype="unknown"]:focus {
    @content;
  }
}

What if the client doesn't have javascript enabled?

Styles should be written such that the usability isn't dependent on javascript. focustype adds a class to the body focustype-activated when it is loaded. You can use this to your advantage.

Form Inputs

I'd personally avoid using key only or mouse only focus styling on certain form inputs. In my opinion many users will start to fill out a form by clicking in, then tabbing through parts, then clicking again. It could be confusing to the user if elements have different looks.

Testing

I've tested this in Chrome, Safari, Firefox on a Mac..... so if you are hoping for a solid solution make sure you test this stuff further. There are no guarantees of this working in all sceneries. LMK if you find issues.