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

👷 Update all non-major dependencies #3046

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 28, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mantine/core (source) 7.12.2 -> 7.13.0 age adoption passing confidence
@mantine/hooks (source) 7.12.2 -> 7.13.0 age adoption passing confidence
@tabler/icons-react (source) 3.17.0 -> 3.19.0 age adoption passing confidence
@types/chrome (source) 0.0.271 -> 0.0.272 age adoption passing confidence
@types/node (source) 22.5.5 -> 22.7.4 age adoption passing confidence
@types/react (source) 18.3.8 -> 18.3.10 age adoption passing confidence
eslint-module-utils (source) 2.11.0 -> 2.12.0 age adoption passing confidence
eslint-plugin-jsdoc 50.2.4 -> 50.3.0 age adoption passing confidence
puppeteer (source) 23.4.0 -> 23.4.1 age adoption passing confidence
webpack 5.94.0 -> 5.95.0 age adoption passing confidence

Release Notes

mantinedev/mantine (@​mantine/core)

v7.13.0: 🎇

Compare Source

View changelog with demos on mantine.dev website

Container queries support in Grid

You can now use container queries
in Grid component. With container queries, all responsive values
are adjusted based on the container width, not the viewport width.

Example of using container queries. To see how the grid changes, resize the root element
of the demo with the resize handle located at the bottom right corner of the demo:

import { Grid } from '@​mantine/core';

function Demo() {
  return (
    // Wrapper div is added for demonstration purposes only,
    // it is not required in real projects
    <div style={{ resize: 'horizontal', overflow: 'hidden', maxWidth: '100%' }}>
      <Grid
        type="container"
        breakpoints={{ xs: '100px', sm: '200px', md: '300px', lg: '400px', xl: '500px' }}
      >
        <Col span={{ base: 12, md: 6, lg: 3 }}>1</Col>
        <Col span={{ base: 12, md: 6, lg: 3 }}>2</Col>
        <Col span={{ base: 12, md: 6, lg: 3 }}>3</Col>
        <Col span={{ base: 12, md: 6, lg: 3 }}>4</Col>
      </Grid>
    </div>
  );
}

CompositeChart component

New CompositeChart component allows using Line, Area and Bar charts together in a single chart:

import { CompositeChart } from '@&#8203;mantine/charts';
import { data } from './data';

function Demo() {
  return (
    <CompositeChart
      h={300}
      data={data}
      dataKey="date"
      unit="$"
      maxBarWidth={30}
      series={[
        { name: 'Tomatoes', color: 'rgba(18, 120, 255, 0.2)', type: 'bar' },
        { name: 'Apples', color: 'red.8', type: 'line' },
        { name: 'Oranges', color: 'yellow.8', type: 'area' },
      ]}
    />
  );
}

Points labels

LineChart and AreaChart now support withPointLabels prop to display labels on data points:

import { LineChart } from '@&#8203;mantine/charts';
import { data } from './data';

function Demo() {
  return (
    <LineChart
      h={300}
      data={data}
      dataKey="date"
      withLegend
      withPointLabels
      series={[
        { name: 'Apples', color: 'indigo.6' },
        { name: 'Oranges', color: 'blue.6' },
      ]}
    />
  );
}

ScatterChart also supports point labels, but also allows to control which axis should display labels with pointLabels prop:

import { ScatterChart } from '@&#8203;mantine/charts';
import { data } from './data';

function Demo() {
  return (
    <ScatterChart
      h={350}
      data={data}
      dataKey={{ x: 'age', y: 'BMI' }}
      xAxisLabel="Age"
      yAxisLabel="BMI"
      pointLabels="x"
    />
  );
}

BarChart: Mixed stacks

You can now control how BarChart series are stacked by setting stackId property in series object:

import { BarChart } from '@&#8203;mantine/charts';
import { data } from './data';

function Demo() {
  return (
    <BarChart
      h={300}
      data={data}
      dataKey="month"
      series={[
        { name: 'Smartphones', color: 'violet.6', stackId: 'a' },
        { name: 'Laptops', color: 'blue.6', stackId: 'b' },
        { name: 'Tablets', color: 'teal.6', stackId: 'b' },
      ]}
    />
  );
}

BarChart: Minimum bar size

BarChart now supports minBarSize prop to set the minimum size of the bar in px:

import { BarChart } from '@&#8203;mantine/charts';
import { data } from './data';

function Demo() {
  return (
    <BarChart
      h={300}
      data={data}
      dataKey="month"
      withLegend
      series={[
        { name: 'Smartphones', color: 'violet.6' },
        { name: 'Laptops', color: 'blue.6' },
        { name: 'Tablets', color: 'teal.6' },
      ]}
    />
  );
}

Help Center updates

