You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check out the updated Checkbox docs, which now include several new features like the indeterminate state:
2. Added the debounce Prop to DatePickerInput
The debounce prop can now be set to True, False, or a number of milliseconds for delay before updating. When True, the value updates when the input loses focus. #405
3. Added highlightToday
For date components with a calendar, you can now set highlightToday=True to display today's date with a border. #405
In MultiSelect, the debounce prop now works when deleting items while the dropdown is closed, and debounce is set to a number. #407
Fixed a regression in 0.14.7 where it was not possible to update both the data and value in the same callback for Select and MultiSelect. #412
DateInput now updates properly when clearable=True. #405
Fixed a console warning in Tooltip components by adding a key to the wrapper Box element. #418
Upgrading to Mantine 7.14.1 resolved the issue with TagsInput, where removing items by clicking the "x" on a pill wasn’t working correctly. A huge thanks to @ctdunc for contributing a PR to the upstream Mantine library to fix this! 🏆 #369
The current page is now highlighted in the sidebar. The active prop in the NavLink updates automatically based on the URL. Check out the new example in the docs:
The Styles API documentation now includes additional examples and detailed guidance on using the styles and classNames props.
🙏 Thank You, Contributors!
Thanks to everyone who contributed to this release 🏅
If you would like to contribute, please check out our GitHub issues, where we’ve labeled several tasks as Good First Issues.
The docs are also a Dash app built with DMC, so contributing there is straightforward and a great way to get started. You can find the docs repository here.
Join us and help shape the future of Dash Mantine Components!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
🎉 Release 0.15.0 is now available
Don’t worry—it’s just one small update:
➡️ If you’re using
DatePicker
, simply rename it toDatePickerInput
.Why the change? This renaming keeps us aligned with the upstream Mantine library. Mantine has two components:
DatePicker
: A standalone calendar.DatePickerInput
: An input field with a dropdown calendar (similar to Dash Core Components' DatePickers).By making this update, we’re paving the way to add Mantine’s standalone
DatePicker
in a future release.That’s it! No other breaking changes in this release. 🎉 For more details, check out our Roadmap.
🥳 New Features
1. Added Custom Icons to Checkbox
You can now customize the icons in your checkboxes! This feature was extracted from a larger PR that @snehilvj was working on. Thanks, Snehil! ❤️
Here's a live sample app hosted on PyCafe.
Check out the updated Checkbox docs, which now include several new features like the
indeterminate
state:2. Added the
debounce
Prop toDatePickerInput
The
debounce
prop can now be set toTrue
,False
, or a number of milliseconds for delay before updating. WhenTrue
, the value updates when the input loses focus. #4053. Added
highlightToday
For date components with a calendar, you can now set
highlightToday=True
to display today's date with a border. #405Try it out with this example app.
4. Added the
position
Prop todmc.Notification
ComponentsThis new prop makes it easy to position notifications anywhere on the screen.
Check out the live demo on PyCafe:
5. Updated to Mantine 7.14.1
New features in this Mantine release include:
BarChart SVG Pattern Fill
See the sample app on PyCafe:
restrictToMarks
Prop for SliderThis feature is great for sliders with uneven marks, allowing users to select only specific values.
Check out the sample app:
🛠️ Fixed
MultiSelect
, thedebounce
prop now works when deleting items while the dropdown is closed, anddebounce
is set to a number. #407data
andvalue
in the same callback forSelect
andMultiSelect
. #412DateInput
now updates properly whenclearable=True
. #405Tooltip
components by adding akey
to the wrapperBox
element. #418TagsInput
, where removing items by clicking the "x" on a pill wasn’t working correctly. A huge thanks to @ctdunc for contributing a PR to the upstream Mantine library to fix this! 🏆 #369📖 New in the Docs
Thanks to @demk0r for their first PR in the dmc-docs!
The current page is now highlighted in the sidebar. The
active
prop in theNavLink
updates automatically based on the URL. Check out the new example in the docs:Updated Slider Section
The Slider documentation now includes more examples of features and styling:
Updated Styles API Section
The Styles API documentation now includes additional examples and detailed guidance on using the
styles
andclassNames
props.🙏 Thank You, Contributors!
Thanks to everyone who contributed to this release 🏅
If you would like to contribute, please check out our GitHub issues, where we’ve labeled several tasks as Good First Issues.
The docs are also a Dash app built with DMC, so contributing there is straightforward and a great way to get started. You can find the docs repository here.
Join us and help shape the future of Dash Mantine Components!
Beta Was this translation helpful? Give feedback.
All reactions