
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
editorjs-plugin-textfield
Advanced tools
Table Block for the Editor.js.
Get the package
npm i editorjs-plugin-textfield
Include module in your application
import TextField from 'editorjs-plugin-textfield';
Add a new Tool to the tools
property of the Editor.js initial config.
const editor = EditorJS({
...
tools: {
...
textField: {
class: TextField,
}
}
...
});
Or init Table Tool with additional settings
const editor = EditorJS({
...
tools: {
...
textField: {
class: TextField,
config: {
placeholder: 'Enter something',
type: 'text',
},
},
},
...
});
Field | Type | Description |
---|---|---|
placeholder | text | Initial placeholder, default is Enter your text here |
type | TextFieldType | Inital input field type, default is text . |
This Tool returns data
with following format
Field | Type | Description |
---|---|---|
value | string | the input field value |
placeholder | string | the placeholder value when it's set |
type | TextFieldType | the input field type |
width | TextFieldWidthSize | the input field width |
fontSize | TextFieldFontSize | the input field font size |
position | TextFieldPosition | the input field position |
{
"type" : "textField",
"data": {
"value": "Hello World",
"placeholder": "Enter text here",
"type": "text",
"width": "md",
"fontSize": "md",
"position": "right"
}
}
const i18n = {
messages: {
tools: {
textField: {
'Style': 'Style',
'Width': 'Width',
'Full Width': 'Full Width',
'Large': 'Large',
'Medium': 'Medium',
'Small': 'Small',
'Font Size': 'Font Size',
'X-Small': 'X-Small',
'Small': 'Small',
'Medium': 'Medium',
'Large': 'Large',
'X-Large': 'X-Large',
'Position': 'Position',
'Left': 'Left',
'Center': 'Center',
'Right': 'Right',
'Type': 'Type',
'Text': 'Text',
'Password': 'Password',
'Email': 'Email',
'Number': 'Number',
'Tel': 'Tel',
'Url': 'Url',
'Date': 'Date',
'Time': 'Time',
'Month': 'Month',
'Week': 'Week',
'Datetime-Local': 'Datetime-Local',
'Placeholder': 'Placeholder',
}
}
}
}
Since this library bundle some css for both of light and dark.
If you want to apply dark theme, you can set dark
class to the parent element of the editor.
<div id="editorjs" class="dark"></div>
This project is licensed under the MIT License
FAQs
A custom text field plugin for Editor.js
The npm package editorjs-plugin-textfield receives a total of 0 weekly downloads. As such, editorjs-plugin-textfield popularity was classified as not popular.
We found that editorjs-plugin-textfield demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.