Other changes

  • New demo has been added to Chip component with an example of how to deselect radio chip
  • BarChart now supports maxBarWidth prop to set the maximum width of each bar in px
tabler/tabler-icons (@​tabler/icons-react)

v3.19.0: Release 3.19.0

Compare Source

18 new icons:
  • filled/favicon
  • filled/icons
  • filled/ironing-1
  • filled/ironing-2
  • filled/ironing-3
  • filled/ironing-steam
  • filled/sitemap
  • outline/arrow-down-dashed
  • outline/arrow-left-dashed
  • outline/arrow-narrow-down-dashed
  • outline/arrow-narrow-left-dashed
  • outline/arrow-narrow-right-dashed
  • outline/arrow-narrow-up-dashed
  • outline/arrow-right-dashed
  • outline/arrow-up-dashed
  • outline/building-cog
  • outline/building-minus
  • outline/building-plus

Fixed icon: outline/sitemap

Improvements
Fixes

v3.18.0: Release 3.18.0

Compare Source

18 new icons:
  • outline/joker
  • outline/number-10
  • outline/number-11
  • outline/play-card-1
  • outline/play-card-10
  • outline/play-card-2
  • outline/play-card-3
  • outline/play-card-4
  • outline/play-card-5
  • outline/play-card-6
  • outline/play-card-7
  • outline/play-card-8
  • outline/play-card-9
  • outline/play-card-a
  • outline/play-card-j
  • outline/play-card-k
  • outline/play-card-q
  • outline/play-card-star
import-js/eslint-plugin-import (eslint-module-utils)

v2.12.0

Compare Source

Added

v2.11.1

Compare Source

Fixed
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v50.3.0

Compare Source

Features
  • require-param: add ignoreWhenAllParamsMissing option; fixes #​1317 (3b18435)

v50.2.5

Compare Source

Bug Fixes
  • require-jsdoc: allow TSTypeAliasDeclaration to be detected for export; fixes #​1319 (909de73)
  • force release (6970456)
  • force release (20e0805)
  • update semantic-release (baaf8c3)
  • update semantic-release/github (8e565e0)
puppeteer/puppeteer (puppeteer)

v23.4.1: puppeteer-core: v23.4.1

Compare Source

Bug Fixes
webpack/webpack (webpack)

v5.95.0

Compare Source

Bug Fixes
  • Fixed hanging when attempting to read a symlink-like file that it can't read
  • Handle default for import context element dependency
  • Merge duplicate chunks call after split chunks
  • Generate correctly code for dynamically importing the same file twice and destructuring
  • Use content hash as [base] and [name] for extracted DataURI's
  • Distinguish module and import in module-import for externals import's
  • [Types] Make EnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility
New Features
  • Add new optimization.entryIife option (true by default for the production mode)
  • Pass output.hash* options to loader context
Performance
  • Avoid unneeded re-visit in build chunk graph

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner September 28, 2024 00:38
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 28, 2024
@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 93.19%. Comparing base (f6c9f43) to head (3a0acd0).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3046      +/-   ##
==========================================
- Coverage   93.66%   93.19%   -0.48%     
==========================================
  Files         275      275              
  Lines        7610     7610              
  Branches     1707     1707              
==========================================
- Hits         7128     7092      -36     
- Misses        482      518      +36     
Flag Coverage Δ
93.19% <ø> (-0.48%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link

Bundles Sizes Evolution

📦 Bundle Name Base Size Local Size 𝚫 𝚫% Status
Rum 160.91 KiB 160.91 KiB 0 B 0.00%
Logs 55.99 KiB 55.99 KiB 0 B 0.00%
Rum Slim 109.48 KiB 109.48 KiB 0 B 0.00%
Worker 25.21 KiB 25.21 KiB 0 B 0.00%
🚀 CPU Performance
Action Name Base Average Cpu Time (ms) Local Average Cpu Time (ms) 𝚫
addglobalcontext 0.002 0.002 0.000
addaction 0.037 0.039 0.002
addtiming 0.001 0.001 0.000
adderror 0.039 0.038 -0.001
startstopsessionreplayrecording 0.912 1.556 0.644
startview 1.170 1.663 0.493
logmessage 0.022 0.034 0.013
🧠 Memory Performance
Action Name Base Consumption Memory (bytes) Local Consumption Memory (bytes) 𝚫 (bytes)
addglobalcontext 7.22 KiB 7.06 KiB -163 B
addaction 38.74 KiB 39.04 KiB 308 B
addtiming 7.20 KiB 6.02 KiB -1202 B
adderror 43.56 KiB 42.85 KiB -728 B
startstopsessionreplayrecording 4.58 KiB 4.74 KiB 165 B
startview 459.64 KiB 465.97 KiB 6.32 KiB
logmessage 39.17 KiB 38.41 KiB -776 B

🔗 RealWorld

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.

1 participant