1.2.2 • Published 10 months ago

zero-tooltip v1.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

zero-tooltip   npm

zero-tooltip is a Vue 3 simple tooltip component for displaying information text when hovering over element.

About

The component is designed to enhance user interactions by providing informative tooltips when hovering over specific element by rendering overlay with given text next to it. Components settings are fully customizable.

Install

# npm
npm install zero-tooltip

# yarn
yarn add zero-tooltip

# pnpm
pnpm install zero-tooltip

Register plugin and import styles in main.ts:

import ZeroTooltip from 'zero-tooltip'
import 'zero-tooltip/style.css'

const app = createApp(App)

app.use(ZeroTooltip)

Usage

Tooltip can be used with directive v-tooltip added on elements. The given value is displayed as tooltip's text:

<button v-tooltip="'Submits this form'">Submit</button>

Zero dependencies

This component does not depend on any other package, except Vue 3

Customization

Default position for tooltip is above/on top of the element that is being hovered. You can change position by passing argument to directive:

<button v-tooltip:right="'Submits this form'">Submit</button>

Acceptable arguments are: left | top | right | bottom. This will override tooltip default position that was set during plugin registering process.

You can also define default position globally when registering plugin:

app.use(ZeroTooltip, {
    defaultPosition: 'right'
})

Tooltip component is fully customizable by giving config object as options when registering tooltip plugin:

import ZeroTooltipConfig from 'zero-tooltip'

const tooltipConfig: ZeroTooltipConfig = {
    appendTo: ... ,
    defaultPosition: ... ,
    positions: ... ,
    offsetFromSource: ... ,
    offsetFromViewport: ... ,
    minWidth: ... ,
    maxWidth: ... ,
    tooltipBorderWidth: ... ,
    tooltipClasses: ... ,
    textClasses: ... ,
    arrowSize: ... ,
    arrowClasses: ... ,
    arrowMinOffsetFromTooltipCorner: ... ,
    zIndex: ...
}

app.use(ZeroTooltip, tooltipConfig)

All above settings are optional.

Tooltip can be customizable also for each usage (locally) using same config as follows:

<template>
    <button v-tooltip:right="tooltipConfig">Submit</button>
</template>

<script setup lang="ts">
import ZeroTooltipLocalConfig from 'zero-tooltip'

const tooltipConfig: ZeroTooltipLocalConfig = reactive({
    content: 'This is tooltip',
    appendTo: ... ,
    defaultPosition: ... ,
    positions: ... ,
    offsetFromSource: ... ,
    offsetFromViewport: ... ,
    minWidth: ... ,
    maxWidth: ... ,
    tooltipBorderWidth: ... ,
    tooltipClasses: ... ,
    textClasses: ... ,
    arrowSize: ... ,
    arrowClasses: ... ,
    arrowMinOffsetFromTooltipCorner: ... ,
    zIndex: ... ,
    show: ...
})
</script>

ZeroTooltipConfig

PropertyDefault valueTypeDetails
appendTobodystringA valid CSS query selector to specify where Tooltip gets appended.
defaultPositiontopTooltipPositionPosition of tooltip component relative to element that is being hovered.
positions{ left: 'left', 'right', 'top', 'bottom', top: 'top', 'bottom', 'right', 'left', right: 'right', 'left', 'top', 'bottom', bottom: 'bottom', 'top', 'right', 'left', }TooltipPositionsOrdered list of fallback positions in case tooltip does not have enough space in default position. If none of given positions will have enough space for tooltip, then it will not be rendered.
offsetFromSource10numberTooltip offset in px from element that's being hovered (arrow size is not added to this value)
offsetFromViewport20numberMinimal allowed tooltip offset in px from viewport sides
minWidth100numberMinimal tooltip width in px that will be allowed to render
maxWidth250numberMaximal tooltip width in px that will be allowed to render
tooltipBorderWidth0numberTooltip container border width in px
tooltipClassesundefinedstringList of classes that will be added to tooltip element
textClassesundefinedstringList of classes that will be added to text element
arrowSize5numberLength of arrow hypotenuse in px (arrow is generated using border width property, creating square which gets divided in four triangles, thus arrowSize is length of square side)
arrowClassesundefinedstringList of classes that will be added to arrow element
arrowMinOffsetFromTooltipCorner6numberMinimal allowed arrow offset in px from tooltip corner. Used in situations when tooltip does not have enough space to be centered relative to element that is being hover, thus arrow is rendered closer to one of the tooltip corners
zIndex1number | stringz-index css property value of tooltip

ZeroTooltipLocalConfig

Same as ZeroTooltipConfig with following additions: | Property | Default value | Type | Details | |---|---|---|---| | content | undefined | string | REQUIRED. Tooltip text. Text is rendered as HTML, thus it's possible to give simple HTML structure, e.g., <h1>Tooltip text</h1> | | show | true | boolean | Define whether to show or not to show tooltip |

License

The license is MIT, so any extension, forking is welcome. zero-tooltip is designed as fully customizable, zero dependency, simple tooltip for Vue.js.

1.2.2

10 months ago

1.2.0

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.9

1 year ago

1.2.1

1 year ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago