ikt20230929 / CSGOFrontend

Aim4Gain React Frontend
MIT License
0 stars 0 forks source link

Bump @mantine/form from 7.5.3 to 7.6.0 #65

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps @mantine/form from 7.5.3 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
  • a731e7a Merge branch master into 7.6
  • 1c529b8 [core] Remove old alpha release version
  • 41a5868 [release] Version: 7.6.0-alpha.1
  • 6cb7281 [release] Version: 7.6.0-alpha.0
  • b5392d9 [core] Update prettier, stylelint and syncpack dependencies
  • See full diff 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 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)
dependabot[bot] commented 9 months ago

Superseded by #68.