cm-chessboard 7.3.3 → 7.3.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/README.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -356,8 +356,9 @@ export const EXTENSION_POINT = {
|
|
|
356
356
|
positionChanged: "positionChanged", // the positions of the pieces was changed
|
|
357
357
|
boardChanged: "boardChanged", // the board (orientation) was changed
|
|
358
358
|
moveInputToggled: "moveInputToggled", // move input was enabled or disabled
|
|
359
|
-
moveInput: "moveInput", //
|
|
359
|
+
moveInput: "moveInput", // move started, moving over a square, validating or canceled
|
|
360
360
|
redrawBoard: "redrawBoard", // called after redrawing the board
|
|
361
|
+
animation: "animation", // called on animation start, end and on every animation frame
|
|
361
362
|
destroy: "destroy" // called, before the board is destroyed
|
|
362
363
|
}
|
|
363
364
|
```
|