Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-select-toolbar

StevenIseki37MIT1.1.1

A select toolbar for sharing text highlights similar to medium

react, react-component, react-medium, react-toolbar, react-select-toolbar, react select toolbar, react-selection-toolbar, react selection toolbar, react-highlight-toolbar, react highlight toolbar, react-highlight, react highlight, react-medium-toolbar, medium highlight, select-toolbar

readme

react-select-toolbar

npm version

A select toolbar for sharing text highlights similar to medium

Installation

yarn add react-select-toolbar

Usage

import SelectToolbar from 'react-select-toolbar'
import ReactDOM from 'react-dom'
import React, { Component, PropTypes } from 'react'

const TestComponent = () => (
    <div>
    <div data-selectable>
      <p>Highlight the text to bring up the select toolbar.</p>
    </div>
    <SelectToolbar buttons={['facebook', 'twitter']} />
  </div>
)

ReactDOM.render( <TestComponent />, document.getElementById('root') )

Styles

react-select-toolbar uses uses styled-components 💅 for the base styling.

Development

yarn
yarn dev

Test

yarn test

Build

yarn
yarn build

Publish

npm login
npm version patch
git add -A
git push origin master
npm publish

License

MIT