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

@springernature/global-status-message

v5.0.1

Published

Global Status Message component

Downloads

8,495

Readme

Global status message

Status message lets you add different types of message banners to a page. These can either be always on the page or appear based on certain conditions or events.

When to use this component

Use a status message when you need to tell the user something that is additional to the main content of the page.

For example, use a:

  • success status message to tell the user that something they did has been successful
  • warning status message to tell the user something they need to know about the content or service
  • info status message to give the user extra information about the content they are looking at
  • error status message to tell the user that something is not working

When not to use this component

Do not use an error status message for form validation. Instead, use the validation and error summary from the global forms component.

How it works

Use status messages sparingly. People often miss them and using them frequently will likely make this worse.

Installation

To use the status message component, enter the following command in your Terminal:

npm install @springernature/global-status-message

Then, import the installed component code into your scss file:

// Include this with your settings
@import '@springernature/global-status-message/scss/10-settings/default';

// Include this with your other components
@import '@springernature/global-status-message/scss/50-components/status-message';

Message types

Set the style of the message type by adding one of these modifiers.

Warning

"type": "warning"

Success

"type": "success"

Info

"type": "info"

Error

"type": "error"

To set a border and padding around a status message, use:

"boxed": "true"

Live region

If your status message appears or changes based on JavaScript events, then you need to use ARIA live region. This means that screen readers will announce the message when it appears or changes.

"liveRegion": "true"

Status added

Add the live region to the page before the icon and message inside it.

<!-- first add the wrapper -->
<div class="c-status-message" role="status" aria-live="polite">
</div>

Add the message and icon to this empty state by populating the message and iconURL properties in the data.

<!-- then add the contents -->
<div class="c-status-message" role="status" aria-live="polite">
    <svg class="c-status-message__icon" width="24" height="24" role="img" aria-label="warning:" focusable="false">
        <use xlink:href="path/to/warning.svg#i-warning"></use>
    </svg>
	<div class="c-status-message__message" tabindex="-1"{{#if id}} id="{{id}}-message"{{/if}}>
		A new warning message
	</div>
</div>

Status changed

If you change the message after the page has loaded, a screen reader would announce the new message.

Focus

Supply an id in the data to make the status message focusable programmatically.

Focusing the message ensures it is visible in the viewport and a screen reader will announce it. If it is not appropriate to move focus to the message, rely on the live region for announcement in screen readers.

Template

Find a configurable template in the status message view folder.

Help improve this page

If you’ve got a question, idea or suggestion about how to improve this component or guidance, post in the #ask-elements Slack channel.