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 +0 -1
- package/package.json +1 -1
- package/src/model/Extension.js +1 -1
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
package/src/model/Extension.js
CHANGED
|
@@ -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
|
}
|