@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 ADDED
@@ -0,0 +1,7 @@
1
+ # 0.0.4
2
+
3
+ - Removed reference to `DOMRect` browser API
4
+
5
+ # 0.0.3
6
+
7
+ - Initial release of `@bedard/hexchess`, see sandbox for example usage.
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # `<Hexboard />`
2
2
 
3
3
  [![Build](https://github.com/scottbedard/hexboard/actions/workflows/build.yml/badge.svg)](https://github.com/scottbedard/hexboard/actions/workflows/build.yml)
4
+ [![NPM Version](https://img.shields.io/npm/v/%40bedard%2Fhexboard)](https://www.npmjs.com/package/@bedard/hexboard)
5
+ [![Bundle size](https://img.shields.io/bundlephobia/minzip/%40bedard%2Fhexboard?label=gzipped)](https://bundlephobia.com/package/@bedard/hexboard)
4
6
  [![License](https://img.shields.io/badge/license-MIT-blue)](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 */