chore(deps): update all non-major dependencies #1205
+1,193
−1,269
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.17.3
->^1.29.0
7.16.0
->7.17.1
7.16.0
->7.17.1
6.4.0
->6.4.6
^2.15.0
->^2.16.0
^2.15.3
->^2.16.0
^2.15.3
->^2.16.0
^2.15.3
->^2.16.0
^5.64.1
->^5.66.11
^1.112.0
->^1.112.3
^16.1.0
->^16.2.0
^14.5.2
->^14.6.1
^3.0.6
->^3.0.7
^2.0.0
->^2.1.2
4.1.0
->4.2.1
9.18.0
->9.21.0
^5.1.0
->^5.2.0
^5.1.17
->^5.1.23
^5.39.2
->^5.45.0
15.1.7
->15.2.0
20.4.0
->20.4.6
10.4.1
->10.5.2
8.5.1
->8.5.3
^3.4.2
->^3.5.3
^0.3.2
->^0.3.7
^1.0.2
->^1.4.0
^1.9.4
->^1.9.5
5.4
->5.8.2
5.5
->5.8.2
5.6
->5.8.2
5.7
->5.8.2
^1.0.0-beta.9
->^1.0.0-rc.3
^0.5.1
->^0.5.3
^6.1.1
->^6.2.0
^2.11.2
->^2.11.6
^5.1.2
->^5.1.4
^3.0.6
->^3.0.7
^3.24.0
->^3.24.2
Release Notes
Rel1cx/eslint-react (@eslint-react/eslint-plugin)
v1.29.0
Compare Source
✨ New
context-name
rule by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/952🐞 Fixes
naming-convention/use-state
works in components only, closes #953 by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/954🪄 Improvements
recommended-typescript
for typescript files by @bluwy in https://github.com/Rel1cx/eslint-react/pull/949New Contributors
v1.28.0
Compare Source
✨ New
no-flush-sync
rule by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/942skipImportCheck
setting by @Rel1cx🪄 Improvements
v1.27.0
Compare Source
✨ New
no-missing-context-display-name
rule by @Rel1cx in #941🪄 Improvements
useEffect
toadditionalHooks
by @Rel1cx in #938no-duplicate-key
rule fromerror
towarn
by @Rel1cx in #939v1.26.2
Compare Source
🐞 Fixes
no-context-provider
rule to include context name in error messages by @Rel1cx in #935v1.26.1
Compare Source
No notable changes have been made in this release.
v1.26.0
Compare Source
✨ New
v1.25.0
Compare Source
✨ New
ts-blank-eslint-parser
by @Rel1cxts-blank-eslint-parser
by @Rel1cx🐞 Fixes
🪄 Improvements
v1.24.1
Compare Source
🐞 Fixes
disable-debug
,disable-dom
, anddisable-web-apis
configs, closes #923 by @Rel1cx in #924v1.24.0
Compare Source
🪄 Improvements
mantinedev/mantine (@mantine/core)
v7.17.1
Compare Source
What's Changed
[@mantine/core]
Select: Fix caret displayed when the readonly input is clicked (#7476)[@mantine/charts]
Fix incorrect types ofclassNames
prop of PieChart and DonutChart components (#7475)[@mantine/charts]
BubbleChart: Fix broken layout whenlabel
prop is used with React 19[@mantine/form]
Fix missingisJSONString
export (#7508)[@mantine/core]
Fix MultiSelect and TagsInputs dropdowns still being opened on click when components were used inside disabled fieldset (#7528)[@mantine/code-highlight]
Fallback unsupported code to plaintext (#7497)[@mantine/emotion]
Improve "Go to definition" support forcreateStyles
classes (#7526)New Contributors
Full Changelog: mantinedev/mantine@7.17.0...7.17.1
v7.17.0
: 🌶️Compare Source
View changelog with demos on mantine.dev website
Last 7.x minor release
This is the last minor release in the
7.x
series. The next release will be8.0
with breaking changes and new features.You are welcome to review the changelog/code and provide feedback and bug reports in Discord or GitHub discussions:
How to update your project dependencies to the new alpha version:
package.json
@mantine/
packages@mantine/
packages to8.0.0-alpha.0
yarn
ornpm install
Important notes:
Portal reuseTargetNode prop
Portal component now supports
reuseTargetNode
prop which allows to reuse the same target node for all instances.This option is more performant than the previous behavior, it is recommended to be enabled.
This option will be enabled by default in the
8.0
major release.To enable reuseTargetNode option in all components that depend on Portal, add the following code
to your theme:
Example usage. In the following example, all three paragraphs will be rendered in the same target node:
use-form formRootRule
formRootRule
is a special rule path that can be used to validate objects and arraysalongside with their nested fields. For example, it is useful when you want to capture
a list of values, validate each value individually and then validate the list itself
to not be empty:
Another example is to validate an object fields combination:
isJSONString and isNotEmptyHTML form validators
New
isJSONString
andisNotEmptyHTML
form validators:isNotEmptyHTML
checks that form value is not an empty HTML string. Empty string, string with only HTML tags and whitespace are considered to be empty.isJSONString
checks that form value is a valid JSON string.Popover onDismiss
Popover now supports
onDismiss
prop, which makes it easierto subscribe to outside clicks and escape key presses to close popover:
MantineProvider env
MantineProvider component now supports
env
prop.It can be used in test environment to disable some features that
might impact tests and/or make it harder to test components:
To enable test environment, set
env
totest
:use-file-dialog hook
New use-file-dialog allows capturing one or more files from the user
without file input element:
Remix deprecation
Remix is deprecated, the documentation related to Remix integration
was removed, use React Router instead. To simplify maintenance,
Remix/React Router templates were archived and will not be updated.
Help center updates
Other changes
middlewares
overscrollBehavior
proptheme.spacing
values forposition
propunderline="not-hover"
option to display underline only when the link is not hoveredv7.16.3
Compare Source
What's Changed
[@mantine/core]
Removeuse client
fromisLightColor
function[@mantine/core]
TextInput: Fix autocomplete forvariant
prop not working[@mantine/carousel]
Fix aria-hidden warning displayed in Chrome console when indicator is clicked (#7414)[@mantine/core]
Fix clear button overlaying input content in Autocomplete and other similar components (#7431)[@mantine/core]
Combobox: Fix incorrect dropdown padding when used with ScrollArea (#7450)[@mantine/core]
Fix0
gradientdeg
value not working correctly (#7444)[@mantine/core]
ScrollArea: Fix user-select being left as none after interaction with scrollbar in some edge cases (#7423)[@mantine/dates]
DateInput: Fix infinite loop in Safari (#7442)New Contributors
Full Changelog: mantinedev/mantine@7.16.2...7.16.3
v7.16.2
Compare Source
What's Changed
[@mantine/core]
Tooltip: Migrate from deprecateduseDelayGroupContext
hook touseDelayGroup
[@mantine/core]
Tabs: FixtabIndex={0}
set onTabs.Tab
being ignored (#7407)[@mantine/core]
Fix chevron icon not being clickable in Select and MultiSelect components (#7395)[@mantine/dates]
MonthPicker: Fix infinite useEffect with use-form in some cases (#7389)[@mantine/hooks]
use-hotkeys: Add better support for non-QUERTY keyboards (#7390)[@mantine/dates]
DateTimePicker: Fix timezone conversion being applied twice (#7400)[@mantine/hooks]
Fix potential dangerous access of ref value in useEffect cleanup (#7404)New Contributors
Full Changelog: mantinedev/mantine@7.16.1...7.16.2
v7.16.1
Compare Source
What's Changed
[@mantine/core]
Menu: AddwithInitialFocusPlaceholder
prop support[@mantine/core]
Slider: FixonChangeEnd
being called whendisabled
prop is set[@mantine/core]
Add option to customize chevron color withchevronColor
prop in Select and MultiSelect components[@mantine/core]
Fix incorrect styles of nested tables (#7354)[@mantine/core]
: NumberInput: FixonChange
being called inonBlur
if the value has not been changed (#7383)[@mantine/core]
Menu: Adddata-disabled
prop handling to Menu.Item component (#7377)[@mantine/form]
Fix incorrect values handling inform.resetDirty
(#7373)[@mantine/chart]
AreaChart: FixgridColor
andtextColor
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 incorrectwindow.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
mui/material-ui (@mui/material)
v6.4.6
Compare Source
A big thanks to the 4 contributors who made this release possible.
@mui/[email protected]
slots
,slotProps
(#45377) @siriwatknpslotProps.transition
types (#45367) @siriwatknpvars
(#45368) @siriwatknpConfiguration
📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.