@bedard/hexboard 0.0.5 → 0.0.7

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 CHANGED
@@ -1,3 +1,11 @@
1
+ # 0.0.7
2
+
3
+ - Export `defaultOptions` constant and `HexboardOptions` type
4
+
5
+ # 0.0.6
6
+
7
+ - Replaced CC-licensed piece artwork with simple letter representations. Custom piece assets can be provided via the `pieces` prop
8
+
1
9
  # 0.0.5
2
10
 
3
11
  - Rounded SVG path points for consistent SSR hydration
package/dist/index.d.ts CHANGED
@@ -97,10 +97,12 @@ declare type __VLS_WithTemplateSlots<T, S> = T & {
97
97
  /** cancel promotion and restore original selection */
98
98
  declare function cancelPromotion(): void;
99
99
 
100
+ export declare const defaultOptions: HexboardOptions;
101
+
100
102
  export declare const Hexboard: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
101
103
 
102
104
  /** hexboard options */
103
- declare interface HexboardOptions {
105
+ export declare interface HexboardOptions {
104
106
  /** position colors */
105
107
  colors: [string, string, string];
106
108
  /** color of highlighted position */