@luceosports/play-rendering 2.0.0 → 2.0.1

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": "@luceosports/play-rendering",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "main": "dist/play-rendering.js",
5
5
  "types": "dist/play-rendering.d.ts",
6
6
  "scripts": {
@@ -1,6 +1,6 @@
1
1
  import ShapeModel from '../ShapeModel';
2
2
 
3
- export default class XMarkShape extends ShapeModel {
3
+ export default class XmarkShape extends ShapeModel {
4
4
  get outerCircleRadius() {
5
5
  return 10;
6
6
  }
@@ -11,7 +11,7 @@ import LineShape from './LineShape';
11
11
  import SquareShape from './SquareShape';
12
12
  import StraightShape from './StraightShape';
13
13
  import TriangleShape from './TriangleShape';
14
- import XMarkShape from './XMarkShape';
14
+ import XmarkShape from './XmarkShape';
15
15
 
16
16
  export {
17
17
  CutLineShape,
@@ -26,5 +26,5 @@ export {
26
26
  SquareShape,
27
27
  StraightShape,
28
28
  TriangleShape,
29
- XMarkShape
29
+ XmarkShape
30
30
  };