@bedard/hexboard 0.0.6 → 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 +4 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/lib/index.ts +2 -0
package/CHANGELOG.md
CHANGED
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 */
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/src/lib/index.ts
CHANGED