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
Родитель 90af63d757
Коммит 7b21a9a7ea
5 изменённых файлов: 9 добавлений и 36 удалений

25
package-lock.json сгенерированный
Просмотреть файл

@ -31,7 +31,6 @@
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-task-checkbox": "^1.0.6",
"moment": "^2.30.1",
"nextcloud-vue-collections": "^0.13.0",
"p-queue": "^8.0.1",
"url-search-params-polyfill": "^8.2.5",
"vue": "^2.7.15",
@ -14771,11 +14770,6 @@
"version": "4.17.21",
"license": "MIT"
},
"node_modules/lodash-es": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
"integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
},
"node_modules/lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
@ -16249,25 +16243,6 @@
"resolved": "https://registry.npmjs.org/nested-property/-/nested-property-4.0.0.tgz",
"integrity": "sha512-yFehXNWRs4cM0+dz7QxCd06hTbWbSkV0ISsqBfkntU6TOY4Qm3Q88fRRLOddkGh2Qq6dZvnKVAahfhjcUvLnyA=="
},
"node_modules/nextcloud-vue-collections": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/nextcloud-vue-collections/-/nextcloud-vue-collections-0.13.0.tgz",
"integrity": "sha512-J5n2Kf9h/HVKFM0YdcHnNcbbqSossq7ocQwC9fHFs87/5iKgkUMPmVmla6uTKZHUKYCNnKSJtG7pDOWD4AP47A==",
"dependencies": {
"@nextcloud/axios": "^2.5.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.12.0",
"lodash-es": "^4.17.21"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"peerDependencies": {
"vue": "^2.7.16"
}
},
"node_modules/node-addon-api": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",

Просмотреть файл

@ -52,7 +52,6 @@
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-task-checkbox": "^1.0.6",
"moment": "^2.30.1",
"nextcloud-vue-collections": "^0.13.0",
"p-queue": "^8.0.1",
"url-search-params-polyfill": "^8.2.5",
"vue": "^2.7.15",

Просмотреть файл

@ -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() {

Просмотреть файл

@ -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: {

Просмотреть файл

@ -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: {