Skip to content

Commit c555ad0

Browse files
committed
initial commit
1 parent 61679f5 commit c555ad0

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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
99

1010
- Initial release

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Checkout out my <u use:tooltip={{ content: 'Hello World!' }}>tooltip</u>
4343
| Prop | Description | Value |
4444
| :----------- | :------------------------------------------------------------------ | :---------------------------------------------- |
4545
| 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`) |
4747
| 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`) |
4949
| position | The position where the tooltip should appear relative to its parent | `string` (default: `top`) |
5050
| autoPosition | Adjust tooltip position if viewport clipping occurs | `string` (default: `false`) |
5151

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@svelte-plugins/tooltips",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"license": "MIT",
55
"description": "A simple tooltip action and component designed for Svelte.",
66
"author": "Kieran Boyle (https://github.com/dysfunc)",
@@ -27,10 +27,6 @@
2727
"/src",
2828
"/dist"
2929
],
30-
"exports": {
31-
"require": "./lib/index.js",
32-
"import": "./src/index.js"
33-
},
3430
"scripts": {
3531
"prepack": "husky install",
3632
"dev": "rollup -cw",

0 commit comments

Comments
 (0)