svelte-hint/README.md

81 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2022-01-13 12:35:07 +00:00
# svelte-hint
2022-01-16 00:27:04 +00:00
Svelte library for tooltips internally powered by the awesome [Fluent UI](https://floating-ui.com/) with sensible default values.
2022-01-13 12:35:07 +00:00
2022-12-26 21:30:19 +00:00
Check out the **[Demo](https://svelte-hint.pages.dev/)** to see it in action.
2022-01-13 14:00:46 +00:00
![Screenshot](.github/screen.png)
2022-01-13 12:35:07 +00:00
2022-12-26 21:39:27 +00:00
![version badge](https://badgen.net/npm/v/svelte-hint)
![downloads badge](https://badgen.net/npm/dt/svelte-hint)
![dependency count](https://badgen.net/bundlephobia/dependency-count/svelte-hint)
![minzip size badge](https://badgen.net/bundlephobia/minzip/svelte-hint)
![types badge](https://badgen.net/npm/types/svelte-hint)
2022-01-13 12:35:07 +00:00
## 🌈 Features
2022-12-26 21:39:27 +00:00
- Automatic positioning & overflow handling on screen edges (Fluent UI).
2022-01-13 12:35:07 +00:00
- Fully typed.
- Sensible default values.
- Use text or custom html/components as tooltips.
## 📀 Installation
```bash
npm install svelte-hint
```
## ⌨️ Usage
### With text
```svelte
<script lang="ts">
2022-12-26 21:30:19 +00:00
import Hint from 'svelte-hint'
2022-01-13 12:35:07 +00:00
</script>
<Hint text="A tooltip!">
<button class="btn btn-success drag">Hover me!</button>
</Hint>
```
### With custom html / components
```svelte
<script lang="ts">
2022-12-26 21:30:19 +00:00
import Hint from 'svelte-hint'
2022-01-13 12:35:07 +00:00
</script>
<Hint>
<button class="btn btn-success drag">Hover me!</button>
<i slot="hint">Some custom html</i>
</Hint>
```
## 🗂 Docs
### Props
2022-05-06 17:05:54 +00:00
| Prop | Type | Default | Description |
| ----------- | ----------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------- |
| `text` | `string` | `''` | Text to be used as the tooltip. If empty the slot will be used. |
| `placement` | `Placement` | `auto` | See the [Fluent UI docs](https://floating-ui.com/docs/computePosition#placement). |
| `boundary` | `HTMLElement \| string` | `'clippingAncestors'` | See the [Fluent UI docs](https://floating-ui.com/docs/detectOverflow#boundary). |
| `offset` | `Options` | `4` | See the [Fluent UI docs](https://floating-ui.com/docs/offset#options). |
| `auto` | `boolean \| 'start' \| 'end'` | `false` | Use the [`autoPlacement`](https://floating-ui.com/docs/autoPlacement) middleware. If set `placement` will be ignored. |
2022-01-13 12:35:07 +00:00
### Slots
#### `hint`
> Only works if the `text` props is empty. Otherwise the slot is ignored.
If you don't want to use the pre-styled tooltip you are free to use whatever html / svelte code you'd like as the tooltip.
```svelte
<Hint>
<div>Hover me</div>
<div slot="hint">Some custom html</div>
</Hint>
```