kjhoerr / pantry

Kitchen organizer and planner
Other
0 stars 0 forks source link

Bump @mantine/hooks from 7.7.1 to 7.8.0 in /src/main/webui #353

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps @mantine/hooks from 7.7.1 to 7.8.0.

Release notes

Sourced from @​mantine/hooks'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
  • 21f62c1 [core] Fix ts and jest errors
  • c6da05e Merge branch 'master' of github.com-rtivital:mantinedev/mantine into 7.8
  • b2af7f8 [release] Version: 7.7.2
  • aaf326b [mantine.dev] Add use-throttled-callback documentation
  • 40133a1 [mantine.dev] Add use-throttled-value and use-thottled-state hooks documentation
  • 72b55d1 [mantine.dev] Add useFetch hook demo
  • 0d10d22 [@​mantine/hooks] use-fetch: Init hook
  • 5c612ca [@​mantine/hooks] use-orientation: Init hook
  • 2bad1d1 [@​mantine/hooks] use-is-first-render: Init hook
  • 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 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)