1.0.20 • Published 7 years ago
@rqsts/react-input-rich-text v1.0.20
<RichTextInput> for @rqsts/react-app
For editing HTML with @rqsts/react-app, use the <RichTextInput> component. It embarks quill, a popular cross-platform Rich Text Editor.

Installation
npm install rqsts-input-rich-text --save-devUsage
import React from 'react';
import {
DateInput,
Edit,
EditButton,
LongTextInput,
TextInput,
} from '@rqsts/react-app';
import RichTextInput from '@rqsts/react-input-rich-text';
const PostTitle = ({ record }) => {
return <span>Post {record ? `"${record.title}"` : ''}</span>;
};
export const PostEdit = (props) => (
<Edit title={<PostTitle />} {...props}>
<DisabledInput label="Id" source="id" />
<TextInput source="title" validation={{ required: true }} />
<LongTextInput source="teaser" validation={{ required: true }} />
<RichTextInput source="body" validation={{ required: true }} />
<DateInput label="Publication date" source="published_at" />
</Edit>
);You can customize the rich text editor toolbar using the toolbar attribute, as described on the Quill official toolbar documentation.
<RichTextInput source="body" toolbar={[ ['bold', 'italic', 'underline', 'link'] ]} />License
This library is licensed under the MIT License, and sponsored by marmelab.
1.0.20
7 years ago
1.0.20-alpha.0
7 years ago
1.0.19
7 years ago
1.0.17
7 years ago
1.0.16
7 years ago
1.0.14
7 years ago
1.0.13-rc02-snapshot
7 years ago
1.0.13-rc01-snapshot
7 years ago
1.0.7
7 years ago
1.0.5
7 years ago
1.0.5-alpha.1
7 years ago
1.0.4
7 years ago
1.0.0
7 years ago