Skip to content

chore(deps): bump @nextcloud/vue from 9.0.0-rc.2 to 9.0.0-rc.3#778

Merged
raimund-schluessler merged 1 commit intomainfrom
dependabot/npm_and_yarn/nextcloud/vue-9.0.0-rc.3
Jun 28, 2025
Merged

chore(deps): bump @nextcloud/vue from 9.0.0-rc.2 to 9.0.0-rc.3#778
raimund-schluessler merged 1 commit intomainfrom
dependabot/npm_and_yarn/nextcloud/vue-9.0.0-rc.3

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 28, 2025

Bumps @nextcloud/vue from 9.0.0-rc.2 to 9.0.0-rc.3.

Release notes

Sourced from @​nextcloud/vue's releases.

v9.0.0-rc.3

What's Changed

📝 Notes

  • NcColorPicker
    • The update:open event is removed in favor of the already available close event.
  • NcTextField:
    • The value 'arrowRight' for the trailingButtonIcon property was deprecated is now removed in favor of arrowEnd.

🐛 Fixed bugs

  • fix(NcAppNavigationToggle): restore button design and remove wrong attribute #6984 (susnux)
  • fix(NcInputField): unresolved component and state color #6994 (susnux)
  • fix(NcAppNavigationItem): multi level padding #6861 (GretaD)
  • fix(NcTextField)!: make trailing button icon for confirmation also work on RTL #6993 (susnux)
  • fix(NcAppContent): incorrect page title from a different core.apps format in Nextcloud 30 #7010 (julien-nc)
  • fix(NcButton): correctly apply reverse padding #7029 (raimund-schluessler)
  • fix(NcAvatar): update 'hasStatus' flag if changed #7033 (Antreesy)
  • fix(NcCheckboxRadioSwitch): align icons with the first row of label #7043 (Antreesy)
  • fix(actions): use pointer cursor for action button text #7042 (ChristophWurst)
  • fix(NcAvatar): migrate from deprecated showUserStatus prop #7053 (Antreesy)
  • fix(NcAppNavigationSettings): adjust style and padding of button #7018 (raimund-schluessler)
  • fix(NcRichText): always render code blocks in LTR direction #7056 (Antreesy)
  • fix(NcHeaderMenu): bring caret back #7071 (ShGKme)
  • fix(NcChip): adjust default prop declaration #7074 (Antreesy)
  • fix(NcPopover): component crash when unmounted shown #7077 (Antreesy)
  • fix(NcListItem): let active prop take higher priority #7086 (DorraJaouad)

Other Changes

  • refactor(NcTextArea): migrate component to Typescript and script-setup #6986 (susnux)
  • refactor(NcNoteCard): migrate component to Typescript and script-setup #6985 (susnux)
  • refactor(NcDialog): migrate to script-setup and use Typescript for module #6968 (susnux)
  • refactor: migrate Nc*Field to Typescript #6951 (susnux)
  • refactor(NcUserBubble): migrate components to Typescript #6946 (susnux)
  • refactor(NcHeaderMenu): export as Typescript module and reorder script tags #7000 (susnux)
  • fix(NcAppNavigationSettings): button left full width #6999 (raimund-schluessler)
  • refactor: migrate NcAppNavigationToggle / NcAppNavigationSpacer to Typescript #7004 (susnux)
  • refactor(NcContent): migrate to Typescript and script-setup #7003 (susnux)
  • chore: adjust vitest config to be consistent on CI and locally #7065 (susnux)
  • refactor(NcLoadingIcon): migrate component to Typescript and script-setup #7076 (susnux)
  • refactor(NcDateTimePickerNative): migrate component to Typescript and script-setup #7075 (susnux)
  • refactor: deprecate events not comply with Vue event naming rules #7058 (susnux)
  • fix(NcModal): correctly handle when trying to activate non-existing focus-trap #7084 (Antreesy)
  • refactor(NcHighlight): migrate component to Typescript #7073 (susnux)
  • refactor(NcColorPicker): migrate component to Typescript #7080 (susnux)

