@abidibo/react-cam-roi 0.2.8 → 0.3.0
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 +11 -0
- package/dist/Components/Button/Button.module.css +1 -1
- package/dist/Components/RoiEditor/TopBar.module.css +17 -0
- package/dist/index.cjs.css +1 -1
- package/dist/index.cjs.css.map +1 -1
- package/dist/index.cjs.js +32 -23
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +32 -23
- package/dist/index.esm.js.map +1 -1
- package/dist/types/Components/RoiEditor/ParameterField.d.ts +2 -1
- package/dist/types/Components/RoiEditor/ParametersModalForm/index.d.ts +2 -0
- package/dist/types/Components/RoiEditor/Types.d.ts +1 -0
- package/package.json +1 -1
@@ -4,6 +4,7 @@ export type ParameterFieldProps<T> = {
|
|
4
4
|
onChange: (value: T) => void;
|
5
5
|
parameter: ConfigurationParameter;
|
6
6
|
errors: Record<string, string>;
|
7
|
+
readOnly?: boolean;
|
7
8
|
};
|
8
|
-
declare const ParameterField: <T>({ value, onChange, parameter, errors }: ParameterFieldProps<T>) => import("react/jsx-runtime").JSX.Element | null;
|
9
|
+
declare const ParameterField: <T>({ value, onChange, parameter, errors, readOnly }: ParameterFieldProps<T>) => import("react/jsx-runtime").JSX.Element | null;
|
9
10
|
export default ParameterField;
|
@@ -12,6 +12,8 @@ export type ParametersModalFormProps = {
|
|
12
12
|
shapeName?: string;
|
13
13
|
shapeRole?: string;
|
14
14
|
shapeId?: string;
|
15
|
+
readOnly?: boolean;
|
16
|
+
noModal?: boolean;
|
15
17
|
};
|
16
18
|
declare const ParametersModalForm: React.FC<ParametersModalFormProps>;
|
17
19
|
export default ParametersModalForm;
|