Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump @mantine/dates from 7.5.3 to 7.8.0 #164

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps @mantine/dates from 7.5.3 to 7.8.0.

Release notes

Sourced from @​mantine/dates's releases.

7.8.0

View changelog with demos on mantine.dev website

Auto convert px to rem in .css files

Start from version 1.14.4 postcss-preset-mantine supports autoRem option that can be used to automatically convert all px values to rem units in .css files.

module.exports = {
  plugins: {
    'postcss-preset-mantine': {
      autoRem: true,
    },
  },
};

This option works similar to rem function. The following code:

.demo {
  font-size: 16px;
@​media (min-width: 320px) {
font-size: 32px;
}
}

Will be transformed to:

.demo {
  font-size: calc(1rem * var(--mantine-scale));
@​media (min-width: 320px) {
font-size: calc(2rem * var(--mantine-scale));
}
}

Note that autoRem converts only CSS properties, values in @media queries are not converted automatically – you still need to use em function to convert them.

autoRem option does not convert values in the following cases:

  • Values in calc(), var(), clamp() and url() functions
  • Values in content property

... (truncated)

Commits
  • afc9929 [release] Version: 7.8.0
  • c6da05e Merge branch 'master' of github.com-rtivital:mantinedev/mantine into 7.8
  • b2af7f8 [release] Version: 7.7.2
  • 6d195cb [core] Migrate to auto-rem
  • 878720b [core] Remove baseUrl from all packages tsconfigs
  • 1b112cb [mantine.dev] Fix various issues in documentation code examples
  • 30a48df [release] Version: 7.7.1
  • a7829e9 [@​mantine/dates] Calendar: Fix double timezone shift (#5916)
  • 6b14c7a [release] Version: 7.7.0
  • e3e3bb8 [release] Version: 7.6.2
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) from 7.5.3 to 7.8.0.
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.8.0/packages/@mantine/dates)

---
updated-dependencies:
- dependency-name: "@mantine/dates"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 15, 2024
Copy link

vercel bot commented Apr 15, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
f0 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 15, 2024 8:33am
f0-manage ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 15, 2024 8:33am

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 24, 2024

Superseded by #171.

@dependabot dependabot bot closed this Apr 24, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/mantine/dates-7.8.0 branch April 24, 2024 09:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants