Skip to content

Commit 5c16865

Browse files
committed
Merge branch 'rjsf-v6' of github.com:Algirdyz/react-jsonschema-form into rjsf-v6
2 parents c1a6967 + 1acb146 commit 5c16865

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/mantine/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363

6464
### Prerequisites
6565

66-
- `@mantine/core >= 7`
67-
- `@mantine/hooks >= 7`
68-
- `@mantine/dates >= 7`
66+
- `@mantine/core >= 8`
67+
- `@mantine/hooks >= 8`
68+
- `@mantine/dates >= 8`
6969
- `dayjs >= 1.8.0`
7070
- `@rjsf/core >= 6.0.0`
7171

packages/mantine/src/templates/ButtonTemplates/AddButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ export default function AddButton<T = any, S extends StrictRJSFSchema = RJSFSche
1212
registry: { translateString },
1313
} = props;
1414
return (
15-
<IconButton title={translateString(TranslatableString.CopyButton)} variant='subtle' {...props} icon={<Plus />} />
15+
<IconButton title={translateString(TranslatableString.AddItemButton)} variant='subtle' {...props} icon={<Plus />} />
1616
);
1717
}

packages/mantine/src/templates/GridTemplate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { GridTemplateProps } from '@rjsf/utils';
44
/** Renders a `GridTemplate` for mantine, which is expecting the column sizing information coming in via the
55
* extra props provided by the caller, which are spread directly on the `Grid`/`Grid.Col`.
66
*
7-
* @param props - The GridTemplateProps, including the extra props containing the chakra-ui grid positioning details
7+
* @param props - The GridTemplateProps, including the extra props containing the Mantine grid positioning details
88
*/
99
export default function GridTemplate(props: GridTemplateProps) {
1010
const { children, column, fluid = true, ...rest } = props;

0 commit comments

Comments
 (0)