Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 15, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@react-aria/live-announcer 3.1.1 -> 3.3.1 age adoption passing confidence
ariakit (source) 2.0.0-next.38 -> 2.0.0-next.44 age adoption passing confidence
ariakit-utils (source) 0.17.0-next.24 -> 0.17.0-next.27 age adoption passing confidence
tailwind-merge 1.5.1 -> 1.14.0 age adoption passing confidence

Release Notes

adobe/react-spectrum (@​react-aria/live-announcer)

v3.3.1

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.2

Compare Source

ariakit/ariakit (ariakit)

v2.0.0-next.44

Compare Source

Patch Changes
  • Fixed Checkbox with a string value prop used in combination with the useCheckboxState hook. (#​2223)

v2.0.0-next.43

Compare Source

Patch Changes
  • Fixed infinite loop when rendering <Popover portal> with no tabbable elements inside. (#​2170)

v2.0.0-next.42

Compare Source

Patch Changes
  • Extracted React specific utilities from the ariakit-utils package to the ariakit-react-utils package. (#​1819)

  • Fixed type errors in TypeScript v4.8. (#​1885)

  • TypeScript: Renamed types to have unique names matching their pattern. (#​2153)

  • Updated dependencies: ariakit-utils@0.17.0-next.27, ariakit-react-utils@0.17.0-next.27.

v2.0.0-next.41

Compare Source

Minor Changes
  • Improved Combobox with autoSelect behavior. (#​1821)

    Before, when autoSelect was enabled, the first item would be selected only on text insertion. That is, deleting or pasting text was ignored. Now, the first item is selected on any change to the input value, including programmatic changes.

  • Updated the behavior of autoComplete="inline" and autoComplete="both" on Combobox so the completion string is only appended and highlighted when the caret is at the end of the input. (#​1823)

  • Added moveOnKeyPress prop to CompositeItem. (#​1821)

  • Added moveOnKeyPress prop to Composite. (#​1821)

Patch Changes
  • Fixed scroll jump on Combobox when pressing modifier keys. (#​1826)

v2.0.0-next.40

Compare Source

Minor Changes
  • Activating CompositeItem elements rendered as links with Cmd/Ctrl+Enter now correctly opens the new tab in the background instead of bringing it to front. (#​1771)

  • Added support for clicking on CompositeItem elements rendered as links with Alt+Enter to start a download. (#​1771)

  • Improved CompositeTypeahead runtime performance. (#​1792)

  • Added displayName to components in development. (#​1791)

Patch Changes
  • Fixed Combobox with autoComplete="inline" or autoComplete="both" not allowing text selection in some cases. (#​1773)

  • Fixed onFocusVisible timing on the Focusable component so it waits for any logic in focus/keydown events to be performed before applying the data-focus-visible attribute. (#​1774)

  • Fixed stale validity state on FormField. (#​1778)

  • Fixed nested Menu prematurely hiding when moving the mouse to it on Safari. (#​1764)

  • Fixed Popover blurred pixels when trying to fit viewport. (#​1793)

  • Fixed portalRef prop type on Portal not accepting mutable refs with initial value set to null.

  • Fixed Select not getting focus when some browser extensions (like 1password) automatically moves focus to the next form element. (#​1777)

  • Updated dependencies: ariakit-utils@0.17.0-next.26.

v2.0.0-next.39

Compare Source

Minor Changes
  • Improved support for CompositeItem rendered as a link. This includes ComboboxItem, MenuItem, and SelectItem components. (#​1736)

    Now clicking on <a> items with a mouse or keyboard while pressing metaKey (macOS) or ctrlKey (PC) opens the link in a new tab as expected. Popovers won't close and Select/Combobox values won't change when clicking with those modifiers.

  • The role attribute on MenuButton, when inside another menu, is now based on the popover role instead of being always menuitem. (#​1728)

Patch Changes
  • Fixed Collection items order when adding items from start. (#​1748)

  • Fixed Combobox not calling the onKeyDown prop when pressing printable keys. (#​1739)

  • Fixed Hovercard prematurely hiding when moving mouse to it when the card is positioned diagonally to the anchor. (#​1742)

  • Fixed aria-labelledby attribute on Menu not pointing to the correct element when using MenuHeading. (#​1737)

  • Fixed Tab with defaultSelectedId on React 17. (#​1724)

  • Updated dependencies: ariakit-utils@0.17.0-next.25.

dcastil/tailwind-merge (tailwind-merge)

v1.14.0

Compare Source

New Features
  • Improve support for arbitrary values by @​dcastil in https://github.com/dcastil/tailwind-merge/pull/263
    • Previously, tailwind-merge checked the content of the arbitrary value portion of a class in most cases to understand whether the type of the arbitrary value is correct (e.g. it checked for number followed by length unit for the length type). That lead to the issue that a class like mt-[calc(theme(fontSize.4xl)/1.125)] would not be recognized correctly because no length unit is present in the arbitrary value.
    • I changed the check of the arbitrary value to also pass when a calc(), min(), max() and clamp() function is used in the arbitrary value.
    • In ambiguous cases, you can use data type labels to mark the type of a class. Read more
    • Moreover, I removed the check where the type of the arbitrary value is unambiguous. In the class mt-[…] the arbitrary value can only be a length, so I don't check for it. A consequence of this is that if you use non-Tailwind classes like mt-[this-is-totally-not-tailwind], tailwind-merge will recognize it as a Tailwind class from now on. Please don't use classes that look like Tailwind classes with arbitrary value but aren't Tailwind classes with tailwind-merge (in default config) to prevent incorrect merging behavior.
Bug Fixes
Documentation

Full Changelog: dcastil/tailwind-merge@v1.13.2...v1.14.0

v1.13.2

Compare Source

Bug Fixes
Documentation

Full Changelog: dcastil/tailwind-merge@v1.13.1...v1.13.2

Thanks to @​bluetch for sponsoring tailwind-merge! ❤️

v1.13.1

Compare Source

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v1.13.0...v1.13.1

v1.13.0

Compare Source

This release focuses on improvements to the docs.

Bug Fixes
Documentation
Other

Full Changelog: dcastil/tailwind-merge@v1.12.0...v1.13.0

v1.12.0

Compare Source

With this release tailwind-merge supports all features introduced in Tailwind CSS v3.3.

New Features
  • Add support for postfix modifier by @​dcastil in https://github.com/dcastil/tailwind-merge/pull/214
    • This adds support for line-height modifiers in font-size utilities like text-lg/7 and more potential postfix modifiers in the future (learn more).
    • All classes are checked for postfix modifiers since there will be more in the future and they'll be configurable with plugins.
    • tailwind-merge can't know from the class syntax alone whether something is a modifier or not. E.g. there is w-1/2 which doesn't contain a modifier. So tailwind-merge always checks whether class without potential modifier exists and if it doesn't it checks for full class. This behavior might get reversed in the next major version as a breaking change (learn more).
    • Added conflictingClassGroupModifiers object to tailwind-merge config (learn more).

Full Changelog: dcastil/tailwind-merge@v1.11.0...v1.12.0

v1.11.0

Compare Source

New Features
  • Add support for Tailwind CSS v3.3 except line-height shorthand by @​dcastil in https://github.com/dcastil/tailwind-merge/pull/210
    • The line-height shorthand in font-size utilities (text-lg/7) introduced in Tailwind CSS v3.3 is not yet supported in tailwind-merge because that feature is a bit more involved. I'll add support for it in a future release. More info in https://github.com/dcastil/tailwind-merge/issues/211.
    • Added new validator isPercent which is needed internally for the default scale of color stop positions.
    • New theme key gradientColorStopPositions supported in tailwind-merge.
    • New logical properties like ps-0 (padding-inline-start: 0px;) are de-duplicated away when using the matching property for all sides afterwards like in this case p-0, but not when using single axis sides like px-0 because padding-inline-start can also be the top or bottom padding depending on writing mode.
      • Basically twMerge('ps-0 p-0') === 'p-0' && twMerge('ps-0 px-0') === 'ps-0 px-0'.
      • If you want to use logical properties and know which writing modes your app is limited to, add the right conflicts yourself to your tailwind-merge config.

Full Changelog: dcastil/tailwind-merge@v1.10.0...v1.11.0

Thanks to @​brandonmcconnell for sponsoring tailwind-merge! ❤️

v1.10.0

Compare Source

New Features

Full Changelog: dcastil/tailwind-merge@v1.9.1...v1.10.0

v1.9.1

Compare Source

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v1.9.0...v1.9.1

v1.9.0

Compare Source

New Features
Documentation
Other

Full Changelog: dcastil/tailwind-merge@v1.8.1...v1.9.0

v1.8.1

Compare Source

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v1.8.0...v1.8.1

Thanks to @​aniravi24 for sponsoring tailwind-merge! ❤️

v1.8.0

Compare Source

New Features

Full Changelog: dcastil/tailwind-merge@v1.7.0...v1.8.0

Thanks to @​gjtorikian for sponsoring tailwind-merge! ❤️

v1.7.0

Compare Source

New Features

Full Changelog: dcastil/tailwind-merge@v1.6.2...v1.7.0

v1.6.2

Compare Source

Bug Fixes
  • Fix arbitrary numbers not working in stroke-width by @​dcastil in https://github.com/dcastil/tailwind-merge/pull/153
    • Now tailwind-merge handles classes like stroke-[3] correctly.
    • I deprecated the validator isArbitraryWeight and renamed it to isArbitraryNumber to reflect its broader use case. You don't need to change anything right now, but if you have some spare time, rename isArbitraryWeightisArbitraryNumber in your code since isArbitraryWeight will be removed in the next major release.
Other
  • Add package version number to dev releases by @​dcastil in https://github.com/dcastil/tailwind-merge/pull/154
    • Now dev releases don't start with 0.0.0-dev anymore and instead have the version number of the last release, like 1.6.1-dev. That makes it easier for tools like Renovate to understand which package version you're using in case you use dev releases.

Full Changelog: dcastil/tailwind-merge@v1.6.1...v1.6.2

v1.6.1

Compare Source

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v1.6.0...v1.6.1

v1.6.0

Compare Source

New Features
Bug Fixes
Other

Full Changelog: dcastil/tailwind-merge@v1.5.1...v1.6.0

Thanks to @​charkour for sponsoring tailwind-merge! ❤️


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from navin-moorthy as a code owner August 15, 2022 10:29
@vercel
Copy link

vercel bot commented Aug 15, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-tailwind ❌ Failed (Inspect) Jul 16, 2023 4:42pm

@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 8ede44d to d14ca80 Compare August 20, 2022 21:42
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from d14ca80 to 38eb7d0 Compare August 23, 2022 04:11
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 38eb7d0 to 03aa293 Compare September 5, 2022 13:39
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 03aa293 to a5e0b4b Compare September 30, 2022 12:42
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from a5e0b4b to a83e993 Compare November 20, 2022 20:43
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from a83e993 to d70ff0e Compare March 11, 2023 03:31
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from d70ff0e to 77ceba9 Compare March 30, 2023 21:55
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 77ceba9 to 3c9295b Compare April 17, 2023 09:47
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 3c9295b to 40538d5 Compare June 1, 2023 20:16
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 40538d5 to 22641c5 Compare June 8, 2023 10:24
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 22641c5 to 174e550 Compare June 15, 2023 22:13
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 174e550 to 64142d5 Compare June 27, 2023 17:26
@renovate renovate bot force-pushed the renovate/prod-dependencies-(minor) branch from 64142d5 to 4775675 Compare July 16, 2023 16:40
@renovate renovate bot changed the title chore(deps): ⬆️ update prod dependencies (minor) chore(deps): ⬆️ update prod dependencies (minor) - autoclosed Sep 29, 2023
@renovate renovate bot closed this Sep 29, 2023
@renovate renovate bot deleted the renovate/prod-dependencies-(minor) branch September 29, 2023 06:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant