SamyPesse / draft-js-multidecorators

Combine multiple decorators for DraftJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

draft-js-multidecorators

Build Status NPM version

Combine multiple Draft's decorators into one.

Installation

$ npm install draft-js-multidecorators

Usage

var Draft = require('draft-js');
var MultiDecorator = require('draft-js-multidecorators');

var decorator = new MultiDecorator([
    new SomeCustomDecorator(),

    // This decorator will have more priority:
    new Draft.CompositeDecorator([ ... ])
]);

var editorState = Draft.EditorState.createEmpty(decorator)

See also

You can use SimpleDecorator to easily build decorators.

About

Combine multiple decorators for DraftJS

License:Apache License 2.0


Languages

Language:JavaScript 100.0%