update dependencies

This commit is contained in:
korelstar 2022-08-13 17:53:26 +02:00
parent a8891271b3
commit bab1e774da
5 changed files with 21022 additions and 21574 deletions

42551
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,13 +13,12 @@
"stylelint:fix": "stylelint 'src/**/*.vue' 'css/**/*.scss' --fix"
},
"dependencies": {
"@nextcloud/axios": "^1.10.0",
"@nextcloud/dialogs": "^3.1.4",
"@nextcloud/event-bus": "^2.1.1",
"@nextcloud/axios": "^2.0.0",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/event-bus": "^3.0.0",
"@nextcloud/moment": "^1.2.1",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^5.3.1",
"@nextcloud/vue-dashboard": "^2.0.1",
"@nextcloud/vue": "^5.4.0",
"diff": "^5.1.0",
"easymde": "^2.16.1",
"markdown-it": "^13.0.1",
@ -31,18 +30,18 @@
"vue-router": "^3.5.3",
"vuex": "^3.6.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/eslint-config": "^8.1.2",
"@nextcloud/stylelint-config": "^2.2.0",
"@nextcloud/webpack-vue-config": "^5.3.0"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^8.0.0",
"@nextcloud/stylelint-config": "^2.1.2",
"@nextcloud/webpack-vue-config": "^5.2.1"
}
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}

View File

@ -1,5 +1,5 @@
<template>
<Content app-name="notes" :content-class="{loading: loading.notes}">
<ContentVue app-name="notes" :content-class="{loading: loading.notes}">
<AppNavigation :class="{loading: loading.notes, 'icon-error': error}">
<AppNavigationNew
v-show="!loading.notes && !error"
@ -33,7 +33,7 @@
<router-view v-else />
<router-view name="sidebar" />
</Content>
</ContentVue>
</template>
<script>
@ -52,6 +52,8 @@ import AppSettings from './components/AppSettings.vue'
import NavigationList from './components/NavigationList.vue'
import store from './store.js'
const ContentVue = Content
export default {
name: 'App',
@ -60,7 +62,7 @@ export default {
AppNavigation,
AppNavigationNew,
AppSettings,
Content,
ContentVue,
NavigationList,
},

View File

@ -34,8 +34,7 @@
</template>
<script>
import { DashboardWidget, DashboardWidgetItem } from '@nextcloud/vue-dashboard' // TODO: should be refactored with next release of @nextcloud/vue : https://github.com/nextcloud/nextcloud-vue-dashboard/issues/407
import { EmptyContent } from '@nextcloud/vue'
import { DashboardWidget, DashboardWidgetItem, EmptyContent } from '@nextcloud/vue'
import { generateUrl } from '@nextcloud/router'
import { getDashboardData } from '../NotesService.js'
@ -53,7 +52,6 @@ export default {
data() {
return {
loading: true,
creating: false,
items: [],
hasMoreItems: false,
}

View File

@ -103,8 +103,8 @@ import {
import { showError } from '@nextcloud/dialogs'
import { emit } from '@nextcloud/event-bus'
import SyncAlertIcon from 'vue-material-design-icons/SyncAlert'
import PencilOffIcon from 'vue-material-design-icons/PencilOff'
import SyncAlertIcon from 'vue-material-design-icons/SyncAlert.vue'
import PencilOffIcon from 'vue-material-design-icons/PencilOff.vue'
import { config } from '../config.js'
import { fetchNote, refreshNote, saveNoteManually, queueCommand, conflictSolutionLocal, conflictSolutionRemote } from '../NotesService.js'