chore(deps): update dependency @nextcloud/vue to v9.0.0-alpha.6 #239

Open
Renovate wants to merge 1 commits from renovate/nextcloud-vue-9.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
@nextcloud/vue dependencies patch 9.0.0-alpha.5 -> 9.0.0-alpha.6

Release Notes

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

v9.0.0-alpha.6

Compare Source

💥 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!
  • The old import paths like @nextcloud/vue/dist/Components/NcComponent.js were removed, please use the new ones (@nextcloud/vue/components/NcComponent) instead.
  • The plugin registering all the components and directives globally is removed.
    Use local registration instead. Use unplugin-vue-components if you need an alternative.
  • The limitWidth prop of NcSettingsSection was removed (the content is now always limited width) #​5605
  • NcCounterBubble: remove default slot and make count prop required #​5997x
  • The closing and opening events of NcAppSidebar were removed as they are directly emitted when the sidebar was opened when using v-if and also just duplicated the state of the open prop #​5606
  • The checked prop was renamed to modelValue, the update:checked event was renamed to update:modelValue. This affects the following components:
    • NcActionCheckbox
    • NcActionRadio
    • NcCheckboxRadioSwitch
  • 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
    • NcPasswordField
    • NcRichContenteditable
    • NcSelect
    • NcSelectTags
    • NcSettingsInputText
    • NcSettingsSelectGroup
    • NcTextArea
    • NcTextField
    • NcTimezonePicker
  • The leading icon slot was changed from #default to #icon in Nc*Field components:
    • NcInputField
    • NcTextField
    • NcPasswordField
  • The exact prop was removed. This affects the following components:
    • NcActionRouter
    • NcAppNavigationItem
    • NcBreadcrumb
    • NcListItem
  • The isFullscreen and isMobile mixins were removed. Use the according composables instead.
  • The box-sizing: border-box is now default for following components and its content. This is done to match behaviour of NcContent (as they can be mounted directly to body):
    • NcModal
    • NcPopover

What's Changed compared to last pre-release

💥 Breaking Changes
🚀 Enhancements
🐛 Fixed bugs
Other Changes

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.

