@lokeshpahal/alert-variant-tune
v1.0.3
Published
Editor.js Alert Tune allows applying one of defined text alert variant: **Info**, **Warning**, and **Danger** to any block.
Downloads
9
Readme
Text Variant Tune
Editor.js Alert Tune allows applying one of defined text alert variant: Info, Warning, and Danger to any block.
How to use
- Install
yarn add @editorjs/text-variant-tune
- Connect
import EditorJS from '@editorjs/editorjs';
import AlertVariantTune from 'lokeshpahal/text-alert-tune';
/**
* Editor.js configuration
*/
const editor = new EditorJS({
/**
* Connect tool
*/
tools: {
alertVariant: AlertVariantTune
},
/**
* Apply to all the blocks
*/
tunes: ['alertVariant'],
// ...
})
Optionally, you can connect this Tune only for specified blocks:
import EditorJS from '@editorjs/editorjs';
import AlertVariantTune from 'lokeshpahal/text-alert-tune';
/**
* Editor.js configuration
*/
const editor = new EditorJS({
tools: {
alertVariant: AlertVariantTune,
paragraph: { // apply only for the 'paragraph' tool
tunes: ['alertVariant'],
}
},
})