Skip to content

Commit fca46e7

Browse files
committed
Switched to npm package for hover-position
1 parent 9454fe2 commit fca46e7

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
A simple package to reveal some extra information on hover
44

55
> **This package is still under development**
6+
>
67
> Although it's in a usable state, there is still a little work to do - just to refine it
78
> - Primarily, there is CSS to add to the package, document changes and some more testing
89
> - For now, you can implement the styling how you see fit and submit issues for any problems you find

package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"typescript": "^4.2.4"
2626
},
2727
"dependencies": {
28-
"hover-position": "git+https://github.com/TopMarksDevelopment/JavaScript.HoverPosition.git#development"
28+
"@topmarksdevelopment/hover-position": "0.0.0-alpha.0"
2929
}
3030
}

src/Index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { HoverPosition } from "hover-position";
1+
import { HoverPosition } from "@topmarksdevelopment/hover-position";
22
import HoverOptions from "./Interfaces/HoverOptions";
33

44
export class HoverBox {

src/Interfaces/HoverOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CombinedAlignment, PositionAlignment, PositionCollision } from "hover-position";
1+
import { CombinedAlignment, PositionAlignment, PositionCollision } from "@topmarksdevelopment/hover-position";
22

33
export default interface HoverOptions {
44
setMy?: PositionAlignment;

0 commit comments

Comments
 (0)