apps/mantine.dev/src/pages/changelog/7-16-0.mdx
import { CarouselDemos, InputDemos, PaginationDemos, PopoverDemos, SliderDemos, TableOfContentsDemos, UseScrollSpyDemos } from '@docs/demos'; import { Layout } from '@/layout'; import { MDX_DATA } from '@/mdx';
export default Layout(MDX_DATA.Changelog7160);
New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.
<Demo data={UseScrollSpyDemos.usage} />New TableOfContents component is built on top of use-scroll-spy hook
and can be used to create table of contents components like the one on the right side of mantine.dev
documentation sidebar:
New Input.ClearButton component can be used to add clear button to custom inputs
based on Input component. size of the clear button is automatically
inherited from the input:
Popover and other components based on it now support withOverlay prop:
You can now use container queries in Carousel component. With container queries, all responsive values are adjusted based on the container width, not the viewport width.
Example of using container queries. To see how the grid changes, resize the root element of the demo with the resize handle located at the bottom right corner of the demo:
<Demo data={CarouselDemos.container} />RangeSlider component now supports restrictToMarks prop:
Pagination component now supports withPages prop which allows hiding pages
controls and displaying only previous and next buttons:
use-form hook now supports touchTrigger option that allows customizing events that change touched state.
It accepts two options:
change (default) – field will be considered touched when its value changes or it has been focusedfocus – field will be considered touched only when it has been focusedExample of using focus trigger:
import { useForm } from '@mantine/form';
const form = useForm({
mode: 'uncontrolled',
initialValues: { a: 1 },
touchTrigger: 'focus',
});
form.isTouched('a'); // -> false
form.setFieldValue('a', 2);
form.isTouched('a'); // -> false
// onFocus is called automatically when the user focuses the field
form.getInputProps('a').onFocus();
form.isTouched('a'); // -> true
clearable propsync option which allows disabling synchronization between browser tabs