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

@visual-framework/vf-sidebar

v1.0.0-alpha.2

Published

vf-sidebar component

Downloads

1,572

Readme

vf-sidebar component

npm version

About

The vf-sidebar is a media query—less layout component that will alter the layout from inline to block depending on set parameters.

Usage

You can apply the vf-sidebar layout when you have two columns of content with one (if needed) being smaller than the other. When the browser width is small enough so that the 'main' content does not have enough space to be inline with the 'sidebar' it will make both pieces of content act and look like 'block' elements, stacked on top of each other.

By default the width of the main content is set at 50% but can be changed with the CSS custom property --vf-sidebar-main-width which, if using nunjucks can be changed with the yaml key sidebar__main_content_width.

Even thought the vf-sidebar layout has a default spacing design token applied as a CSS custom property fallback it is good practice in the system to use and decalre the spacing CSS class name in your project.

<div class="vf-sidebar vf-sidebar--400">...</div>

<div class="vf-sidebar">...</div>

Class Names

| Class Name | description | usage | | ------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | | vf-sidebar | The layout components default Class | needs to be used once on instances of the vf-sidebar layout component | | vf-sidebar--start | Expects the first child element to be the smallest | | | vf-sidebar--end | Expects the last child element to be the smallest | | | vf-sidebar--Nn | Determines the spacing of the layout when the components are inline or stacked (Nn refers to the spacing value) | |

CSS Custom Properties

| CSS Custom Property | Description | | ----------------------- | -------------------------------------------------------------------------------------------------------------------------- | | --vf-sidebar-main-width | can be used inline on the parent to determine when the layout changes. It sets a minimum width on the larger child element | | --vf-sidebar-spacing | sets the spacing between the gitwo child elements. This is set using a class name vf-sidebar--Nn |

Nunjucks and Yaml Key/Value Pairs

| nunjucjs/yaml key | nunjucjs/yaml value | description | | --------------------------- | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | sidebar__position | left | use when the smallest width content (sidebar) is on the left or at the start | | sidebar__position | start | use when the smallest width content (sidebar) is on the start or at the left | | sidebar__position | right | use when the smallest width content (sidebar) is on the right or at the end | | sidebar__position | end | use when the smallest width content (sidebar) is on the end or at the right || | sidebar__spacing | 400 | gives the space of 1rem between the two child elements | | sidebar__spacing | 600 | gives the space of 1.5rem between the two child elements | | sidebar__spacing | 800 | gives the space of 2rem between the two child elements | | sidebar__main_content_width | Nn% | sets the CSS custom property --vf-sidebar-main-width on the vf-sibebar parent which sets the maximum space the larger width content needs to be before switching from an inline layout to a block layout. This is set in the CSS as 50% by default |

Install

This repository is distributed with [npm][https://www.npmjs.com/]. After [installing npm][https://www.npmjs.com/get-npm] and yarn, you can install vf-sidebar with this command.

$ yarn add --dev @visual-framework/vf-sidebar

Sass/CSS

The style files included are written in Sass. If you're using a VF-core project, you can import it like this:

@import "@visual-framework/vf-sidebar/index.scss";

Make sure you import Sass requirements along with the modules. You can use a project boilerplate or the vf-sass-starter

Help