Skip to content

fix(deps): update dependency @nextcloud/vue to ^8.27.0 (stable30) #7080

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nextcloud/vue ^8.22.0 -> ^8.27.0 age adoption passing confidence

Release Notes

nextcloud-libraries/nextcloud-vue (@​nextcloud/vue)

v8.27.0

Compare Source

What's Changed

🚀 Enhancements
🐛 Fixed bugs
Other Changes

Full Changelog: nextcloud-libraries/nextcloud-vue@v8.26.1...v8.27.0

v8.26.1

Compare Source

What's Changed

🐛 Fixed bugs
Other Changes

Full Changelog: nextcloud-libraries/nextcloud-vue@v8.26.0...v8.26.1

v8.26.0

Compare Source

📝 Notes
NcAppSidebar

The info slot was introduced to allow customization of sidebar header content.
This will replace original main name of the sidebar and header, subname, secondary-actions, tertiary-actions slots.
It is recommended to use slot together with NcAppSidebarHeader component to support accessibility features.

NcPopover

The focusTrap property is now deprecated and will be replaced with noFocusTrap,
the reason behind this is to only have boolean properties with default value of false allowing shortcut props.

🚀 Enhancements
  • [stable8] feat(NcAppSidebar): add info slot #​6843
  • [stable8] feat(NcPopover): add new noFocusTrap prop #​6808
🐛 Fixed bugs
  • [stable8] fix(NcRichText): references prop type #​6800
  • [stable8] fix(NcAppContent): don't remove list when showing details in mobile or no-split mode #​6261 (wofferl)
  • [stable8] fix(NcMentionBubble): position selectable text aligned with the component #​6837
  • [stable8] fix(NcAvatar): do not load avatar from server, if iconClass was provided #​6836
  • [stable8] fix(NcSelectUsers): add missing search event #​6838

v8.25.1

Compare Source

Full Changelog

🐛 Fixed bugs
  • fix(NcPopover): regression with incorrect size on RTL #​6797

v8.25.0

Compare Source

Full Changelog

📝 Notes
NcDateTimePicker

In version 8 the NcDateTimePicker was a transparent wrapper around the vue2 datepicker library.
With version 9 and beyond we will no longer transparently wrap external libraries,
thus only documented props, events, and slots of Nextcloud components are guaranteed to work.
This will allow use to change the underlying library while keeping a stable API for the component users.

For this we deprecated the range property in favor of three new types for the NcDateTimePicker.

  • date-range
  • time-range
  • datetime-range

Also the formatter property is deprecated, instead you can now provide a function to the format property,
which will receive a Date object and should return the formatted date as a string.

Tooltip directive

The Tooltip directive has been deprecated and will be removed in the future.
In most cases you want to use the native browser tooltips instead by using the native HTML title attribute.
In some rare cases where you really need a formatted tooltip NcPopover could be used.

 <NcButton
-    v-tooltip="title"
+    :title="title"

v8.24.0

Compare Source

📝 Notes
Boolean properties

Some boolean props have been deprecated in favor of alternatives with default value false.
This allows to use shorthand notation on the template, as a prop with a default value of false
will be set to true if it is set (without any value) in the template,
similar to native HTML boolean attributes.
Following components have been adjusted:

Component Deprecated prop New alternative
NcAvatar showUserStatus hideStatus
NcAvatar showUserStatusCompact verboseStatus
NcModal canClose noClose
NcDialog canClose noClose
NcButton color variant and native type

NcButton (and NcDialogButton) now provides a variant prop to set the color variant to use (e.g. 'primary') and allows to set the native button type using the type prop.
The legacy behavior, type for the color variant and nativeType for the button type, still works but will be removed in the next major version.

To make a later migration to version 9 easier you can already migrate your NcButton usage like this:

<!-- Before: -->
<NcButton type="primary" native-type="submit">Submit</NcButton>
<!-- After: -->
<NcButton variant="primary" type="submit">Submit</NcButton>
🚀 Enhancements
  • feat(NcActions): add opened and closed events to handle closing/opening end #​6683 (skjnldsv)
  • feat(NcBlurHash): Add a blur hash component #​6396 (susnux)
  • feat(NcDialog): Allow to catch reset event #​6006 (susnux)
  • feat: Add consistent variant prop for design variant of buttons / chips #​6472 (susnux)
  • feat(NcAppContent): Allow to set the page title #​5269 (susnux)
  • feat: add boolean prop alternatives with false as default value #​6656 (susnux)
🐛 Fixed bugs
  • fix(NcPopover): correctly wait for animation end in after-show/after-hide events #​6683 (skjnldsv)
  • fix(NcEmojiPicker): not focusable when used in another focus trap #​6558 (ShGKme)
  • fix(RTL): initialize language direction check once in utils #​6523 (Antreesy)
  • fix(NcColorPicker): remove unused invalid styles #​6565 (susnux)
  • fix(NcAppSidebar, NcHeaderMenu): correctly focus trigger/close button when no focusable elements inside #​6636 (Antreesy)
  • fix(NcInputField): Only show error state border if user interacted with the input #​6640 (susnux)
  • fix(NcEmojiPicker): return focus steals actual focus #​6652 (ShGKme)
Other Changes
  • refactor(NcCheckboxRadioSwitch): Do not use HTML attribute name id as property name #​5516 (susnux)
  • docs: adjust version number for variant props #​6623 (susnux)
  • Updated workflows and dependencies
  • Updated translations

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 added the dependencies Pull requests that update a dependency file label Apr 5, 2025
@renovate renovate bot requested review from max-nextcloud and mejo- April 5, 2025 08:24
@github-actions github-actions bot enabled auto-merge April 5, 2025 08:24
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.24.0 (stable30) fix(deps): update dependency @nextcloud/vue to ^8.25.0 (stable30) Apr 17, 2025
@renovate renovate bot force-pushed the renovate/stable30-nextcloud-vue-8.x branch from ff20d57 to 4797271 Compare April 17, 2025 00:25
@renovate renovate bot force-pushed the renovate/stable30-nextcloud-vue-8.x branch from 4797271 to 20c0cf6 Compare April 17, 2025 12:50
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.25.0 (stable30) fix(deps): update dependency @nextcloud/vue to ^8.25.1 (stable30) Apr 17, 2025
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.25.1 (stable30) fix(deps): update dependency @nextcloud/vue to ^8.26.0 (stable30) Apr 25, 2025
@renovate renovate bot force-pushed the renovate/stable30-nextcloud-vue-8.x branch from 20c0cf6 to bc51827 Compare April 25, 2025 14:59
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.26.0 (stable30) fix(deps): update dependency @nextcloud/vue to ^8.26.1 (stable30) May 7, 2025
@renovate renovate bot force-pushed the renovate/stable30-nextcloud-vue-8.x branch from bc51827 to 9453349 Compare May 7, 2025 17:53
@renovate renovate bot changed the title fix(deps): update dependency @nextcloud/vue to ^8.26.1 (stable30) fix(deps): update dependency @nextcloud/vue to ^8.27.0 (stable30) May 28, 2025
@renovate renovate bot force-pushed the renovate/stable30-nextcloud-vue-8.x branch from 9453349 to 36a9673 Compare May 28, 2025 20:59
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