remove deprecated nextcloud-vue-collections

Signed-off-by: grnd-alt <git@belakkaf.net>
This commit is contained in:
grnd-alt
2025-01-16 17:46:51 +01:00
parent 90af63d757
commit 7b21a9a7ea
5 changed files with 9 additions and 36 deletions

View File

@@ -5,7 +5,7 @@
<template>
<div>
<CollectionList v-if="boardId"
<NcCollectionList v-if="boardId"
:id="boardId"
:name="boardTitle"
type="deck" />
@@ -13,12 +13,12 @@
</template>
<script>
import { CollectionList } from 'nextcloud-vue-collections'
import { NcCollectionList } from '@nextcloud/vue'
export default {
name: 'CollaborationView',
components: {
CollectionList,
NcCollectionList,
},
computed: {
boardId() {

View File

@@ -84,7 +84,7 @@
provider-id="deck"
:item-id="board.id" />
<CollectionList v-if="projectsEnabled && board.id"
<NcCollectionList v-if="projectsEnabled && board.id"
:id="`${board.id}`"
:name="board.title"
type="deck" />
@@ -92,8 +92,7 @@
</template>
<script>
import { NcAvatar, NcSelect, NcActions, NcActionButton, NcActionCheckbox, NcRelatedResourcesPanel } from '@nextcloud/vue'
import { CollectionList } from 'nextcloud-vue-collections'
import { NcCollectionList, NcAvatar, NcSelect, NcActions, NcActionButton, NcActionCheckbox, NcRelatedResourcesPanel } from '@nextcloud/vue'
import { mapGetters, mapState } from 'vuex'
import { getCurrentUser } from '@nextcloud/auth'
import { showError, showSuccess } from '@nextcloud/dialogs'
@@ -108,7 +107,7 @@ export default {
NcActionButton,
NcActionCheckbox,
NcSelect,
CollectionList,
NcCollectionList,
NcRelatedResourcesPanel,
},
props: {

View File

@@ -24,7 +24,7 @@
@input="debouncedUpdateCardDue" />
<div v-if="projectsEnabled" class="section-wrapper">
<CollectionList v-if="card.id"
<NcCollectionList v-if="card.id"
:id="`${card.id}`"
:name="card.title"
type="deck-card" />
@@ -43,7 +43,7 @@ import { mapState, mapGetters } from 'vuex'
import moment from '@nextcloud/moment'
import { loadState } from '@nextcloud/initial-state'
import { CollectionList } from 'nextcloud-vue-collections'
import { NcCollectionList } from '@nextcloud/vue'
import Color from '../../mixins/color.js'
import {
getLocale,
@@ -61,7 +61,7 @@ export default {
AssignmentSelector,
TagSelector,
Description,
CollectionList,
NcCollectionList,
},
mixins: [Color],
props: {