soccer-jersey-fork 1.0.73 → 1.0.74

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.
@@ -43,4 +43,4 @@ export interface DrawSoccerJerseyProps {
43
43
  }
44
44
  export type ShirtStyleDirection = "diagonalRight" | "diagonalLeft" | "horizontal" | "vertical";
45
45
  export type ShirtStyle = "plain" | "twoColors" | "striped" | "stripedThin" | "stripedThick" | "waves" | "checkered" | "diamonds" | "singleBandThin" | "singleBand" | "dashed" | "cross";
46
- export type SleeveStyle = "plain" | "striped" | "stripedThin";
46
+ export type SleeveStyle = "plain" | "striped" | "stripedThin" | "stripedThick";
@@ -124,6 +124,10 @@ export default function drawSoccerJersey({ shirtColor = "plain", sleeveColor, sh
124
124
  sleeveFill = drawStriped(page, optimizedSleeveColor, sleeveStyleColor, sleeveStyleDirection || "horizontal", "thin");
125
125
  break;
126
126
  }
127
+ case "stripedThick": {
128
+ sleeveFill = drawStriped(page, optimizedSleeveColor, sleeveStyleColor, sleeveStyleDirection || "horizontal", "thick");
129
+ break;
130
+ }
127
131
  default: {
128
132
  sleeveFill = optimizedSleeveColor;
129
133
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soccer-jersey-fork",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "Generate soccer jerseys in SVG format",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {