Skip to content

Commit 3eab779

Browse files
authored
Merge pull request #584 from AnnMarieW/mantine-8
DMC 2.0 with Mantine 8.0
2 parents 1c2dea4 + eaf167a commit 3eab779

28 files changed

+962
-257
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
# Unreleased (2.0.0)
4+
5+
### Changed
6+
- BREAKING CHANGES - updated to use Mantine 8.0.2
7+
- See [Migration guide](https://www.dash-mantine-components.com/migration) in the dmc-docs
8+
9+
### Added
10+
- New `TimePicker` and `TimeGrid`, `TimePicker` components
11+
312
# 1.3.0
413

514
### Added

package-lock.json

Lines changed: 74 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_mantine_components",
3-
"version": "1.3.0",
3+
"version": "2.0.0dev",
44
"description": "Plotly Dash Components based on Mantine",
55
"main": "index.ts",
66
"repository": {
@@ -44,16 +44,16 @@
4444
"author": "Snehil Vijay <[email protected]>",
4545
"license": "MIT",
4646
"dependencies": {
47-
"@mantine/carousel": "7.17.7",
48-
"@mantine/charts": "7.17.7",
49-
"@mantine/code-highlight": "7.17.7",
50-
"@mantine/core": "7.17.7",
51-
"@mantine/dates": "7.17.7",
52-
"@mantine/hooks": "7.17.7",
53-
"@mantine/notifications": "7.17.7",
54-
"@mantine/nprogress": "7.17.7",
55-
"@mantine/spotlight": "7.17.7",
56-
"@mantine/tiptap": "7.17.7",
47+
"@mantine/carousel": "8.0.2",
48+
"@mantine/charts": "8.0.2",
49+
"@mantine/code-highlight": "8.0.2",
50+
"@mantine/core": "8.0.2",
51+
"@mantine/dates": "8.0.2",
52+
"@mantine/hooks": "8.0.2",
53+
"@mantine/notifications": "8.0.2",
54+
"@mantine/nprogress": "8.0.2",
55+
"@mantine/spotlight": "8.0.2",
56+
"@mantine/tiptap": "8.0.2",
5757
"@plotly/dash-component-plugins": "^1.2.0",
5858
"@tiptap/extension-highlight": "2.9.1",
5959
"@tiptap/extension-link": "2.9.1",
@@ -72,13 +72,14 @@
7272
"@tiptap/pm": "2.9.1",
7373
"@tiptap/react": "2.9.1",
7474
"@tiptap/starter-kit": "2.9.1",
75-
"dayjs": "^1.11.10",
76-
"embla-carousel-auto-scroll": "^8.4.0",
77-
"embla-carousel-autoplay": "^8.4.0",
78-
"embla-carousel-react": "^8.4.0",
75+
"dayjs": "^1.11.13",
76+
"embla-carousel-auto-scroll": "^8.5.2",
77+
"embla-carousel-autoplay": "^8.5.2",
78+
"embla-carousel-react": "^8.5.2",
7979
"is-absolute-url": "^4.0.1",
8080
"jsonpath": "^1.1.1",
81-
"recharts": "^2.13.3"
81+
"recharts": "^2.13.3",
82+
"highlight.js": "^11.11.1"
8283
},
8384
"files": [
8485
"/dash_mantine_components/*{.js,.map}",

src/ts/components/core/Switch.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ interface Props
4141
disabled?: boolean;
4242
/** State of check box */
4343
checked?: boolean;
44+
/** If set, the indicator will be displayed inside thumb, `true` by default */
45+
withThumbIndicator?: boolean;
4446
}
4547

4648
/** Switch */

0 commit comments

Comments
 (0)