customized-fabric 2.0.11 → 2.0.13

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.
@@ -33,6 +33,7 @@ export declare const toCurvedTextObject: (object: CurvedText) => {
33
33
  pathSide: any;
34
34
  positionAngle: any;
35
35
  isAllCapital: any;
36
+ strokeLineJoin: string | undefined;
36
37
  };
37
38
  };
38
39
  export default class CurvedText extends fabric.Group {
@@ -222,6 +222,7 @@ const toCurvedTextObject = (object) => {
222
222
  pathSide: textObject?.pathSide,
223
223
  positionAngle: textObject?.positionAngle,
224
224
  isAllCapital: textObject?.isAllCapital,
225
+ strokeLineJoin: textObject?.strokeLineJoin,
225
226
  },
226
227
  };
227
228
  };
@@ -32,6 +32,7 @@ export declare const toTextInputObject: (object: TextInput) => {
32
32
  isAllCapital: any;
33
33
  lineHeight: number | undefined;
34
34
  charSpacing: number | undefined;
35
+ strokeLineJoin: string | undefined;
35
36
  };
36
37
  };
37
38
  export default class TextInput extends fabric.Group {
@@ -188,6 +188,7 @@ const toTextInputObject = (object) => {
188
188
  isAllCapital: textObject?.isAllCapital,
189
189
  lineHeight: textObject?.lineHeight,
190
190
  charSpacing: textObject?.charSpacing,
191
+ strokeLineJoin: textObject?.strokeLineJoin,
191
192
  },
192
193
  };
193
194
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "customized-fabric",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "description": "Customized fabric",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",