JSPM

@avsync.live/formation

0.6.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 86
  • Score
    100M100P100Q122021F
  • License MIT

A component library based on React, Styled Components and CSS variables.

Package Exports

  • @avsync.live/formation
  • @avsync.live/formation/dist/cjs/index.js
  • @avsync.live/formation/dist/esm/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@avsync.live/formation) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Formation

Storybook | GitHub Repository | NPM Package

Formation is a component library based on React, Styled Components and CSS variables.

Installation

yarn add @avsync.live/formation

Usage

  import React from 'react'
  import { Button } from '@avsync.live/formation'

  const MyComponent = () => {
    return <Button text='Click me' />
  }

Icons

Formation uses FontAwesome v6 and supports both pro and free icons.

// import FontAwesome in your project
import '@fortawesome/fontawesome-svg-core/styles.css'
import { library } from '@fortawesome/fontawesome-svg-core'

import { faHeart } from '@fortawesome/free-solid-svg-icons'

library.add(faHeart)

// in your component
import React from 'react'
import { Button } from '@avsync.live/formation'

const MyComponent = () => {
  return <Button 
    text='Click me' 
    icon='heart' // name of the icon without the "fa" and in kebab-case
    iconPrefix='fas' // fas, far, fal, etc
   />;
}

Theming

Theming is based on CSS variables.

Why Formation?

  • Responsive from the smallest of phones to the largest of multi-window 4K monitors
  • Touch-first
  • No reliance on right clicks
  • No reliance on hover states
  • Allow for hold-to-drag and swiping, but also provide tap/click-only alternatives
  • Minimal use of animations
  • Easily modify the styling using css variables
  • Prefer a small inline dropdown over a context-changing modal popup.

Implementation

Philosophy

The name Formation expresses both the form embodied by the user interface, and the process by which user interaction forms the desired outcome of the application. The layout of the document is also composed of a formation of components.

Formation adheres to the Unimpeded Design System philosophy, where users do not have to wait for animations to complete, or for the app to finishing changing modes in order to proceed with their task. The user is only limited physically by their reaction time.