dclstn / better-snapchat

This browser extension enhances your web.snapchat.com experience by adding several essential privacy features.
89 stars 5 forks source link

Bump @mantine/core from 7.7.1 to 7.8.0 #233

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps @mantine/core from 7.7.1 to 7.8.0.

Release notes

Sourced from @​mantine/core'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
  • fc70f8d [@​mantine/core] Add option to customize middlewares
  • c6da05e Merge branch 'master' of github.com-rtivital:mantinedev/mantine into 7.8
  • b2af7f8 [release] Version: 7.7.2
  • 6465389 [mantine.dev] Fix incorrect Avatar color prop description
  • 2e9047d [@​mantine/core] CloseButton: Add missing disabled styles (#6044)
  • 17d1a37 [@​mantine/core] AppShell: Fix incorrect app safe area handling by AppShell.Fo...
  • cff6b32 [@​mantine/core] NumberInput: Fix cursor position changing when the value is i...
  • 297ddce [@​mantine/core] TagsInput: Fix incorrect IME keyboard input handling for `Bac...
  • 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)
cloudflare-pages[bot] commented 4 months ago

Deploying better-snapchat with  Cloudflare Pages  Cloudflare Pages

Latest commit: c981630
Status: ✅  Deploy successful!
Preview URL: https://e531e143.better-snapchat.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-mant-drcs.better-snapchat.pages.dev

View logs