Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
grapesjs-tooltip
Advanced tools
Simple, CSS only, tooltip component for GrapesJS
grapesjs-tooltip
tooltip
tooltip
Option | Description | Default |
---|---|---|
id | The ID used to create tooltip block and component | tooltip |
labelTooltip | Label of the tooltip. Used for the block and component name | Tooltip |
blockTooltip | Object to extend the default tooltip block, eg. { label: 'Tooltip', category: 'Extra', ... }. Pass a falsy value to avoid adding the block | {} |
propsTooltip | Object to extend the default tooltip properties, eg. { name: 'Tooltip', droppable: false, ... } | {} |
extendTraits | A function which allows to extend default traits by receiving the original array and returning a new one | traits => traits |
attrTooltip | Tooltip attribute prefix | data-tooltip |
classTooltip | Tooltip class prefix | tooltip-component |
style | Custom CSS styles, this will replace the default one | '' |
styleAdditional | Additional CSS styles | '' |
privateClasses | Make all tooltip relative classes private | true |
showTooltipOnStyle | If true, force the tooltip to be shown when you're styling it | true |
stylableTooltip | Indicate if the tooltip can be styled. You can also pass an array of which properties can be styled. Eg. ['color', 'background-color'] | check the source... |
https://unpkg.com/grapesjs-tooltip
npm i grapesjs-tooltip
git clone https://github.com/artf/grapesjs-tooltip.git
Directly in the browser
<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-tooltip.min.js"></script>
<div id="gjs"></div>
<script type="text/javascript">
var editor = grapesjs.init({
container : '#gjs',
// ...
plugins: ['grapesjs-tooltip'],
pluginsOpts: {
'grapesjs-tooltip': { /* options */ }
}
});
</script>
Modern javascript
import grapesjs from 'grapesjs';
import pluginTooltip from 'grapesjs-tooltip';
const editor = grapesjs.init({
container : '#gjs',
// ...
plugins: [pluginTooltip],
pluginsOpts: {
[pluginTooltip]: { /* options */ }
}
// or
plugins: [
editor => pluginTooltip(editor, { /* options */ }),
],
});
Clone the repository
$ git clone https://github.com/artf/grapesjs-tooltip.git
$ cd grapesjs-tooltip
Install dependencies
$ npm i
Start the dev server
$ npm start
BSD 3-Clause
FAQs
GrapesJS Tooltip component
The npm package grapesjs-tooltip receives a total of 2,070 weekly downloads. As such, grapesjs-tooltip popularity was classified as popular.
We found that grapesjs-tooltip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.