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 /graylog2-web-interface with 4 updates #21406

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2025

Bumps the mantine group in /graylog2-web-interface with 4 updates: @mantine/core, @mantine/dropzone, @mantine/hooks and @mantine/notifications.

Updates @mantine/core from 7.14.1 to 7.16.1

Release notes

Sourced from @​mantine/core's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • e9ea462 [@​mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • 5242d31 [@​mantine/core] Slider: Fix onChangeEnd being called when disabled prop i...
  • fdba33d [@​mantine/core] Add option to customize chevron color with chevronColor pro...
  • 9080c09 [@​mantine/core] Fix incorrect styles of nested tables (#7354)
  • 678eb00 [@​mantine/core]: NumberInput: Fix onChange being called in onBlur if the ...
  • 12ee02f [@​mantine/core] Menu: Add data-disabled prop handling to Menu.Item componen...
  • 56b7ce5 [@​mantine/core] MantineProvider: Fix jest tests not running in case there is ...
  • e2d368d [@​mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)
  • e8f7b01 [release] Version: 7.16.0
  • Additional commits viewable in compare view

Updates @mantine/dropzone from 7.14.1 to 7.16.1

Release notes

Sourced from @​mantine/dropzone's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • e8f7b01 [release] Version: 7.16.0
  • 75d2c25 [release] Version: 7.15.3
  • 41b8186 [release] Version: 7.15.2
  • 7f47aef [release] Version: 7.15.1
  • aae7b81 [release] Version: 7.15.0
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • 44407db [@​mantine/core] Replace global JSX types with React.JSX to support React ...
  • 1f4bb71 Merge branch master into 7.15
  • Additional commits viewable in compare view

Updates @mantine/hooks from 7.14.1 to 7.16.1

Release notes

Sourced from @​mantine/hooks's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • 5866fd5 [@​mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a...
  • e8f7b01 [release] Version: 7.16.0
  • bc66999 Merge branch 'master' of github.com:mantinedev/mantine into 7.16
  • 75d2c25 [release] Version: 7.15.3
  • 700e05e [refactor] Fix errors in tests
  • fa0da9a [@​mantine/hooks] use-merged-ref: Add support for ref cleanup function in Reac...
  • d68d40b [@​mantine/hooks] use-debounced-callback: Add flush method to returned callb...
  • 41b8186 [release] Version: 7.15.2
  • 358c3dd [@​mantine/hooks] use-local-storage: Fix value not being updated when key ch...
  • Additional commits viewable in compare view

Updates @mantine/notifications from 7.14.1 to 7.16.1

Release notes

Sourced from @​mantine/notifications's releases.

7.16.1

What's Changed

  • [@mantine/core] Menu: Add withInitialFocusPlaceholder prop support
  • [@mantine/core] Slider: Fix onChangeEnd being called when disabled prop is set
  • [@mantine/core] Add option to customize chevron color with chevronColor prop in Select and MultiSelect components
  • [@mantine/core] Fix incorrect styles of nested tables (#7354)
  • [@mantine/core]: NumberInput: Fix onChange being called in onBlur if the value has not been changed (#7383)
  • [@mantine/core] Menu: Add data-disabled prop handling to Menu.Item component (#7377)
  • [@mantine/form] Fix incorrect values handling in form.resetDirty (#7373)
  • [@mantine/chart] AreaChart: Fix gridColor and textColor props being passed as attributes to the DOM node (#7378)
  • [@mantine/hooks] use-in-viewport: Fix tracking being stopped when used with a dnd library (#7359)
  • [@mantine/core] MantineProvider: Fix jest tests not running in case there is incorrect window.matchMedia polyfill implementation (#7360)
  • [@mantine/core] Modal: Fix Escape key not working in old Safari versions (#7358)

New Contributors

Full Changelog: mantinedev/mantine@7.16.0...7.16.1

7.16.0 🌶️

View changelog with demos on mantine.dev website

use-scroll-spy hook

New use-scroll-spy hook tracks scroll position and returns index of the element that is currently in the viewport. It is useful for creating table of contents components (like in mantine.dev sidebar on the right side) and similar features.

import { Text, UnstyledButton } from '@mantine/core';
import { useScrollSpy } from '@mantine/hooks';
function Demo() {
const spy = useScrollSpy({
selector: '#mdx :is(h1, h2, h3, h4, h5, h6)',
});
const headings = spy.data.map((heading, index) => (
<li
key={heading.id}
style={{
listStylePosition: 'inside',
paddingInlineStart: heading.depth * 20,
background: index === spy.active ? 'var(--mantine-color-blue-light)' : undefined,
}}
>
</tr></table>

... (truncated)

Commits
  • e981065 [release] Version: 7.16.1
  • e8f7b01 [release] Version: 7.16.0
  • 75d2c25 [release] Version: 7.15.3
  • 41b8186 [release] Version: 7.15.2
  • 7f47aef [release] Version: 7.15.1
  • aae7b81 [release] Version: 7.15.0
  • ecd05d8 [core] Update @types/react and @types/react-dom to 19
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • 1f4bb71 Merge branch master into 7.15
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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

Bumps the mantine group in /graylog2-web-interface with 4 updates: [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core), [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone), [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) and [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications).


Updates `@mantine/core` from 7.14.1 to 7.16.1
- [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.16.1/packages/@mantine/core)

Updates `@mantine/dropzone` from 7.14.1 to 7.16.1
- [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.16.1/packages/@mantine/dropzone)

Updates `@mantine/hooks` from 7.14.1 to 7.16.1
- [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.16.1/packages/@mantine/hooks)

Updates `@mantine/notifications` from 7.14.1 to 7.16.1
- [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.16.1/packages/@mantine/notifications)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/dropzone"
  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/notifications"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 22, 2025
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