grapesjs-tooltip

WebJar for grapesjs-tooltip

License

License

BSD 3-Clause
Categories

Categories

JavaScript Languages
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

grapesjs-tooltip
Last Version

Last Version

0.1.5
Release Date

Release Date

Type

Type

jar
Description

Description

grapesjs-tooltip
WebJar for grapesjs-tooltip
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/artf/grapesjs-tooltip

Download grapesjs-tooltip

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/grapesjs-tooltip/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>grapesjs-tooltip</artifactId>
    <version>0.1.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/grapesjs-tooltip/
implementation 'org.webjars.npm:grapesjs-tooltip:0.1.5'
// https://jarcasting.com/artifacts/org.webjars.npm/grapesjs-tooltip/
implementation ("org.webjars.npm:grapesjs-tooltip:0.1.5")
'org.webjars.npm:grapesjs-tooltip:jar:0.1.5'
<dependency org="org.webjars.npm" name="grapesjs-tooltip" rev="0.1.5">
  <artifact name="grapesjs-tooltip" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='grapesjs-tooltip', version='0.1.5')
)
libraryDependencies += "org.webjars.npm" % "grapesjs-tooltip" % "0.1.5"
[org.webjars.npm/grapesjs-tooltip "0.1.5"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

GrapesJS Tooltip

Simple, CSS only, tooltip component for GrapesJS

Demo

Summary

  • Plugin name: grapesjs-tooltip
  • Components
    • tooltip
  • Blocks
    • tooltip

Options

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...

Download

  • CDN
    • https://unpkg.com/grapesjs-tooltip
  • NPM
    • npm i grapesjs-tooltip
  • GIT
    • git clone https://github.com/artf/grapesjs-tooltip.git

Usage

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 */ }),
  ],
});

Development

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

License

BSD 3-Clause

Versions

Version
0.1.5
0.1.2