@markerjs/markerjs3 3.5.4 → 3.5.6
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 +1 -1
- package/markerjs3.d.ts +5 -0
- package/markerjs3.js +1 -1
- package/markerjs3.js.map +1 -1
- package/package.json +2 -2
- package/umd/markerjs3.js +1 -1
- package/umd/markerjs3.js.map +1 -1
package/README.md
CHANGED
package/markerjs3.d.ts
CHANGED
|
@@ -1132,6 +1132,10 @@ interface TextMarkerState extends RectangularBoxMarkerBaseState {
|
|
|
1132
1132
|
* Text content.
|
|
1133
1133
|
*/
|
|
1134
1134
|
text: string;
|
|
1135
|
+
/**
|
|
1136
|
+
* Text padding.
|
|
1137
|
+
*/
|
|
1138
|
+
padding?: number;
|
|
1135
1139
|
}
|
|
1136
1140
|
|
|
1137
1141
|
/**
|
|
@@ -1613,6 +1617,7 @@ declare class CurveMarker extends LineMarker {
|
|
|
1613
1617
|
protected getPath(): string;
|
|
1614
1618
|
getState(): CurveMarkerState;
|
|
1615
1619
|
restoreState(state: CurveMarkerState): void;
|
|
1620
|
+
scale(scaleX: number, scaleY: number): void;
|
|
1616
1621
|
}
|
|
1617
1622
|
|
|
1618
1623
|
/**
|