Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
aor-rich-text-input
Advanced tools
<RichTextInput> component for admin-on-rest, useful for editing HTML code in admin GUIs.
<RichTextInput>
for admin-on-restFor editing HTML with admin-on-rest, use the <RichTextInput>
component. It embarks quill, a popular cross-platform Rich Text Editor.
npm install aor-rich-text-input --save-dev
import React from 'react';
import {
DateInput,
Edit,
EditButton,
LongTextInput,
TextInput,
} from 'admin-on-rest/mui';
import RichTextInput from 'aor-rich-text-input';
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'] ]} />
This library is licensed under the MIT Licence, and sponsored by marmelab.
FAQs
<RichTextInput> component for admin-on-rest, useful for editing HTML code in admin GUIs.
The npm package aor-rich-text-input receives a total of 31 weekly downloads. As such, aor-rich-text-input popularity was classified as not popular.
We found that aor-rich-text-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.