1.4.3 • Published 3 years ago

formula-editor v1.4.3

Weekly downloads
301
License
GNU-GPL3.0
Repository
github
Last release
3 years ago

Formula Editor

React based rich text editor for chemical formula

Demo page

Install

npm install formula-editor

Usage

import React, { useState } from 'react';
import FormulaEditor from 'formula-editor';

const FormulaEditorDemo = () => {

    const [editorValue, changeEditorValue] = useState('');

    return (
        <FormulaEditor 
            editorValue = {editorValue}
            onChange = {event => changeEditorValue(event.target.value)}
            placeholder = {'Start typing...'}
        />
    );
};

Available props

proptypedescription
editorValuestringContent of the editor
placeholderstringplaceholder
onChangefunccalled whenever innerHTML changes
onFocusfunccalled whenever editor input gets focus
onBlurfunccalled whenever editor input looses focus
1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.3.2

3 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.3.0

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago