Socket
Socket
Sign inDemoInstall

@thoughtbot/design-system

Package Overview
Dependencies
0
Maintainers
6
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thoughtbot/design-system


Version published
Weekly downloads
7
decreased by-69.57%
Maintainers
6
Install size
141 kB
Created
Weekly downloads
 

Changelog

Source

[0.7.2] - 2021-10-21

Changed

  • Add thoughtbot logos
  • Update documentation to include instructions for aliasing the package and using assets in Rails asset pipeline
  • Add .tool-versions for asdf users

Readme

Source

thoughtbot design system (tbds)

A design system for thoughtbot websites.

Purpose

The purpose of the thoughtbot design system is to…

  • Learn about design systems so that we establish our skillset in the space and provide services to our clients.
  • Support our internal and external websites and set a minimum standard of design, accessibility, maintainability, and quality.

Applications using tbds

  • Hub
  • thoughtbot.com
  • thoughtbot search
  • tbot
  • Vellum

Installation for Ruby on Rails

tbds is available through npm and requires Rails 5.1+. Yarn is used to support Heroku deployment.

  1. Make sure you have the Yarn package manager installed: https://yarnpkg.com/en/docs/install

  2. Install the design system package and save it as a dependency:

    yarn add @thoughtbot/design-system
    
  3. Import the system in your Sass manifest:

    @import "@thoughtbot/design-system/src/index";
    

Alternatively, you can assign an alias to the package for more terse usage:

  1. Install the design system package with an alias

    yarn add tbds@npm:@thoughtbot/design-system
    
  2. Import the system using the alias

    @import "tbds/src/index";
    

To import assets using the Rails asset pipeline:

  1. Add node_modules to the asset path.

    # assets.rb
    Rails.application.config.assets.paths << Rails.root.join('node_modules')
    
  2. Use the assets in *.rb and *.erb.

    image_tag "@thoughtbot/design-system/src/logo/horizontal.svg", title: "thoughtbot"
    

Deploy Ruby on Rails app with tbds to Heroku

  1. Add webpacker to your Gemfile and install:

    gem "webpacker", require: false
    
    bundle install
    
  2. Add the Node.js Buildpack to your Heroku app.

    Note: You'll need to order the buildpacks to have Node.js first, followed by Ruby.

Compiled CSS

Each version of tbds (starting with v0.7.0) is available as a minified CSS file through the unpkg CDN. While this method is not recommended for production usage, it can be useful for adding tbds as an external stylesheet to CodePen’s or static sites to quickly prototype ideas.

https://unpkg.com/@thoughtbot/design-system@0.7.1/dist/tbds.css

Browser support

tbds supports:

  • Latest versions of Chrome, Firefox, and Safari
  • Edge 15+

License

thoughtbot/design-system is Copyright (c) 2020 thoughtbot, inc. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About

thoughtbot

thoughtbot/design-system is maintained and funded by thoughtbot, inc. The names and logos for thoughtbot are trademarks of thoughtbot, inc.

We love open source software! See our other projects or hire us to help build your product.

FAQs

Last updated on 22 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc