488ed99370
* add input validation to fix fields, i.e., select agent, and dynamic fields, i.e., fence parameters (according to param type) * connect add, update, delete dialogs to respective back-end endpoints
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
type FenceAutocompleteOption = {
|
|
fenceDescription: string;
|
|
fenceId: string;
|
|
label: string;
|
|
};
|
|
|
|
type AddFenceInputGroupOptionalProps = {
|
|
fenceTemplate?: APIFenceTemplate;
|
|
loading?: boolean;
|
|
};
|
|
|
|
type AddFenceInputGroupProps<M extends MapToInputTestID> =
|
|
AddFenceInputGroupOptionalProps & {
|
|
formUtils: FormUtils<M>;
|
|
};
|