@abidibo/react-cam-roi 0.2.5 → 0.2.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.
@@ -1,5 +1,6 @@
|
|
1
1
|
import { FieldProps } from "../../Types";
|
2
|
-
declare const BoolField: React.FC<Omit<FieldProps<boolean>, 'onChange'> & {
|
2
|
+
declare const BoolField: React.FC<Omit<FieldProps<boolean>, 'onChange' | 'value'> & {
|
3
3
|
onChange: (value: boolean) => void;
|
4
|
+
checked: boolean;
|
4
5
|
}>;
|
5
6
|
export default BoolField;
|
@@ -4,7 +4,7 @@ export declare const notify: INotify;
|
|
4
4
|
export declare const enableRois: (configuration: Configuration) => boolean;
|
5
5
|
export declare const enableMainMetadata: (configuration: Configuration) => boolean;
|
6
6
|
export declare const canDrawShape: (configuration: Configuration, shapeType: Omit<ToolEnum, ToolEnum.Pointer>, shapes: Shapes, notify?: INotify, message?: string) => boolean;
|
7
|
-
export declare const validateParametersForm: (parameters: ConfigurationParameter[], fields: Record<string, unknown>, setErrors: (errors: Record<string, string>) => void) => boolean;
|
7
|
+
export declare const validateParametersForm: (parameters: ConfigurationParameter[], fields: Record<string, unknown>, setErrors: (errors: Record<string, string>) => void, strings: Record<string, string>) => boolean;
|
8
8
|
export declare const validate: (configuration: Configuration, shapes: Shapes, metadata: Metadata, strings: Record<string, string>) => [boolean, string[]];
|
9
9
|
export declare const fabricShapeToOutputShape: (shape: Shape, type: ShapeType, imageSize: {
|
10
10
|
width: number;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abidibo/react-cam-roi",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.6",
|
4
4
|
"description": "A react component for drawing ROI over images and managing metadata",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -99,6 +99,7 @@
|
|
99
99
|
"rollup-plugin-postcss": "^4.0.2",
|
100
100
|
"semantic-release": "^24.2.2",
|
101
101
|
"storybook": "^8.4.7",
|
102
|
+
"tinyglobby": "^0.2.13",
|
102
103
|
"typescript": "^5.7.3",
|
103
104
|
"typescript-eslint": "^8.20.0"
|
104
105
|
},
|