Full Changelog: nextcloud-libraries/nextcloud-vue@v9.0.0-rc.2...v9.0.0-rc.3

Changelog

Sourced from @​nextcloud/vue's changelog.

v9.0.0 (unreleased)

Full Changelog

💥 Breaking Changes

  • The package now uses Vue 3 instead of Vue 2.7
  • The package is now a native ESM package and the CommonJS entry points were dropped!

Plugin registering removed

The plugin registering all the components and directives globally is removed. Instead use local registration of components and directives. If you really need an alternative we recommend using unplugin-vue-components.

Import paths changed

The old import paths like @nextcloud/vue/dist/Components/NcComponent.js were removed. Instead use the new ones (@nextcloud/vue/components/NcComponent).

Example shell command to do the refactoring:

PATTERN='s,@nextcloud/vue/dist/([^/]+)/([^.]+).js,@nextcloud/vue/\L\1\E/\2,'
find src \
  -name "*.vue" \
  -exec sed -i -re "$PATTERN" \{\} +

Container components now default to box-sizing: border-box

For container components that can be directly mounted to <body> the box-sizing was adjusted to match the behavior of NcContent.

The box-sizing: border-box is now default for following components and its content:

  • NcDialog
  • NcModal
  • NcPopover

Consistent usage of modelValue prop

All input elements were refactored to use the modelValue prop instead of the now removed value / checked prop and emit the update:modelValue event instead of the removed update:checked / update:value / input events. This which allows consistent using of v-model.

Affected components:

  • Removed checked prop and update:checked event
    • NcActionCheckbox
    • NcActionRadio
    • NcCheckboxRadioSwitch
  • Removed value prop and update:value / input events:
  • The modelValue prop of NcActionRadio is expecting to have type string|number to be compared to value prop.
  • The value prop was renamed to modelValue, the update:value or input events were renamed to update:modelValue. This affects the following components:
    • NcActionInput
    • NcActionTextEditable
    • NcColorPicker
    • NcDateTimePicker
    • NcDateTimePickerNative
    • NcInputField

... (truncated)

Commits
  • 2cf1fb4 Merge pull request #7094 from nextcloud-libraries/release/9.0.0-rc.3
  • d071c75 chore: prepare v9.0.0-rc.3 release
  • 2afd6d2 Merge pull request #7080 from nextcloud-libraries/chore/refactor-nc-colorpicker
  • 0121a3b Merge pull request #7073 from nextcloud-libraries/chore/refactor-nc-highlight
  • 0fcc80c refactor(NcHighlight): migrate component to Typescript
  • 6e55467 Merge pull request #7091 from nextcloud-libraries/translations_a29bf79827304d...
  • d52b40f Merge pull request #7092 from nextcloud-libraries/dependabot/npm_and_yarn/typ...
  • 9ea9f00 chore(deps-dev): Bump @​types/node from 24.0.3 to 24.0.4
  • 659ede0 fix(l10n): Translate l10n/messages.pot in pt_PT
  • 1926b04 Merge pull request #7086 from nextcloud-libraries/fix/nc-list-item-active
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) from 9.0.0-rc.2 to 9.0.0-rc.3.
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-vue/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/blob/main/CHANGELOG.md)
- [Commits](nextcloud-libraries/nextcloud-vue@v9.0.0-rc.2...v9.0.0-rc.3)

---
updated-dependencies:
- dependency-name: "@nextcloud/vue"
  dependency-version: 9.0.0-rc.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 28, 2025
@raimund-schluessler raimund-schluessler merged commit 2d9beea into main Jun 28, 2025
22 checks passed
@raimund-schluessler raimund-schluessler deleted the dependabot/npm_and_yarn/nextcloud/vue-9.0.0-rc.3 branch June 28, 2025 06:28
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

None yet

Development

Successfully merging this pull request may close these issues.

1 participant