mantine
mantine copied to clipboard
A fully featured React components library
I needed to add the LabelList from recharts [discussion link](https://github.com/orgs/mantinedev/discussions/5739)
Currently it's not possible to deselect/reset the value of the `SegmentedControl`. You can start out with an empty value, if you take for instance the empty string as value and...
Hi! I have lags with rerendering of large tables with memoized rows: ```typescript const TestRow = memo(function Row() { return ( {new Array(10).fill(0).map((_, index) => ( Cell ))} ); });...
Related to #5566 This PR adds breakpoint support to the Grid columns property.
# Description This is an attempt to reduce the size of `code-highlight`. Probably address https://github.com/mantinedev/mantine/issues/4879, https://github.com/mantinedev/mantine/issues/5021 ## Approach Instead of install `highlight.js` as the library's dependencies, it's installed as `peerDependencies`....
The [Next docs for app router](https://nextjs.org/docs/app/building-your-application/routing/pages-and-layouts#metadata) say that the `` tag shouldn't be modified manually. One repercussion of ignoring this advice is that Cypress e2e tests don't work anymore when...
Added `type="range"` to `DateTimePicker` as it is currently not implemented, but my be a nice feature in my opinion.
as per #4011 ### use-form * Added `submitting`, `submitError` fields * Added `setSubmitting`, `setSubmitError` and `resetSubmitError` methods
### Link to the page where something nasty is located https://mantine.dev/others/nprogress/#setup-navigationprogress ### Exact quote of what is wrong Hi, I tried setting up `NavigationProgress` for NextJS13 App Dir but the...
Fixes https://github.com/mantinedev/mantine/issues/5699. Backport of https://github.com/mantinedev/mantine/pull/5746 Things to note: - Due to the implementation of role="switch", some tests needed to be adjusted. - Screen readers no longer read out the onLabel...