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-layout-cluster

v1.0.0

Published

A layout primitive for grouping elements together in an inline fashion but using Flexbox and gap to eliminate unneeded whitespace

Downloads

4

Readme

Global layout cluster

The Cluster component is a simple layout primitive for grouping (clustering) elements together. It improves upon basic inline and inline-block solutions by using Flexbox and the gap property to apportion space only between the child elements.

Branding

The global-layout-cluster component can be used in any brand context. You just need to import the component itself:

@import '@springernature/global-layout-stack/scss/10-settings/default';
@import '@springernature/global-layout-stack/scss/50-components/layout-cluster';

Usage

Default settings

A cluster of buttons:

<fieldset class="l-cluster">
    <button class="u-button" type="button">Edit</button>
	<button class="u-button" type="button">Save</button>
	<button class="u-button" type="button">Delete</button>
	<button class="u-button" type="button">Share</button>
</fieldset>

Alignment

You can align the cluster’s child elements along both axes with the modifiers l-cluster--right, l-cluster--center, l-cluster--top, l-cluster--middle, and l-cluster--bottom.

By default, the elements are justified to the left and aligned with stretch. This is particularly useful for clustering text inputs with (submit) buttons, since the elements will stretch to share the same height regardless of padding and font-size.

<label for="name">Name:</label>
<div class="l-cluster">
    <input type="text" id="name" name="name">
</div>

Custom gap

The global-layout-cluster component’s gap setting is mapped to a CSS custom property, meaning you can alter it inline. In the following example, the gap is 0, making the submit button flush with the input (1em is the default value).

<label for="name">Name:</label>
<div class="l-cluster" style="--cluster-gap: 0">
    <input type="text" id="name" name="name">
</div>