Skip to content

v1.2.3

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Nov 02:37
· 11 commits to main since this release

Buy me a coffee

Documentation v1.2.3: https://raw.githack.com/uiwjs/react-signature/0c9d693/index.html
Comparing Changes: v1.2.2...v1.2.3

export interface SignatureProps extends React.SVGProps<SVGSVGElement> {
    prefixCls?: string;
    options?: StrokeOptions;
    readonly?: boolean;
    defaultPoints?: Record<string, number[][]>;
-    renderPath?: (d: string, keyName: string, point: number[][]) => JSX.Element;
+    renderPath?: (d: string, keyName: string, point: number[][], index: number) => JSX.Element;
    onPointer?: (points: number[][]) => void;
}