This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

react-bootswatch-select
TypeScript icon, indicating that this package has built-in type declarations

1.0.11 • Public • Published

React Bootswatch Select

Bootswatch theme selector component for React.
Try Bootswatch themes on your Bootstrap site with one line!

npm Version Tests Status Deploy Status

Documentation

Read the official documentation.

👁️ Live Demo

Overview

Drop a Bootswatch theme selector onto your React site with just one line!

This package includes three components:

  • BootswatchSelect - A Bootswatch theme selector that supports three modes: visible, hidden, and display-only.
  • Bootstrap - A component for easily adding Bootstrap to your site, for convenience.
  • FontAwesome - A component for easily adding Font Awesome to your site, for convenience.

By default, all CSS is loaded from bootstrapcdn.com.

Features include:

  • 🎨 Easily try Bootswatch themes
    • Want to quickly skin your Bootstrap site? Drop this component in and try out Bootswatch with one line!
  • 🌠 Build beautiful prototypes quickly
    • Quickly swatch out your next big project so you can focus on the stuff that matters.
  • 🎛️ Visible, hidden, and display-only modes
    • Several modes for the level of integration that suits you.
  • 🎁 Quickly drop in Bootstrap and Font Awesome
    • For convenience, Bootstrap and Font Awesome CDN components are included to get you up and running fast.

Installation

npm i react-bootswatch-select

Quick Start

If Bootstrap is loaded already:

Selector Visible

import { BootswatchSelect } from 'react-bootswatch-select';
...
<BootswatchSelect version={'4.4.1'} className="form-control" />

This select will dynamically add the theme CSS link in the head when a Bootswatch style is selected.

Selector Hidden

import { BootswatchSelect } from 'react-bootswatch-select';
...
<BootswatchSelect version={'4.4.1'} selectedThemeName="cerulean" selectorHidden />

This will add the Bootswatch CSS theme selected in the head and not render the select on the page.

Display-Only (No Head Link)

import { BootswatchSelect } from 'react-bootswatch-select';
...
<BootswatchSelect className="form-control" disableHeadLink />

This will render the select only and will not dynamically add the selected theme CSS link in the head. It just becomes a plain old select. Use onChange to listen for selection changes.

Bootstrap + Bootswatch

If you'd like to load Bootstrap (or Font Awesome) from the CDN before the BootswatchSelect is used:

import { Bootstrap, FontAwesome, BootswatchSelect } from 'react-bootswatch-select';
...
<Bootstrap version={'4.4.1'} />
<FontAwesome version={'4.7.0'} />
<BootswatchSelect version={'4.4.1'} className="form-control" />

All CSS is loaded from bootstrapcdn.com by default. Check there for the latest version.

Font Awesome is not required for BootswatchSelect, but is included here in case you want it.

TypeScript

Type definitions have been included for TypeScript support.

Logo Attribution

Logo graphics by Twemoji, licensed under CC-BY 4.0. Favicon by favicon.io.

Contributing

Open source software is awesome and so are you. 😎

Feel free to submit a pull request for bugs or additions, and make sure to update tests as appropriate. If you find a mistake in the docs, send a PR! Even the smallest changes help.

For major changes, open an issue first to discuss what you'd like to change.

See Kindling for npm script documentation.

Found It Helpful? Star It!

If you found this project helpful, let the community know by giving it a star: 👉

MIT License

Copyright © 2020 Justin Mahar https://github.com/justinmahar

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i react-bootswatch-select

Weekly Downloads

83

Version

1.0.11

License

MIT

Unpacked Size

88 kB

Total Files

16

Last publish

Collaborators

  • justinmahar