@dra2020/baseclient 1.0.24 → 1.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -103,5 +103,5 @@ export function boundboxIntersects(bb1: BoundBox, bb2: BoundBox): boolean
103
103
 
104
104
  export function boundboxContains(bb: BoundBox, x: number, y: number): boolean
105
105
  {
106
- return !(bb.left >= x || bb.right < x || bb.top <= y || bb.bottom > y);
106
+ return !(bb.left >= x || bb.right < x || bb.top >= y || bb.bottom < y);
107
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/baseclient",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "Utility functions for Javascript projects.",
5
5
  "main": "dist/baseclient.js",
6
6
  "types": "./dist/all/all.d.ts",