cm-chessboard 8.1.1 → 8.1.2

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 CHANGED
@@ -349,7 +349,6 @@ export const EXTENSION_POINT = {
349
349
  moveInput: "moveInput", // move started, moving over a square, validating or canceled
350
350
  beforeRedrawBoard: "beforeRedrawBoard", // called before redrawing the board
351
351
  afterRedrawBoard: "afterRedrawBoard", // called after redrawing the board
352
- redrawBoard: "redrawBoard", // called after redrawing the board, DEPRECATED, use afterRedrawBoard
353
352
  animation: "animation", // called on animation start, end and on every animation frame
354
353
  destroy: "destroy" // called, before the board is destroyed
355
354
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cm-chessboard",
3
- "version": "8.1.1",
3
+ "version": "8.1.2",
4
4
  "description": "A JavaScript chessboard which is lightweight, ES6 module based, responsive, SVG rendered and without dependencies.",
5
5
  "keywords": [
6
6
  "chess",
@@ -11,7 +11,7 @@ export const EXTENSION_POINT = {
11
11
  moveInput: "moveInput", // move started, moving over a square, validating or canceled
12
12
  beforeRedrawBoard: "beforeRedrawBoard", // called before redrawing the board
13
13
  afterRedrawBoard: "afterRedrawBoard", // called after redrawing the board
14
- redrawBoard: "redrawBoard", // called after redrawing the board, DEPRECATED, use afterRedrawBoard
14
+ redrawBoard: "redrawBoard", // called after redrawing the board, DEPRECATED, use afterRedrawBoard 2023-09-18
15
15
  animation: "animation", // called on animation start, end and on every animation frame
16
16
  destroy: "destroy" // called, before the board is destroyed
17
17
  }