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

Bump the mantine group in /commafeed-client with 6 updates #1347

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the mantine group in /commafeed-client with 6 updates:

Package From To
@mantine/core 7.6.1 7.8.0
@mantine/form 7.6.1 7.8.0
@mantine/hooks 7.6.1 7.8.0
@mantine/modals 7.6.1 7.8.0
@mantine/notifications 7.6.1 7.8.0
@mantine/spotlight 7.6.1 7.8.0

Updates @mantine/core from 7.6.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

Updates @mantine/form from 7.6.1 to 7.8.0

Release notes

Sourced from @​mantine/form'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
  • f8bd5c4 [@​mantine/form] Add form.watch tests
  • 3440af1 [@​mantine/form] Add form.watch
  • fcdfc97 [@​mantine/form] Fix form.initialize rerendering multiple times
  • f2b68d8 [@​mantine/form] Add all uncontrolled form tests
  • 878720b [core] Remove baseUrl from all packages tsconfigs
  • db06a89 [@​mantine/form] Add first part of uncontrolled form tests
  • 3c55e3e [@​mantine/form] Improve key logic in getInputProps
  • Additional commits viewable in compare view

Updates @mantine/hooks from 7.6.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

Updates @mantine/modals from 7.6.1 to 7.8.0

Release notes

Sourced from @​mantine/modals'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
  • 878720b [core] Remove baseUrl from all packages tsconfigs
  • 1b112cb [mantine.dev] Fix various issues in documentation code examples
  • 30a48df [release] Version: 7.7.1
  • 6b14c7a [release] Version: 7.7.0
  • e3e3bb8 [release] Version: 7.6.2
  • 7a616fc [@​mantine/core] Transition: Fix transitions resolving instantly in some cases...
  • See full diff in compare view

Updates @mantine/notifications from 7.6.1 to 7.8.0

Release notes

Sourced from @​mantine/notifications'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
  • 878720b [core] Remove baseUrl from all packages tsconfigs
  • 30a48df [release] Version: 7.7.1
  • 6b14c7a [release] Version: 7.7.0
  • e3e3bb8 [release] Version: 7.6.2
  • See full diff in compare view

Updates @mantine/spotlight from 7.6.1 to 7.8.0

Release notes

Sourced from @​mantine/spotlight'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
  • 30a48df [release] Version: 7.7.1
  • f3d64be [@​mantine/spotlight] Fix incorrect down key handling when the spotlight is op...
  • 6b14c7a [release] Version: 7.7.0
  • e3e3bb8 [release] Version: 7.6.2
  • See full diff in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 14, 2024
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/commafeed-client/mantine-49597fe963 branch 3 times, most recently from 852c22e to b69267c Compare April 14, 2024 14:31
@Athou
Copy link
Owner

Athou commented Apr 14, 2024

@dependabot rebase

Bumps the mantine group in /commafeed-client with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.6.1` | `7.8.0` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.6.1` | `7.8.0` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.6.1` | `7.8.0` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `7.6.1` | `7.8.0` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.6.1` | `7.8.0` |
| [@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight) | `7.6.1` | `7.8.0` |


Updates `@mantine/core` from 7.6.1 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/core)

Updates `@mantine/form` from 7.6.1 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/form)

Updates `@mantine/hooks` from 7.6.1 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/hooks)

Updates `@mantine/modals` from 7.6.1 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/modals)

Updates `@mantine/notifications` from 7.6.1 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/notifications)

Updates `@mantine/spotlight` from 7.6.1 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/spotlight)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/form"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/modals"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/notifications"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/spotlight"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/commafeed-client/mantine-49597fe963 branch from b69267c to 321b3d4 Compare April 14, 2024 15:12
@Athou Athou merged commit 7a00e74 into master Apr 14, 2024
2 checks passed
@Athou Athou deleted the dependabot/npm_and_yarn/commafeed-client/mantine-49597fe963 branch April 14, 2024 15:18
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.

None yet

1 participant