🔕 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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) | dependencies | patch | [`9.0.0-alpha.5` -> `9.0.0-alpha.6`](https://renovatebot.com/diffs/npm/@nextcloud%2fvue/9.0.0-alpha.5/9.0.0-alpha.6) | --- ### Release Notes <details> <summary>nextcloud-libraries/nextcloud-vue (@&#8203;nextcloud/vue)</summary> ### [`v9.0.0-alpha.6`](https://github.com/nextcloud-libraries/nextcloud-vue/releases/tag/v9.0.0-alpha.6) [Compare Source](https://github.com/nextcloud-libraries/nextcloud-vue/compare/v9.0.0-alpha.5...v9.0.0-alpha.6) ##### 💥 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! - The old import paths like `@nextcloud/vue/dist/Components/NcComponent.js` were removed, please use the new ones (`@nextcloud/vue/components/NcComponent`) instead. - The plugin registering all the components and directives globally is removed. Use local registration instead. Use [`unplugin-vue-components`](https://github.com/unplugin/unplugin-vue-components) if you need an alternative. - The `limitWidth` prop of `NcSettingsSection` was removed (the content is now always limited width) [#&#8203;5605](https://github.com/nextcloud-libraries/nextcloud-vue/pull/5605) - `NcCounterBubble`: remove default slot and make `count` prop required [#&#8203;5997](https://github.com/nextcloud-libraries/nextcloud-vue/pull/5997)x - The `closing` and `opening` events of `NcAppSidebar` were removed as they are directly emitted when the sidebar was opened when using `v-if` and also just duplicated the state of the `open` prop [#&#8203;5606](https://github.com/nextcloud-libraries/nextcloud-vue/pull/5606) - The `checked` prop was renamed to `modelValue`, the `update:checked` event was renamed to `update:modelValue`. This affects the following components: - `NcActionCheckbox` - `NcActionRadio` - `NcCheckboxRadioSwitch` - 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` - `NcPasswordField` - `NcRichContenteditable` - `NcSelect` - `NcSelectTags` - `NcSettingsInputText` - `NcSettingsSelectGroup` - `NcTextArea` - `NcTextField` - `NcTimezonePicker` - The leading icon slot was changed from `#default` to `#icon` in `Nc*Field` components: - `NcInputField` - `NcTextField` - `NcPasswordField` - The `exact` prop was removed. This affects the following components: - `NcActionRouter` - `NcAppNavigationItem` - `NcBreadcrumb` - `NcListItem` - The `isFullscreen` and `isMobile` mixins were removed. Use the according composables instead. - The `box-sizing: border-box` is now default for following components and its content. This is done to match behaviour of `NcContent` (as they can be mounted directly to `body`): - `NcModal` - `NcPopover` #### What's Changed compared to last pre-release ##### 💥 Breaking Changes - \[next] feat(NcCounterBubble)!: remove default slot and make `count` prop required by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5997 - \[next] feat!: remove plugin by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6349 ##### 🚀 Enhancements - \[next] feat(NcNoteCard): Add `text` prop to pass the content of the note card by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5901 - \[next] feat(NcPasswordField): add as-text prop to remove autocomplete by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5902 - \[next] feat(NcListItem): provide additional slots for NcActions / extra actions customization by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5903 - \[next] feat(NcUserBubble): add RouterLink support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5912 - \[next] feat(NcListItem): allow to control the display of a three dot menu by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5983 - \[next] feat(useHotKey): add composable for keyboard shortcuts by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5996 - \[next] feat(NcCounterBubble): add count prop for humanized count display by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5990 - \[next] feat(NcDialog): Allow to make the dialog a form by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5945 - \[next] feat(NcButton): Allow to specify `target` attribute for buttons with href by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5939 - \[next] feat(NcHeaderButton): Add a button only alternative for the header menu by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6070 - \[next] feat(NcModal): make dark header configurable by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6088 - \[next] \[NcRichText] Add style to mount point for custom picker and custom widget elements by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6140 - \[next] feat(NcRic**Full Changelog**: https://github.com/nextcloud-libraries/nextcloud-vue/compare/v9.0.0-alpha.5...v9.0.0-alpha.6hText): make interactive widgets opt-in by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6153 - \[next] fix(NcTextArea): remove non-existing prop 'type' for textarea by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6173 - \[next] feat: add isDarkTheme functions and composables by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6196 - \[next] feat: Add `spawnDialog` function by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6207 - \[next] feat(NcRichText): highlight code syntax if language provided by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6247 - \[next] feat(NcAppNavigation): Provide consistent in-app search by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5848 - \[next] feat(NcDialogButton): Allow to return `false` from callback to keep dialog open by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6035 ##### 🐛 Fixed bugs - \[next] style(NcAppNavigationCaption): remove margin-bottom by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5826 - \[next] fix(NcInputField): Make helper text aligned and maxcontrast color by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5827 - \[next] docs: Fix `NcAppNavigationCaption` examples by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5825 - \[next] fix(NcListItem): Anchor height was set not to content but random area by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5835 - \[next] fix(NcListItem): do not render counter on falsy values by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5836 - \[next] fix(NcAppSidebar): manage focus only after transition has finished by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5840 - \[next] fix(NcAppContent): splitpane splitter styles with dark theme by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5846 - \[next] fix(NcColorPicker): Make the color circle size depend on clickable area by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5845 - \[next] fix: alignement of listitem name for one line layout by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5854 - \[next] fix(NcModal): temporary deactivate focus-traps on modal open by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5852 - \[next] NcActionCheckbox: align with NcActionText by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5858 - \[next] NcAppSettingsSection: make titles normal h3 size by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5838 - \[next] NcSelect: make same height and color as NcTextField by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5864 - \[next] fix: Migrate SCSS `$clickable-area` to CSS `--default-clickable-area` by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5752 - \[next] fix(style): adjust elements styles to unit-less line-height by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5891 - \[next] fix(NcSettingsSection): remove default h2 margin-top by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5900 - \[next] fix(NcAppNavigationItem): Fix popper boundary element by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5789 - \[next] fix(NcListItem): Make paddings smaller again on Nextcloud 30 by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5904 - \[next] fix(NcAppNavigationCaption): properly align with NcAppNavigationItem by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5805 - \[next] fix(NcCounterButton): adjust min-width to make it a right circle by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5911 - \[next] fix(NcInputField): Make focus visible on trailing button look better by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5828 - \[next] fix(NcUserBubble): fix tag assignment if no url but to provided by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5918 - \[next] fix(NcNoteCard): Adjust padding and margin by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5920 - \[next] fix: Fix alignment of dashboard list items by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5919 - \[next] NcListItem: remove max width by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5880 - \[next] fix(NcListItem): Adjust icon color when the list item is active by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5944 - \[next] fix(NcUserBubble): make it perfectly aligned circle by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5949 - \[next] fix(NcAvatar): extend variable size of status icons by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5961 - \[next] fix(NcActions): NcActionCheckbox and NcActionRadio icon alignment by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5962 - \[next] fix(NcCheckboxRadioSwitch): adjust to new border radius by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5977 - \[next] fix: use `--header-height` instead of `50px` constant by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5978 - \[next] fix(NcAppSettingsDialog): Adjust navigation entries to match Nextcloud 30 design by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5981 - \[next] fix(NcRichText): modify MENTION_START regex to work on older MobileSafari versions by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5993 - \[next] fix(NcAppNavigation): add border-right by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5989 - \[next] fix(NcRichContenteditable): adjust to new design by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5995 - \[next] fix(NcCounterBubble): increase size by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5998 - \[next] fix(NcListItem): correctly use NcCounterBubble after slot removal by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6003 - \[next] fix(NcRichText): discard reference widgets on text update by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6012 - \[next] fix(NcCheckBoxRadioSwitch): do not toggle on a click on a link inside by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6014 - \[next] fix(NcAppNavigation): keep border only on mobile by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6009 - \[next] fix(NcActions): Role `menu` needs a label assigned so label by trigger by [@&#8203;susnux](https://github.com/susnux) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6023 - \[next] fix(NcHeaderMenu): Remove padding from popover menu by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6030 - \[next] fix(useHotKey): respect press of MacOS Cmd key as Ctrl key by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6031 - \[next] fix(NcChip): Ensure chips without icon do not reserve empty space for icon by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5882 - \[next] fix(NcActions): Pressing escape should always close the actions by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6042 - \[next] NcListItem: make the max width of the NcListItem in oneline mode apply only to the content name by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6046 - \[next] fix(NcSelect): Ensure component height is same as input element by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5890 - \[next] fix(NcHeaderMenu): Ensure trigger button is has same width as wrapper by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6053 - \[next] fix(NcCheckboxRadioSwitch): switch may always have checked-like background by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6057 - \[next] fix(NcEmojiPicker): adjust hover effects to new design by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6059 - \[next] fix(NcAvatar): add a fallback for missing CSS variable by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6091 - \[next] style(NcColorPicker): adjust styles of advanced fields to match NcInputField by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6101 - fix(NcListItem): change condition to display the counter number by [@&#8203;julien-nc](https://github.com/julien-nc) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6117 - \[next] fix(reference-picker): allow closing modal dialog on NcReferencePicker by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6149 - \[next] fix(NcActions): RTL support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6155 - \[next] fix(NcAppNavigation): RTL support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6156 - \[next] fix(NcAppSidebar): apply toggle offset transition only on sidebar transition by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6154 - \[next] fix(NcSelect): RTL support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6159 - \[next] fix(NcAppDetailsToggle): Rtl support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6160 - \[next] fix(NcModal): rtl support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6174 - \[next] fix(NcAppSidebarTabs): force color-main-text for icons by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6190 - \[next] fix(NcDateTimePicker): change styling to look more like the native picker by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6192 - \[next] fix(NcInputField): icon position in RTL by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6208 - \[next] fix(NcChip): wrong color-primary-text variable used by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6220 - \[next] fix(NcRichContenteditable): support email mentions by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6237 - \[next] fix(NcAppContent): white splitter in dark mode when using split-horizontal mode by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6239 - \[next] fix(NcRichContenteditable): do not break adjacent mentions by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6240 - \[next] fix(NcRichContenteditable): fix pasted text handling by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6249 - \[next] fix(NcListItem): Don't require name prop by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6274 - \[next] style(NcCheckboxRadioSwitch): fix styles in disabled state by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6276 - \[next] fix(NcAppContent): add RTL support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6305 - \[next] fix(NcCheckboxRadioSwitch): RTL support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6309 - \[next] fix(NcDateTimePicker): popup position by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6314 - \[next] Fix(NcDashboardWidgetItem): Add RTL support to NcDashboardWidgetItem by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6318 - \[next] Fix(NcSettingsSection): Add RTL support to NcSettingsSection info icon. by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6317 - \[next] fix(useHotKey): allow hotkeys with implicit `SHIFT` and add `caseSensitive`, custom event filter options by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6319 - \[next] fix(NcRichContenteditable): prevent content from overflowing by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6320 - \[next] fix(NcRichText): async import remark-gfm library by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6335 - \[next] fix(NcAvatar): title not shown when component used without menu by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6353 - \[next] fix(NcActionCheckbox): Fix padding in RTL mode by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6361 - \[next] fix(NcModal): make 'Close' button the last element for the focus-trap by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6296 - \[next] fix(NcActionButton): RTL support by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6323 - \[next] fix(NcAppNavigationItem): align utils with actions and other components by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6082 - \[next] fix(NcAvatar): attributes order by [@&#8203;raimund-schluessler](https://github.com/raimund-schluessler) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6377 - \[next] fix(NcActionButton): order in components by [@&#8203;raimund-schluessler](https://github.com/raimund-schluessler) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6375 - \[next] fix(NcColorPicker): close popover on submit event by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6383 - \[next] fix!: make 'box-sizing: border-box' a default behaviour for all containers by [@&#8203;Antreesy](https://github.com/Antreesy) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6390 - \[next] fix(NcInputField): Make sure label and placeholder is not jumping by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5832 - \[next] fix(NcListItem): Fix padding in RTL mode. by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6402 - \[next] fix(NcCounterBubble): show original count in title when shortened by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6401 - \[next] fix(NcActions): Use full window height by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5809 ##### Other Changes - \[next] feat(NcRichText): Call public reference API when unauthenticated by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5847 - ci: Migrate component tests to Playwright by [@&#8203;susnux](https://github.com/susnux) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5818 - \[next] chore(functions): add docs by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5693 - \[next] fix(NcAppNavigationSettings): use tertiary styling for the toggle button by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5817 - \[next] style(NcAvatar): make button element round as avatar itself by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5915 - docs(README): fix install command by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5931 - \[next] chore(docs): specify more Nextcloud versions in styleguidist by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5934 - \[next] refactor(NcModal): get rid of unneeded calc() by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/5986 - \[next] chore(deps): Update dependencies for `next` branch by [@&#8203;susnux](https://github.com/susnux) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6007 - \[next] chore: Update styles from server for styleguide by [@&#8203;susnux](https://github.com/susnux) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6025 - \[next] chore: add npm-audit-fix workflow by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6092 - docs: add missing `useIsDarkTheme` import by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6215 - \[next] chore(NcAppSidebarTabs): remove internal component from docs by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6267 - \[next] fix: scope css styles for TimeZonePicker by [@&#8203;backportbot](https://github.com/backportbot) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6191 - \[next] fix(NcCounterBubble): small typo in docs by [@&#8203;raimund-schluessler](https://github.com/raimund-schluessler) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6378 - \[next] feat!: Change module import paths - drop `dist` and `.js`-extension by [@&#8203;susnux](https://github.com/susnux) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6389 - \[next] chore(Nc\*Field): icon slot change note by [@&#8203;ShGKme](https://github.com/ShGKme) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6398 - chore: Prepare release of v9.0.0-alpha.6 by [@&#8203;susnux](https://github.com/susnux) in https://github.com/nextcloud-libraries/nextcloud-vue/pull/6397 </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xODEuNiIsInVwZGF0ZWRJblZlciI6IjM3LjE4MS42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Renovate added 1 commit 2025-01-21 00:04:53 +00:00
chore(deps): update dependency @nextcloud/vue to v9.0.0-alpha.6
Some checks failed
repod / xml (push) Successful in 10s
repod / php (push) Successful in 1m5s
repod / nodejs (push) Failing after 44s
repod / release (push) Has been skipped
f1b7c152be
Some checks failed
repod / xml (push) Successful in 10s
repod / php (push) Successful in 1m5s
repod / nodejs (push) Failing after 44s
repod / release (push) Has been skipped
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/nextcloud-vue-9.x:renovate/nextcloud-vue-9.x
git checkout renovate/nextcloud-vue-9.x
Sign in to join this conversation.
No Reviewers
No Label
No Milestone
No project
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Xefir/repod#239
No description provided.