File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ 0.1.0 ] ( https://github.com/svelte-plugins/tooltips/releases/tag/v0.1.0 ) - 2022-08-21
8
+ ## [ 0.1.1 ] ( https://github.com/svelte-plugins/tooltips/releases/tag/v0.1.0 ) - 2022-08-21
9
9
10
10
- Initial release
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ Checkout out my <u use:tooltip={{ content: 'Hello World!' }}>tooltip</u>
43
43
| Prop | Description | Value |
44
44
| :----------- | :------------------------------------------------------------------ | :---------------------------------------------- |
45
45
| content | The string or object containing componentref and props | ` string ` | ` object ` component (default: ``) |
46
- | showArrow | If ` false ` , the tooltip arrow will not be shown. | ` boolean ` (default: ` true ` ) |
46
+ | arrow | If ` false ` , the tooltip arrow will not be shown. | ` boolean ` (default: ` true ` ) |
47
47
| animation | The animation to apply to the tooltip | ` string ` (default: ``) |
48
- | maxWidth | Size of the obstruction grid | ` number ` (default: ` 200 ` ) |
48
+ | maxWidth | The max allowable width of the tooltip content | ` number ` (default: ` 200 ` ) |
49
49
| position | The position where the tooltip should appear relative to its parent | ` string ` (default: ` top ` ) |
50
50
| autoPosition | Adjust tooltip position if viewport clipping occurs | ` string ` (default: ` false ` ) |
51
51
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @svelte-plugins/tooltips" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"license" : " MIT" ,
5
5
"description" : " A simple tooltip action and component designed for Svelte." ,
6
6
"author" : " Kieran Boyle (https://github.com/dysfunc)" ,
27
27
" /src" ,
28
28
" /dist"
29
29
],
30
- "exports" : {
31
- "require" : " ./lib/index.js" ,
32
- "import" : " ./src/index.js"
33
- },
34
30
"scripts" : {
35
31
"prepack" : " husky install" ,
36
32
"dev" : " rollup -cw" ,
You can’t perform that action at this time.
0 commit comments