@bedard/hexboard 0.0.2 → 0.0.4
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 +7 -0
- package/README.md +2 -0
- package/dist/index.d.ts +0 -2
- package/dist/index.js +369 -379
- package/package.json +1 -1
- package/src/lib/components/hexboard/Hexboard.vue +22 -15
- package/src/lib/components/hexboard/constants.ts +0 -1
- package/src/lib/components/hexboard/types.ts +12 -2
- package/src/sandbox/App.vue +42 -1
- package/src/lib/components/hexboard/haptics.ts +0 -56
package/CHANGELOG.md
ADDED
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# `<Hexboard />`
|
|
2
2
|
|
|
3
3
|
[](https://github.com/scottbedard/hexboard/actions/workflows/build.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@bedard/hexboard)
|
|
5
|
+
[](https://bundlephobia.com/package/@bedard/hexboard)
|
|
4
6
|
[](https://github.com/scottbedard/hexboard/blob/main/LICENSE)
|
|
5
7
|
|
|
6
8
|
User interfaces for [hexchess.club](https://hexchess.club).
|
package/dist/index.d.ts
CHANGED
|
@@ -103,8 +103,6 @@ export declare const Hexboard: __VLS_WithTemplateSlots<typeof __VLS_component, _
|
|
|
103
103
|
declare interface HexboardOptions {
|
|
104
104
|
/** position colors */
|
|
105
105
|
colors: [string, string, string];
|
|
106
|
-
/** haptic feedback vibrations */
|
|
107
|
-
haptics: boolean;
|
|
108
106
|
/** color of highlighted position */
|
|
109
107
|
highlightColor: string;
|
|
110
108
|
/** color of active label relative to mouseover */
|