1.0.0-alpha.2 • Published 3 years ago

@visual-framework/vf-sidebar v1.0.0-alpha.2

Weekly downloads
-
License
Apache 2.0
Repository
-
Last release
3 years ago

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 Namedescriptionusage
vf-sidebarThe layout components default Classneeds to be used once on instances of the vf-sidebar layout component
vf-sidebar--startExpects the first child element to be the smallest
vf-sidebar--endExpects the last child element to be the smallest
vf-sidebar--NnDetermines the spacing of the layout when the components are inline or stacked (Nn refers to the spacing value)

CSS Custom Properties

CSS Custom PropertyDescription
--vf-sidebar-main-widthcan be used inline on the parent to determine when the layout changes. It sets a minimum width on the larger child element
--vf-sidebar-spacingsets 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 keynunjucjs/yaml valuedescription
sidebar__positionleftuse when the smallest width content (sidebar) is on the left or at the start
sidebar__positionstartuse when the smallest width content (sidebar) is on the start or at the left
sidebar__positionrightuse when the smallest width content (sidebar) is on the right or at the end
sidebar__positionenduse when the smallest width content (sidebar) is on the end or at the right
sidebar__spacing400gives the space of 1rem between the two child elements
sidebar__spacing600gives the space of 1.5rem between the two child elements
sidebar__spacing800gives the space of 2rem between the two child elements
sidebar__main_content_widthNn%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. After installing 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