cm-chessboard 4.3.4 → 4.3.5

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
@@ -395,7 +395,7 @@ const chessboard = new Chessboard(document.getElementById("board"), {
395
395
  [{
396
396
  class: Accessibility,
397
397
  props: {
398
- brailleNotationInAlt: true, // show the braille notation of the game in the alt attribute of the SVG
398
+ brailleNotationInAlt: true, // show the braille notation of the position in the alt attribute of the SVG image
399
399
  boardAsTable: true, // display the board additionally as HTML table
400
400
  movePieceForm: true, // display a form to move a piece (from, to, move)
401
401
  piecesAsList: true, // display the pieces additionally as List
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cm-chessboard",
3
- "version": "4.3.4",
3
+ "version": "4.3.5",
4
4
  "description": "A JavaScript chessboard which is lightweight, ES6 module based, responsive, SVG rendered and without dependencies.",
5
5
  "keywords": [
6
6
  "chess",
@@ -37,7 +37,7 @@ export class Accessibility extends Extension {
37
37
  constructor(chessboard, props) {
38
38
  super(chessboard, props)
39
39
  this.props = {
40
- brailleNotationInAlt: true, // show the braille notation of the game in the alt attribute of the SVG
40
+ brailleNotationInAlt: true, // show the braille notation of the position in the alt attribute of the SVG image
41
41
  boardAsTable: false, // display the board additionally as HTML table
42
42
  movePieceForm: false, // display a form to move a piece (from, to, move)
43
43
  piecesAsList: false, // display the pieces additionally as List