Skip to content

Commit

Permalink
Merge pull request #416 from AnnMarieW/update-to-Mantine-7.14.0
Browse files Browse the repository at this point in the history
update to mantine 7.14.1
  • Loading branch information
AnnMarieW authored Nov 17, 2024
2 parents 98c68e6 + 54cfee6 commit 5b84b3c
Show file tree
Hide file tree
Showing 6 changed files with 140 additions and 116 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- `DateInput` updates properly now when clearable=True

- Enabled custom icons in `Checkbox` Added `icon` and `indeterminateIcon` props #408 by @snehilvj
- New props: `barLabelColor` for the `BarChart` and `restrictToMarks` for the `Slider` #416 by @AnnMarieW

### Changed
- **Breaking Change:** Renamed `DatePicker` to `DatePickerInput` so component names are aligned with the upstream Mantine library. #414 by @AnnMarieW
Expand All @@ -20,6 +21,8 @@
- In MultiSelect, enable the debounce to work when deleting items when the dropdown is closed when debounce is a number. #407 by @AnnMarieW
- In MultiSelect and Select, fixed regression where it was not possible to update both the value and data in the same callback #412

### Changed
- Upgraded to latest Mantine (7.14.1)

# 0.14.7

Expand All @@ -37,6 +40,7 @@
### Changed
- Reduced the Highlight component file size #366 by @AnnMarieW
- The `debounce` prop on input components can now be `True` `False` or `number` of ms delay before updating. When True, the value will update on enter or on blur. #383 by @AnnMarieW
- Upgraded to latest Mantine (7.13.3)

### Fixed
- Prevent loading from empty `src` in `Avatar`. #372 by @mmarfat
Expand Down
12 changes: 6 additions & 6 deletions dash_mantine_components/styles.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DATES = "https://unpkg.com/@mantine/dates@7.13.4/styles.css"
CODE_HIGHLIGHT = "https://unpkg.com/@mantine/code-highlight@7.13.4/styles.css"
CHARTS = "https://unpkg.com/@mantine/charts@7.13.4/styles.css"
CAROUSEL = "https://unpkg.com/@mantine/carousel@7.13.4/styles.css"
NOTIFICATIONS = "https://unpkg.com/@mantine/notifications@7.13.4/styles.css"
NPROGRESS = "https://unpkg.com/@mantine/nprogress@7.13.4/styles.css"
DATES = "https://unpkg.com/@mantine/dates@7.14.1/styles.css"
CODE_HIGHLIGHT = "https://unpkg.com/@mantine/code-highlight@7.14.1/styles.css"
CHARTS = "https://unpkg.com/@mantine/charts@7.14.1/styles.css"
CAROUSEL = "https://unpkg.com/@mantine/carousel@7.14.1/styles.css"
NOTIFICATIONS = "https://unpkg.com/@mantine/notifications@7.14.1/styles.css"
NPROGRESS = "https://unpkg.com/@mantine/nprogress@7.14.1/styles.css"
ALL = [DATES, CODE_HIGHLIGHT, CHARTS, CAROUSEL, NOTIFICATIONS, NPROGRESS]
Loading

0 comments on commit 5b84b3c

Please sign in to comment.