Skip to content

Commit 2098360

Browse files
authored
Merge pull request #518 from AnnMarieW/prepare-1.0.0rc2
update for 1.0.0rc2
2 parents 322d08d + 3b941a6 commit 2098360

5 files changed

Lines changed: 79 additions & 76 deletions

File tree

.github/releasing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ $ npm publish
6464

6565
### After release:
6666
- [ ] Update dmc-docs. When the version changes, be sure to run `poetry update` and push the new `poetry.lock` file. The docs deploy automatically on Render
67+
- [ ] Update the version info on the home page
6768
- [ ] Include new contributors in the docs
6869
- [ ] Make announcement on Plotly forum and dmc Discord
6970

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
# Unreleased
3+
# 1.0.0rc2
44

55
### Added
66
- Added `CheckboxCard` `CheckboxIndicator` `RadioCard` `RadioIndicator` components #486 by @deadkex
@@ -10,6 +10,8 @@
1010
- `exact`: Marks the link as active only when `pathname` exactly matches `href`.
1111
- `partial`: Marks the link as active when `pathname` starts with `href`, allowing for subpages.
1212

13+
- Upgraded to latest Mantine (7.17.0)
14+
1315
### Fixed
1416
- Corrected an error in the `Alert` component when the `duration` prop prop was set when using dash>=3 #516 by @AnnMarieW
1517

dash_mantine_components/styles.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
DATES = "https://unpkg.com/@mantine/dates@7.16.2/styles.css"
2-
CODE_HIGHLIGHT = "https://unpkg.com/@mantine/code-highlight@7.16.2/styles.css"
3-
CHARTS = "https://unpkg.com/@mantine/charts@7.16.2/styles.css"
4-
CAROUSEL = "https://unpkg.com/@mantine/carousel@7.16.2/styles.css"
5-
NOTIFICATIONS = "https://unpkg.com/@mantine/notifications@7.16.2/styles.css"
6-
NPROGRESS = "https://unpkg.com/@mantine/nprogress@7.16.2/styles.css"
1+
DATES = "https://unpkg.com/@mantine/dates@7.17.0/styles.css"
2+
CODE_HIGHLIGHT = "https://unpkg.com/@mantine/code-highlight@7.17.0/styles.css"
3+
CHARTS = "https://unpkg.com/@mantine/charts@7.17.0/styles.css"
4+
CAROUSEL = "https://unpkg.com/@mantine/carousel@7.17.0/styles.css"
5+
NOTIFICATIONS = "https://unpkg.com/@mantine/notifications@7.17.0/styles.css"
6+
NPROGRESS = "https://unpkg.com/@mantine/nprogress@7.17.0/styles.css"
77
ALL = [DATES, CODE_HIGHLIGHT, CHARTS, CAROUSEL, NOTIFICATIONS, NPROGRESS]

package-lock.json

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

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_mantine_components",
3-
"version": "1.0.0rc1",
3+
"version": "1.0.0rc2",
44
"description": "Plotly Dash Components based on Mantine",
55
"main": "index.ts",
66
"repository": {
@@ -43,15 +43,15 @@
4343
"author": "Snehil Vijay <snehilvj@outlook.com>",
4444
"license": "MIT",
4545
"dependencies": {
46-
"@mantine/carousel": "7.16.2",
47-
"@mantine/charts": "7.16.2",
48-
"@mantine/code-highlight": "7.16.2",
49-
"@mantine/core": "7.16.2",
50-
"@mantine/dates": "7.16.2",
51-
"@mantine/hooks": "7.16.2",
52-
"@mantine/notifications": "7.16.2",
53-
"@mantine/nprogress": "7.16.2",
54-
"@mantine/spotlight": "7.16.2",
46+
"@mantine/carousel": "7.17.0",
47+
"@mantine/charts": "7.17.0",
48+
"@mantine/code-highlight": "7.17.0",
49+
"@mantine/core": "7.17.0",
50+
"@mantine/dates": "7.17.0",
51+
"@mantine/hooks": "7.17.0",
52+
"@mantine/notifications": "7.17.0",
53+
"@mantine/nprogress": "7.17.0",
54+
"@mantine/spotlight": "7.17.0",
5555
"@plotly/dash-component-plugins": "^1.2.0",
5656
"dayjs": "^1.11.10",
5757
"embla-carousel-auto-scroll": "^8.4.0",

0 commit comments

Comments
 (0)