kopia lustrzana https://github.com/nextcloud/social
Merge pull request #338 from nextcloud/dependabot/npm_and_yarn/nextcloud-vue-0.6.0
Bump nextcloud-vue from 0.5.0 to 0.6.0pull/385/head
commit
f43b1a37b3
|
@ -9556,9 +9556,9 @@
|
|||
}
|
||||
},
|
||||
"nextcloud-vue": {
|
||||
"version": "0.5.1",
|
||||
"resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.5.1.tgz",
|
||||
"integrity": "sha512-TTNz7vg2KxtASipBoKadsnipKptK/SK/tHjtq2x1xVDkLgjXrNCUm2+EtU/fPLNoOaueD4yUyAOJPNKQ4ff08Q==",
|
||||
"version": "0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.6.0.tgz",
|
||||
"integrity": "sha512-0Du8+jtaQN18NQRZvXpYYZPqWgiuxbQnLo12HMY1p+QkLfimoQOG1MI5vkVsrsbqg/ewJK9Wu1VsTJ30PJUuCQ==",
|
||||
"requires": {
|
||||
"md5": "^2.2.1",
|
||||
"nextcloud-axios": "^0.1.2",
|
||||
|
@ -14719,9 +14719,9 @@
|
|||
"integrity": "sha512-vKdA9vZuV0ADB8O2qCah//nGv9seb+S1hMTwU6IhPmmOsax4EHqwzyXSTf7kr3jCobsQIBBtNg2bpuRYoxalAA=="
|
||||
},
|
||||
"vue2-datepicker": {
|
||||
"version": "2.8.0",
|
||||
"resolved": "https://registry.npmjs.org/vue2-datepicker/-/vue2-datepicker-2.8.0.tgz",
|
||||
"integrity": "sha512-IQw/ai04WYGZC4P7toLhryBHhrqc1hCJ3ivgEayXfeDD1EjJnIhUMb4nqo2JvRG72nPqc9HJvHM/66K+AZnjUA==",
|
||||
"version": "2.9.0",
|
||||
"resolved": "https://registry.npmjs.org/vue2-datepicker/-/vue2-datepicker-2.9.0.tgz",
|
||||
"integrity": "sha512-THS5uCcWAPSU8OAqeie+Jie+7aw23WVbptfR5x1A8YFn4IizgWvttXoLpgwKmwwuJ59O36eoY0aeP/ugsK1RCQ==",
|
||||
"requires": {
|
||||
"fecha": "^2.3.3"
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"dependencies": {
|
||||
"linkifyjs": "^2.1.8",
|
||||
"nextcloud-axios": "^0.1.3",
|
||||
"nextcloud-vue": "^0.5.0",
|
||||
"nextcloud-vue": "^0.6.0",
|
||||
"tributejs": "^3.5.1",
|
||||
"twemoji": "^11.2.0",
|
||||
"uuid": "^3.3.2",
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
<template>
|
||||
<div v-if="!serverData.setup" id="app-social" :class="{public: serverData.public}">
|
||||
<div v-if="!serverData.public" id="app-navigation">
|
||||
<app-navigation :menu="menu" />
|
||||
<ul>
|
||||
<app-navigation-item v-for="item in menu.items" :key="item.key" :item="item" />
|
||||
</ul>
|
||||
</div>
|
||||
<div id="app-content">
|
||||
<div v-if="serverData.isAdmin && !serverData.checks.success" class="setup social__wrapper">
|
||||
|
@ -90,7 +92,7 @@
|
|||
|
||||
<script>
|
||||
import {
|
||||
AppNavigation
|
||||
AppNavigationItem
|
||||
} from 'nextcloud-vue'
|
||||
import axios from 'nextcloud-axios'
|
||||
import Search from './components/Search'
|
||||
|
@ -99,7 +101,7 @@ import currentuserMixin from './mixins/currentUserMixin'
|
|||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
AppNavigation,
|
||||
AppNavigationItem,
|
||||
Search
|
||||
},
|
||||
mixins: [currentuserMixin],
|
||||
|
|
Ładowanie…
Reference in New Issue