
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
@svelte-plugins/tooltips
Advanced tools
A simple tooltip action and component designed for Svelte.
Try it in the Svelte REPL.
yarn add -D @svelte-plugins/tooltips
# or with NPM
npm i -D @svelte-plugins/tooltips
<script>
import { Tooltip } from "@svelte-plugins/tooltips";
</script>
<Tooltip content="Hello world!">
Check out my tooltip
</Tooltip>
<script>
import { tooltip } from "@svelte-plugins/tooltips";
</script>
Checkout out my <u title="Hello World!" use:tooltip>tooltip</u>
Checkout out my <u use:tooltip={{ content: 'Hello World!' }}>tooltip</u>
Prop | Description | Value |
---|---|---|
action | The action that triggers the tooltip (hover | click) |
animation | The animation to apply to the tooltip | string (default: ``) |
arrow | If false , the tooltip arrow will not be shown. | boolean (default: true ) |
autoPosition | Adjust tooltip position if viewport clipping occurs | string (default: false ) |
content | The string or object containing componentref and props | string |
maxWidth | The max allowable width of the tooltip content | number (default: 200 ) |
position | The position where the tooltip should appear relative to its parent | string (default: top ) |
theme | The CSS theme class name | string (default: ``) |
style | The object containing theme variable overrides | object (default: null ) |
Prop | Description | Value |
---|---|---|
content.component | Svelte component | component (default: null ) |
content.props | Any component propeties | object (default: null ) |
<script>
import ComponentAsTooltip from './ComponentAsTooltip';
</script>
Checkout out my <span use:tooltip={{ content: { component: ComponentAsTooltip, props: { title: 'Hello World!' } } }}>tooltip</span>
You can customize tooltips theme using several methods:
theme
property that includes all of your CSS variables overridesstyle
propertyTooltip CSS variables:
--tooltip-arrow-size: 10px;
--tooltip-background-color: rgba(0, 0, 0, 0.9);
--tooltip-border-radius: 4px;
--tooltip-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.25);
--tooltip-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
'Helvetica Neue', sans-serif;
--tooltip-font-size: 14px;
--tooltip-font-weight: 500;
--tooltip-line-height: 1.25rem;
--tooltip-color: #fff;
--tooltip-offset-x: 12px;
--tooltip-offset-y: 12px;
--tooltip-padding: 12px;
--tooltip-white-space-hidden: nowrap;
--tooltip-white-space-shown: normal;
--tooltip-z-index: 100;
// action
<span title="hello world!" use:tooltip={{ theme: 'custom-tooltip' }}>Hover over me</span>
// component
<Tooltip content="hello world!" theme="custom-tooltip">Hover over me</Tooltip>
<style>
:global(.tooltip.custom-tooltip) {
--tooltip-background-color: hotpink;
--tooltip-box-shadow: 0 1px 8px pink;
}
</style>
// action
<span title="hello world!" use:tooltip={{ style: { backgroundColor: 'blue', borderRadius: '10px' } }}>Hover over me</span>
// component
<Tooltip content="hello world!" style={{ style: { backgroundColor: 'blue' } }}>Hover over me</Tooltip>
0.1.8 - 2022-09-12
FAQs
A simple tooltip action and component designed for Svelte.
The npm package @svelte-plugins/tooltips receives a total of 3,927 weekly downloads. As such, @svelte-plugins/tooltips popularity was classified as popular.
We found that @svelte-plugins/tooltips 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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.