@gilchrist/spacnav 1.0.0 → 1.0.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gilchrist/spacnav",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "main": "spacnav.js",
6
6
  "scripts": {
@@ -629,3 +629,5 @@ export function initSpacnavElementMethods () /* void */ {
629
629
  HTMLElement.prototype.iterSpacnavCandidates = iterSpacnavCandidates;
630
630
  HTMLElement.prototype.getSpacnavDistanceTo = getSpacnavDistanceTo;
631
631
  }
632
+
633
+ export default initSpacnavElementMethods;
@@ -1,5 +1,5 @@
1
1
  import { describe, test, it, expect, beforeEach, vi } from "vitest";
2
- import { initSpacnavElementMethods } from "./spatnav.js";
2
+ import initSpacnavElementMethods from "./spacnav.js";
3
3
 
4
4
  // Set up a basic DOM environment for each test
5
5
  beforeEach(() => {