Skip to content

Commit

Permalink
🔖 Prepare for 0.13.0a1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
snehilvj committed Aug 9, 2023
1 parent 1121717 commit 01221f2
Show file tree
Hide file tree
Showing 6 changed files with 293 additions and 270 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

# 0.13.0a1

This release is based on Mantine v6.

### Added

* New components
* Autocomplete
* Box
* ColorInput
* Flex
* Popover
* Rating

### Changed

Detailed changelog for Mantine v6 can be found here: https://mantine.dev/changelog/6-0-0/.

### Fixed

* Date components freezing the entire UI

# 0.12.1

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ app = Dash(__name__)

app.layout = html.Div(
[
dmc.DatePicker(
dmc.DatePickerInput(
id="date-picker",
label="Start Date",
description="You can also provide a description",
minDate=date(2020, 8, 5),
value=None,
style={"width": 200},
w=200
),
dmc.Space(h=10),
dmc.Text(id="selected-date"),
Expand Down
Loading

0 comments on commit 01221f2

Please sign in to comment.