@bedard/hexboard 0.0.8 → 0.0.10
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/CHANGELOG.md +9 -0
- package/dist/index.js +387 -388
- package/package.json +1 -1
- package/src/lib/components/hexboard/Hexboard.vue +118 -97
- package/src/tests/hexboard.test.tsx +78 -39
- package/src/tests/utils.ts +28 -2
- package/vite.config.ts +18 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# 0.0.10
|
|
2
|
+
|
|
3
|
+
- Fix autoselect not updating targets (https://github.com/scottbedard/hexboard/issues/3)
|
|
4
|
+
|
|
5
|
+
# 0.0.9
|
|
6
|
+
|
|
7
|
+
- Fix click-move capturing (https://github.com/scottbedard/hexboard/issues/1)
|
|
8
|
+
- Remove `data-testid` from built files
|
|
9
|
+
|
|
1
10
|
# 0.0.8
|
|
2
11
|
|
|
3
12
|
- Round SVG coordinates for better SSR hydration
|