Skip to content

build(deps): bump @mantine/dates from 8.3.18 to 9.1.0#95

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mantine/dates-8.3.18
Closed

build(deps): bump @mantine/dates from 8.3.18 to 9.1.0#95
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mantine/dates-8.3.18

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 30, 2026

Bumps @mantine/dates from 8.3.18 to 9.1.0.

Release notes

Sourced from @​mantine/dates's releases.

9.1.0

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

deduplicateInlineStyles

New deduplicateInlineStyles prop on MantineProvider enables React 19 style tag deduplication for responsive style props. When many components share the same responsive style prop values, only a single <style /> tag is generated and hoisted to <head /> instead of each component injecting its own:

import { MantineProvider } from '@mantine/core';
function Demo() {
return (
<MantineProvider deduplicateInlineStyles>
{/* Your app here */}
</MantineProvider>
);
}

This can significantly improve performance when rendering large lists of components with identical responsive style props. See the styles performance guide for more details.

use-mask hook

New use-mask hook attaches real-time input masking to any <input> element via a ref callback. It formats user input against a defined pattern and exposes both the masked display value and the raw unmasked value. The hook supports built-in and custom tokens, dynamic masks, character transforms, optional segments, and regex array format:

import { TextInput, Text } from '@mantine/core';
import { useMask } from '@mantine/hooks';
function Demo() {
const { ref, value, rawValue } = useMask({ mask: '(999) 999-9999' });
return (
<>
<TextInput ref={ref} label="Phone number" placeholder="(__) -" />
<Text size="sm" mt="sm">Masked value: {value}</Text>
<Text size="sm">Raw value: {rawValue}</Text>
</tr></table>

... (truncated)

Commits
  • f185553 [release] Version: 9.1.0
  • 0e8827f Merge branch master into 9.1
  • 2293743 [core] Update minor dependencies version
  • c6eaf30 [release] Version: 9.0.2
  • 191c7a9 Merge branch 'master' into 9.1
  • 6a5711f [@​mantine/dates] DateTimePicker: Fix formatting not working with `withSeconds...
  • 2b945f7 Merge branch 'master' into 9.1
  • 755b941 [refactor] Fix release script
  • c5b157f [core] Fix types not being compatible with typecheck used in js files
  • edabb9d [@​mantine/core] Fix incorrect default placeholder size in PasswordInput and o...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 30, 2026
@dependabot dependabot Bot changed the title build(deps): bump @mantine/dates from 8.2.3 to 8.3.18 build(deps): bump @mantine/dates from 8.2.7 to 9.1.0 Apr 26, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/dates-8.3.18 branch from 4d2586b to c2ef10f Compare April 26, 2026 14:28
Bumps [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) from 8.3.18 to 9.1.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/9.1.0/packages/@mantine/dates)

---
updated-dependencies:
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title build(deps): bump @mantine/dates from 8.2.7 to 9.1.0 build(deps): bump @mantine/dates from 8.3.18 to 9.1.0 Apr 26, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/dates-8.3.18 branch from c2ef10f to ab1fe6a Compare April 26, 2026 14:41
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 27, 2026

Superseded by #103.

@dependabot dependabot Bot closed this Apr 27, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/mantine/dates-8.3.18 branch April 27, 2026 04:53
@github-project-automation github-project-automation Bot moved this from Backlog to Done in @BuildTheEarth/web Tracker Apr 27, 2026
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

Status: Done

Development

Successfully merging this pull request may close these issues.

0 participants