update dependencies

This commit is contained in:
korelstar 2020-11-22 20:15:31 +01:00
parent a4a282c87a
commit dd35ba2dc1
5 changed files with 1390 additions and 1952 deletions

3250
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,20 +14,20 @@
},
"dependencies": {
"@nextcloud/axios": "^1.5.0",
"@nextcloud/dialogs": "^3.0.0",
"@nextcloud/dialogs": "^3.1.1",
"@nextcloud/event-bus": "^1.2.0",
"@nextcloud/moment": "^1.1.1",
"@nextcloud/router": "^1.2.0",
"@nextcloud/vue": "^3.1.1",
"@nextcloud/vue": "^3.2.0",
"@nextcloud/vue-dashboard": "^1.0.1",
"@nextcloud/webpack-vue-config": "^1.4.1",
"easymde": "^2.12.1",
"@nextcloud/webpack-vue-config": "^2.0.0",
"easymde": "^2.13.0",
"markdown-it": "^12.0.2",
"stylelint-webpack-plugin": "^2.1.1",
"vue": "^2.6.12",
"vue-fragment": "^1.5.1",
"vue-observe-visibility": "^0.4.6",
"vue-router": "^3.4.8",
"vue-router": "^3.4.9",
"vuex": "^3.5.1"
},
"browserslist": [
@ -37,36 +37,36 @@
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/core": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@nextcloud/browserslist-config": "^1.0.0",
"@nextcloud/eslint-config": "^2.2.0",
"@nextcloud/eslint-plugin": "^1.5.0",
"@nextcloud/eslint-config": "^3.0.0",
"@nextcloud/eslint-plugin": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"babel-loader": "^8.2.1",
"core-js": "^3.7.0",
"css-loader": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.1.0",
"eslint-webpack-plugin": "^2.4.0",
"file-loader": "^6.2.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.18.0",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.4",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.3.0"
"webpack-merge": "^5.4.0"
}
}

View File

@ -4,13 +4,13 @@
:show-more-text="t('notes', 'notes')"
:show-more-url="showMoreUrl"
>
<template v-slot:default="{ item }">
<template #default="{ item }">
<DashboardWidgetItem
:target-url="getItemTargetUrl(item)"
:main-text="item.title"
:sub-text="subtext(item)"
>
<template v-slot:avatar>
<template #avatar>
<div
class="note-item"
:class="{ 'note-item-favorite': item.favorite, 'note-item-no-favorites': !hasFavorites }"
@ -18,7 +18,7 @@
</template>
</DashboardWidgetItem>
</template>
<template v-slot:empty-content>
<template #empty-content>
<EmptyContent icon="icon-notes">
<template #desc>
<p class="notes-empty-content-label">

View File

@ -121,7 +121,7 @@ export default {
padding-bottom: 30vh;
}
.CodeMirror {
.EasyMDEContainer .CodeMirror {
min-height: 100%;
line-height: 1.5em;
border: none;

View File

@ -8,28 +8,26 @@
:allow-collapse="true"
@click.prevent.stop="onToggleCategories"
>
<template>
<AppNavigationItem
:title="t('notes', 'All notes')"
icon="icon-recent"
@click.prevent.stop="onSelectCategory(null)"
>
<AppNavigationCounter slot="counter">
{{ numNotes }}
</AppNavigationCounter>
</AppNavigationItem>
<AppNavigationItem
:title="t('notes', 'All notes')"
icon="icon-recent"
@click.prevent.stop="onSelectCategory(null)"
>
<AppNavigationCounter slot="counter">
{{ numNotes }}
</AppNavigationCounter>
</AppNavigationItem>
<AppNavigationItem v-for="category in categories"
:key="category.name"
:title="categoryTitle(category.name)"
:icon="category.name === '' ? 'icon-emptyfolder' : 'icon-files'"
@click.prevent.stop="onSelectCategory(category.name)"
>
<AppNavigationCounter slot="counter">
{{ category.count }}
</AppNavigationCounter>
</AppNavigationItem>
</template>
<AppNavigationItem v-for="category in categories"
:key="category.name"
:title="categoryTitle(category.name)"
:icon="category.name === '' ? 'icon-emptyfolder' : 'icon-files'"
@click.prevent.stop="onSelectCategory(category.name)"
>
<AppNavigationCounter slot="counter">
{{ category.count }}
</AppNavigationCounter>
</AppNavigationItem>
</AppNavigationItem>
</template>