+ {title ?
{required ? `${title} *` : title}
: null}
+ {description ?
{description}
: null}
+ {properties.filter((property) => !property.hidden).map((property) => (
+
{property.content}
+ ))}
+ {canExpand(schema, uiSchema, formData) ? (
+
+
+
+ ) : null}
+
+);
+
+const RjsfArrayFieldItemTemplate = ({ children, buttonsProps, hasToolbar, itemKey }: ArrayFieldItemTemplateProps) => {
+ const {
+ fieldPathId,
+ disabled,
+ readonly,
+ hasCopy,
+ hasMoveDown,
+ hasMoveUp,
+ hasRemove,
+ onCopyItem,
+ onMoveDownItem,
+ onMoveUpItem,
+ onRemoveItem,
+ } = buttonsProps;
+
+ return (
+