@abidibo/react-cam-roi 0.12.1 → 0.13.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/README.md +2 -2
- package/dist/index.cjs.js +16 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +16 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/types/Components/RoiEditor/Toolbar.d.ts +1 -0
- package/dist/types/Types.d.ts +1 -1
- package/dist/types/Utils/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/Types.d.ts
CHANGED
@@ -4,3 +4,5 @@ export declare const humanize: (str: string) => string;
|
|
4
4
|
export declare const formatString: (str: string, placeholders: Record<string, string | number>) => string;
|
5
5
|
export declare const abs2Perc: (value: number, ref: number) => number;
|
6
6
|
export declare const perc2Abs: (value: number, ref: number) => number;
|
7
|
+
export declare const defaultTo: (dft: unknown) => (value: unknown) => unknown;
|
8
|
+
export declare const compose: (...fns: Function[]) => (x: any) => any;
|