cm-chessboard 7.4.1 → 7.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cm-chessboard",
3
- "version": "7.4.1",
3
+ "version": "7.4.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",
package/src/Chessboard.js CHANGED
@@ -81,7 +81,7 @@ export class Chessboard {
81
81
  this.state.orientation = this.props.orientation
82
82
  // instantiate extensions
83
83
  for (const extensionData of this.props.extensions) {
84
- this.extensions.push(new extensionData.class(this, extensionData.props))
84
+ this.addExtension(extensionData.class, extensionData.props)
85
85
  }
86
86
  this.view.redrawBoard()
87
87
  this.state.position = new Position(this.props.position)
@@ -187,9 +187,13 @@ export class Chessboard {
187
187
  this.view.visualizeInputState()
188
188
  }
189
189
 
190
+ addExtension(extensionClass, props) {
191
+ this.extensions.push(new extensionClass(this, props))
192
+ }
193
+
190
194
  destroy() {
191
195
  this.state.invokeExtensionPoints(EXTENSION_POINT.destroy)
192
- if(this.state.squareSelectEnabled) {
196
+ if (this.state.squareSelectEnabled) {
193
197
  this.disableSquareSelect()
194
198
  }
195
199
  this.positionAnimationsQueue.destroy()