apps/mantine.dev/src/pages/changelog/7-17-0.mdx
import { FormDemos, UseFileDialogDemos } from '@docs/demos'; import { Layout } from '@/layout'; import { MDX_DATA } from '@/mdx';
export default Layout(MDX_DATA.Changelog7170);
Portal component now supports reuseTargetNode prop which allows to reuse the same target node for all instances.
This option is more performant than the previous behavior, it is recommended to be enabled.
This option will be enabled by default in the 8.0 major release.
To enable reuseTargetNode option in all components that depend on Portal, add the following code to your theme:
import { createTheme, Portal } from '@mantine/core';
export const theme = createTheme({
components: {
Portal: Portal.extend({
defaultProps: {
reuseTargetNode: true,
},
}),
}
});
Example usage. In the following example, all three paragraphs will be rendered in the same target node:
import { Portal } from '@mantine/core';
function Demo() {
return (
<>
<Portal reuseTargetNode>
<p>First</p>
</Portal>
<Portal reuseTargetNode>
<p>Second</p>
</Portal>
<Portal reuseTargetNode>
<p>Third</p>
</Portal>
</>
);
}
formRootRule is a special rule path that can be used to validate objects and arrays
alongside with their nested fields. For example, it is useful when you want to capture
a list of values, validate each value individually and then validate the list itself
to not be empty:
Another example is to validate an object fields combination:
<Demo data={FormDemos.rootRuleObject} />New isJSONString and isNotEmptyHTML form validators:
isNotEmptyHTML checks that form value is not an empty HTML string. Empty string, string with only HTML tags and whitespace are considered to be empty.isJSONString checks that form value is a valid JSON string.import { isJSONString, useForm } from '@mantine/form';
const form = useForm({
mode: 'uncontrolled',
initialValues: {
json: '',
html: '',
},
validate: {
json: isJSONString('Invalid JSON string'),
html: isNotEmptyHTML('HTML cannot be empty'),
},
});
Popover now supports onDismiss prop, which makes it easier
to subscribe to outside clicks and escape key presses to close popover:
import { useState } from 'react';
import { Button, Popover } from '@mantine/core';
function Demo() {
const [opened, setOpened] = useState(false);
return (
<Popover
opened={opened}
onDismiss={() => setOpened(false)}
>
<Popover.Target>
<Button onClick={() => setOpened((o) => !o)}>
Toggle popover
</Button>
</Popover.Target>
<Popover.Dropdown>Dropdown</Popover.Dropdown>
</Popover>
);
}
MantineProvider component now supports env prop.
It can be used in test environment to disable some features that
might impact tests and/or make it harder to test components:
To enable test environment, set env to test:
import { MantineProvider } from '@mantine/core';
function Demo() {
return (
<MantineProvider env="test">
</MantineProvider>
);
}
New use-file-dialog allows capturing one or more files from the user without file input element:
<Demo data={UseFileDialogDemos.usage} />Remix is deprecated, the documentation related to Remix integration was removed, use React Router instead. To simplify maintenance, Remix/React Router templates were archived and will not be updated.
middlewaresoverscrollBehavior proptheme.spacing values for position propunderline="not-hover" option to display underline only when the link is not hovered