Skip to content

Bump @mantine/form from 7.3.2 to 7.6.0#49

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mantine/form-7.6.0
Closed

Bump @mantine/form from 7.3.2 to 7.6.0#49
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mantine/form-7.6.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 26, 2024

Bumps @mantine/form from 7.3.2 to 7.6.0.

Release notes

Sourced from @​mantine/form's releases.

7.6.0 🌟

View changelog with demos on mantine.dev website

Container queries support

You can now use container queries with Mantine components. rem and em functions from postcss-preset-mantine are available in container queries staring from postcss-preset-mantine@1.13.0.

.root {
  min-width: rem(200px);
  max-width: 100%;
  min-height: rem(120px);
  container-type: inline-size;
  overflow: auto;
  resize: horizontal;
}
.child {
background-color: var(--mantine-color-dimmed);
color: var(--mantine-color-white);
padding: var(--mantine-spacing-md);
@​container (max-width: rem(500px)) {
background-color: var(--mantine-color-blue-filled);
}
@​container (max-width: rem(300px)) {
background-color: var(--mantine-color-red-filled);
}
}

RadarChart component

New RadarChart component:

import { RadarChart } from '@mantine/charts';
import { data } from './data';
function Demo() {
return (
<RadarChart
h={300}
data={multiData}
dataKey="product"
withPolarRadiusAxis
series={[
</tr></table>

... (truncated)

Commits
  • d51f218 [release] Version: 7.6.0
  • f50667c Merge branch master into 7.6
  • e479af1 [release] Version: 7.5.3
  • a731e7a Merge branch master into 7.6
  • 1c529b8 [core] Remove old alpha release version
  • 7043691 [release] Version: 7.5.2
  • 158d54c [@​mantine/form] Add callback argument support to form.setFieldValue handler...
  • 0731e06 [@​mantine/core] Add explicit extension to exports to support NodeNext TypeScr...
  • 41a5868 [release] Version: 7.6.0-alpha.1
  • 6cb7281 [release] Version: 7.6.0-alpha.0
  • 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/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) from 7.3.2 to 7.6.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.6.0/packages/@mantine/form)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 26, 2024
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 27, 2024

Superseded by #50.

@dependabot dependabot bot closed this Feb 27, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/mantine/form-7.6.0 branch February 27, 2024 20:28
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants