Merge pull request #6038 from nextcloud/backport/5964/stable29

Backport/5964/stable29
This commit is contained in:
Julius Härtl
2024-06-27 11:52:06 +02:00
committed by GitHub
6 changed files with 820 additions and 2012 deletions

2817
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -32,18 +32,18 @@
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.24.1",
"@nextcloud/auth": "^2.2.1",
"@nextcloud/auth": "^2.3.0",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/capabilities": "^1.1.0",
"@nextcloud/dialogs": "^4.2.6",
"@nextcloud/dialogs": "^5.3.2",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.1.1",
"@nextcloud/files": "^3.4.0",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/notify_push": "^1.1.4",
"@nextcloud/router": "^3.0.0",
"@nextcloud/vue": "^8.11.1",
"@nextcloud/vue": "^8.12.0",
"blueimp-md5": "^2.19.0",
"chroma-js": "^2.4.2",
"dompurify": "^3.0.11",

View File

@@ -158,7 +158,7 @@ import { showError, showUndo } from '@nextcloud/dialogs'
import CardItem from '../cards/CardItem.vue'
import '@nextcloud/dialogs/dist/index.css'
import '@nextcloud/dialogs/style.css'
export default {
name: 'Stack',

View File

@@ -117,7 +117,6 @@ const maxUploadSizeState = loadState('deck', 'maxUploadSize', -1)
const picker = getFilePickerBuilder(t('deck', 'File to share'))
.setMultiSelect(false)
.setModal(true)
.setType(1)
.allowDirectories()
.build()

View File

@@ -207,7 +207,7 @@ export default {
}
</script>
<style lang="scss" scoped>
<style lang="scss">
section.app-sidebar__tab--active {
min-height: auto;

View File

@@ -80,7 +80,7 @@ import { generateUrl } from '@nextcloud/router'
import { getCurrentUser } from '@nextcloud/auth'
import { showUndo } from '@nextcloud/dialogs'
import '@nextcloud/dialogs/dist/index.css'
import '@nextcloud/dialogs/style.css'
import { emit } from '@nextcloud/event-bus'
export default {