import type { FormContextType, RJSFSchema, StrictRJSFSchema, WrapIfAdditionalTemplateProps } from '@rjsf/utils'; import { ADDITIONAL_PROPERTY_FLAG, buttonId, TranslatableString } from '@rjsf/utils'; import { InputText } from 'primereact/inputtext'; /** The `WrapIfAdditional` component is used by the `FieldTemplate` to rename, or remove properties that are * part of an `additionalProperties` part of a schema. * * @param props - The `WrapIfAdditionalProps` for this component */ export default function WrapIfAdditionalTemplate< T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any, >({ classNames, style, children, disabled, displayLabel, id, label, onRemoveProperty, onKeyRenameBlur, rawDescription, readonly, required, schema, registry, }: WrapIfAdditionalTemplateProps) { const { templates, translateString } = registry; const { RemoveButton } = templates.ButtonTemplates; const keyLabel = translateString(TranslatableString.KeyLabel, [label]); const additional = ADDITIONAL_PROPERTY_FLAG in schema; const hasDescription = !!rawDescription; const margin = hasDescription ? -8 : 12; if (!additional) { return (
{children}
); } return (
{displayLabel && ( )}
{children}
); }