Merge pull request #54128 from nextcloud/dep/nextcloud

pull/54082/head
John Molakvoæ 2025-07-29 11:53:50 +07:00 committed by GitHub
commit 1d4032dafd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
208 changed files with 357 additions and 350 deletions

@ -29,6 +29,7 @@ describe('Composables: useNavigation', () => {
describe('currentView', () => {
beforeEach(() => {
// eslint-disable-next-line import/namespace
navigation = new nextcloudFiles.Navigation()
spy.mockImplementation(() => navigation)
})
@ -39,6 +40,7 @@ describe('Composables: useNavigation', () => {
})
it('should return already active navigation', async () => {
// eslint-disable-next-line import/namespace
const view = new nextcloudFiles.View({ getContents: () => Promise.reject(new Error()), icon: '<svg></svg>', id: 'view-1', name: 'My View 1', order: 0 })
navigation.register(view)
navigation.setActive(view)
@ -48,6 +50,7 @@ describe('Composables: useNavigation', () => {
})
it('should be reactive on updating active navigation', async () => {
// eslint-disable-next-line import/namespace
const view = new nextcloudFiles.View({ getContents: () => Promise.reject(new Error()), icon: '<svg></svg>', id: 'view-1', name: 'My View 1', order: 0 })
navigation.register(view)
const wrapper = mount(TestComponent)
@ -63,6 +66,7 @@ describe('Composables: useNavigation', () => {
describe('views', () => {
beforeEach(() => {
// eslint-disable-next-line import/namespace
navigation = new nextcloudFiles.Navigation()
spy.mockImplementation(() => navigation)
})
@ -73,6 +77,7 @@ describe('Composables: useNavigation', () => {
})
it('should return already registered views', () => {
// eslint-disable-next-line import/namespace
const view = new nextcloudFiles.View({ getContents: () => Promise.reject(new Error()), icon: '<svg></svg>', id: 'view-1', name: 'My View 1', order: 0 })
// register before mount
navigation.register(view)
@ -82,7 +87,9 @@ describe('Composables: useNavigation', () => {
})
it('should be reactive on registering new views', () => {
// eslint-disable-next-line import/namespace
const view = new nextcloudFiles.View({ getContents: () => Promise.reject(new Error()), icon: '<svg></svg>', id: 'view-1', name: 'My View 1', order: 0 })
// eslint-disable-next-line import/namespace
const view2 = new nextcloudFiles.View({ getContents: () => Promise.reject(new Error()), icon: '<svg></svg>', id: 'view-2', name: 'My View 2', order: 1 })
// register before mount

@ -17,6 +17,7 @@ import { action } from '../actions/favoriteAction'
import * as favoritesService from '../services/Favorites'
import { registerFavoritesView } from './favorites'
// eslint-disable-next-line import/namespace
const { Folder, getNavigation } = filesUtils
vi.mock('@nextcloud/axios')

@ -36,7 +36,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -57,7 +57,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -75,7 +75,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/upload
- version: 1.10.0

@ -59,7 +59,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.1
- license: BSD-2-Clause
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -89,7 +89,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

@ -56,7 +56,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -36,7 +36,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -57,7 +57,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -75,7 +75,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/upload
- version: 1.10.0

@ -60,7 +60,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -24,7 +24,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -59,7 +59,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.1
- license: BSD-2-Clause
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -89,7 +89,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

@ -24,7 +24,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -39,7 +39,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -60,7 +60,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -78,7 +78,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

@ -63,7 +63,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.1
- license: BSD-2-Clause
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -93,7 +93,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

@ -30,7 +30,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0
@ -48,7 +48,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -66,7 +66,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

4
dist/5792-5792.js vendored

File diff suppressed because one or more lines are too long

@ -59,7 +59,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.5
- license: MIT
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -80,7 +80,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -101,7 +101,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

File diff suppressed because one or more lines are too long

4
dist/5810-5810.js vendored

File diff suppressed because one or more lines are too long

@ -22,7 +22,7 @@ SPDX-FileCopyrightText: Alkemics
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0
@ -37,7 +37,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -55,7 +55,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- base64-js
- version: 1.5.1

File diff suppressed because one or more lines are too long

@ -36,7 +36,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -57,7 +57,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -75,7 +75,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/upload
- version: 1.10.0

@ -57,7 +57,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -78,7 +78,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -96,7 +96,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

@ -33,7 +33,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0
@ -48,7 +48,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -66,7 +66,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

@ -60,7 +60,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -31,7 +31,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -52,7 +52,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -70,7 +70,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

@ -30,7 +30,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -20,7 +20,7 @@ SPDX-FileCopyrightText: Andrey Sitnik <andrey@sitnik.ru>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

@ -60,7 +60,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -35,7 +35,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -24,7 +24,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -30,7 +30,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

@ -60,7 +60,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -48,7 +48,7 @@ SPDX-FileCopyrightText: Amit Gupta (https://amitkumargupta.work/)
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -23,7 +23,7 @@ SPDX-FileCopyrightText: Alkemics
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0
@ -38,7 +38,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -56,7 +56,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- base64-js
- version: 1.5.1

File diff suppressed because one or more lines are too long

@ -11,7 +11,7 @@ SPDX-FileCopyrightText: Christoph Wurst
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

File diff suppressed because one or more lines are too long

@ -121,7 +121,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -142,7 +142,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -166,7 +166,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/upload
- version: 1.10.0

File diff suppressed because one or more lines are too long

@ -23,7 +23,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

@ -32,7 +32,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -46,7 +46,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -67,7 +67,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -88,7 +88,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

File diff suppressed because one or more lines are too long

4
dist/core-main.js vendored

File diff suppressed because one or more lines are too long

@ -57,7 +57,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -78,7 +78,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -99,7 +99,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

File diff suppressed because one or more lines are too long

@ -15,7 +15,7 @@ SPDX-FileCopyrightText: Christoph Wurst
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

@ -31,7 +31,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -64,7 +64,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue
- version: 8.28.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -35,7 +35,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

@ -20,7 +20,7 @@ SPDX-FileCopyrightText: Christoph Wurst
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -11,7 +11,7 @@ SPDX-FileCopyrightText: Christoph Wurst
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

@ -34,7 +34,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -11,7 +11,7 @@ SPDX-FileCopyrightText: Christoph Wurst
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

@ -26,7 +26,7 @@ SPDX-FileCopyrightText: Andrey Sitnik <andrey@sitnik.ru>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

@ -33,7 +33,7 @@ SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

@ -20,7 +20,7 @@ SPDX-FileCopyrightText: Christoph Wurst
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

@ -86,7 +86,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -119,7 +119,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -72,7 +72,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.5
- license: MIT
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -81,7 +81,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.4.0
- license: GPL-3.0-or-later
- @nextcloud/calendar-availability-vue
- version: 2.2.7
- version: 2.2.8
- license: MIT
- @nextcloud/capabilities
- version: 1.2.0
@ -108,7 +108,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -28,7 +28,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -28,7 +28,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -24,7 +24,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -52,7 +52,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -73,7 +73,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -91,7 +91,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/upload
- version: 1.10.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -60,7 +60,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -81,7 +81,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -99,7 +99,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/upload
- version: 1.10.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -67,7 +67,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.1
- license: BSD-2-Clause
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -88,7 +88,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -106,7 +106,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

File diff suppressed because one or more lines are too long

@ -1,2 +1,2 @@
(()=>{"use strict";var e,r,t,i={97986:(e,r,t)=>{var i=t(61338),o=t(85168),a=t(63814),n=t(53334);const l=(0,t(35947).YK)().setApp("files").detectUser().build();document.addEventListener("DOMContentLoaded",(function(){const e=window.OCA;e.UnifiedSearch&&(l.info("Initializing unified search plugin: folder search from files app"),e.UnifiedSearch.registerFilterAction({id:"in-folder",appId:"files",searchFrom:"files",label:(0,n.Tl)("files","In folder"),icon:(0,a.d0)("files","app.svg"),callback:function(){arguments.length>0&&void 0!==arguments[0]&&!arguments[0]?l.debug("Folder search callback was handled without showing the file picker, it might already be open"):(0,o.a1)("Pick plain text files").addMimeTypeFilter("httpd/unix-directory").allowDirectories(!0).addButton({label:"Pick",callback:e=>{l.info("Folder picked",{folder:e[0]});const r=e[0];(0,i.Ic)("nextcloud:unified-search:add-filter",{id:"in-folder",appId:"files",searchFrom:"files",payload:r,filterUpdateText:(0,n.Tl)("files","Search in folder: {folder}",{folder:r.basename}),filterParams:{path:r.path}})}}).build().pick()}}))}))}},o={};function a(e){var r=o[e];if(void 0!==r)return r.exports;var t=o[e]={id:e,loaded:!1,exports:{}};return i[e].call(t.exports,t,t.exports,a),t.loaded=!0,t.exports}a.m=i,e=[],a.O=(r,t,i,o)=>{if(!t){var n=1/0;for(s=0;s<e.length;s++){t=e[s][0],i=e[s][1],o=e[s][2];for(var l=!0,d=0;d<t.length;d++)(!1&o||n>=o)&&Object.keys(a.O).every((e=>a.O[e](t[d])))?t.splice(d--,1):(l=!1,o<n&&(n=o));if(l){e.splice(s--,1);var c=i();void 0!==c&&(r=c)}}return r}o=o||0;for(var s=e.length;s>0&&e[s-1][2]>o;s--)e[s]=e[s-1];e[s]=[t,i,o]},a.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return a.d(r,{a:r}),r},a.d=(e,r)=>{for(var t in r)a.o(r,t)&&!a.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce(((r,t)=>(a.f[t](e,r),r)),[])),a.u=e=>e+"-"+e+".js?v="+{640:"b2fa23a809053c6305c5",5771:"a4e2a98efcfb7393c5bd",5810:"f63f10359069f886ce52",7432:"71b42a3f9698c187ab3c"}[e],a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),r={},t="nextcloud:",a.l=(e,i,o,n)=>{if(r[e])r[e].push(i);else{var l,d;if(void 0!==o)for(var c=document.getElementsByTagName("script"),s=0;s<c.length;s++){var f=c[s];if(f.getAttribute("src")==e||f.getAttribute("data-webpack")==t+o){l=f;break}}l||(d=!0,(l=document.createElement("script")).charset="utf-8",l.timeout=120,a.nc&&l.setAttribute("nonce",a.nc),l.setAttribute("data-webpack",t+o),l.src=e),r[e]=[i];var u=(t,i)=>{l.onerror=l.onload=null,clearTimeout(p);var o=r[e];if(delete r[e],l.parentNode&&l.parentNode.removeChild(l),o&&o.forEach((e=>e(i))),t)return t(i)},p=setTimeout(u.bind(null,void 0,{type:"timeout",target:l}),12e4);l.onerror=u.bind(null,l.onerror),l.onload=u.bind(null,l.onload),d&&document.head.appendChild(l)}},a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),a.j=2277,(()=>{var e;a.g.importScripts&&(e=a.g.location+"");var r=a.g.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var i=t.length-1;i>-1&&(!e||!/^http(s?):/.test(e));)e=t[i--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e})(),(()=>{a.b=document.baseURI||self.location.href;var e={2277:0};a.f.j=(r,t)=>{var i=a.o(e,r)?e[r]:void 0;if(0!==i)if(i)t.push(i[2]);else{var o=new Promise(((t,o)=>i=e[r]=[t,o]));t.push(i[2]=o);var n=a.p+a.u(r),l=new Error;a.l(n,(t=>{if(a.o(e,r)&&(0!==(i=e[r])&&(e[r]=void 0),i)){var o=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;l.message="Loading chunk "+r+" failed.\n("+o+": "+n+")",l.name="ChunkLoadError",l.type=o,l.request=n,i[1](l)}}),"chunk-"+r,r)}},a.O.j=r=>0===e[r];var r=(r,t)=>{var i,o,n=t[0],l=t[1],d=t[2],c=0;if(n.some((r=>0!==e[r]))){for(i in l)a.o(l,i)&&(a.m[i]=l[i]);if(d)var s=d(a)}for(r&&r(t);c<n.length;c++)o=n[c],a.o(e,o)&&e[o]&&e[o][0](),e[o]=0;return a.O(s)},t=self.webpackChunknextcloud=self.webpackChunknextcloud||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),a.nc=void 0;var n=a.O(void 0,[4208],(()=>a(97986)));n=a.O(n)})();
//# sourceMappingURL=files-search.js.map?v=4390379be615a3a0606b
(()=>{"use strict";var e,r,t,i={97986:(e,r,t)=>{var i=t(61338),o=t(85168),a=t(63814),n=t(53334);const l=(0,t(35947).YK)().setApp("files").detectUser().build();document.addEventListener("DOMContentLoaded",(function(){const e=window.OCA;e.UnifiedSearch&&(l.info("Initializing unified search plugin: folder search from files app"),e.UnifiedSearch.registerFilterAction({id:"in-folder",appId:"files",searchFrom:"files",label:(0,n.Tl)("files","In folder"),icon:(0,a.d0)("files","app.svg"),callback:function(){arguments.length>0&&void 0!==arguments[0]&&!arguments[0]?l.debug("Folder search callback was handled without showing the file picker, it might already be open"):(0,o.a1)("Pick plain text files").addMimeTypeFilter("httpd/unix-directory").allowDirectories(!0).addButton({label:"Pick",callback:e=>{l.info("Folder picked",{folder:e[0]});const r=e[0];(0,i.Ic)("nextcloud:unified-search:add-filter",{id:"in-folder",appId:"files",searchFrom:"files",payload:r,filterUpdateText:(0,n.Tl)("files","Search in folder: {folder}",{folder:r.basename}),filterParams:{path:r.path}})}}).build().pick()}}))}))}},o={};function a(e){var r=o[e];if(void 0!==r)return r.exports;var t=o[e]={id:e,loaded:!1,exports:{}};return i[e].call(t.exports,t,t.exports,a),t.loaded=!0,t.exports}a.m=i,e=[],a.O=(r,t,i,o)=>{if(!t){var n=1/0;for(s=0;s<e.length;s++){t=e[s][0],i=e[s][1],o=e[s][2];for(var l=!0,d=0;d<t.length;d++)(!1&o||n>=o)&&Object.keys(a.O).every((e=>a.O[e](t[d])))?t.splice(d--,1):(l=!1,o<n&&(n=o));if(l){e.splice(s--,1);var c=i();void 0!==c&&(r=c)}}return r}o=o||0;for(var s=e.length;s>0&&e[s-1][2]>o;s--)e[s]=e[s-1];e[s]=[t,i,o]},a.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return a.d(r,{a:r}),r},a.d=(e,r)=>{for(var t in r)a.o(r,t)&&!a.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce(((r,t)=>(a.f[t](e,r),r)),[])),a.u=e=>e+"-"+e+".js?v="+{640:"b2fa23a809053c6305c5",5771:"a4e2a98efcfb7393c5bd",5810:"e0ecfcd31fb108c51bfd",7432:"71b42a3f9698c187ab3c"}[e],a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),r={},t="nextcloud:",a.l=(e,i,o,n)=>{if(r[e])r[e].push(i);else{var l,d;if(void 0!==o)for(var c=document.getElementsByTagName("script"),s=0;s<c.length;s++){var f=c[s];if(f.getAttribute("src")==e||f.getAttribute("data-webpack")==t+o){l=f;break}}l||(d=!0,(l=document.createElement("script")).charset="utf-8",l.timeout=120,a.nc&&l.setAttribute("nonce",a.nc),l.setAttribute("data-webpack",t+o),l.src=e),r[e]=[i];var u=(t,i)=>{l.onerror=l.onload=null,clearTimeout(p);var o=r[e];if(delete r[e],l.parentNode&&l.parentNode.removeChild(l),o&&o.forEach((e=>e(i))),t)return t(i)},p=setTimeout(u.bind(null,void 0,{type:"timeout",target:l}),12e4);l.onerror=u.bind(null,l.onerror),l.onload=u.bind(null,l.onload),d&&document.head.appendChild(l)}},a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),a.j=2277,(()=>{var e;a.g.importScripts&&(e=a.g.location+"");var r=a.g.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var i=t.length-1;i>-1&&(!e||!/^http(s?):/.test(e));)e=t[i--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e})(),(()=>{a.b=document.baseURI||self.location.href;var e={2277:0};a.f.j=(r,t)=>{var i=a.o(e,r)?e[r]:void 0;if(0!==i)if(i)t.push(i[2]);else{var o=new Promise(((t,o)=>i=e[r]=[t,o]));t.push(i[2]=o);var n=a.p+a.u(r),l=new Error;a.l(n,(t=>{if(a.o(e,r)&&(0!==(i=e[r])&&(e[r]=void 0),i)){var o=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;l.message="Loading chunk "+r+" failed.\n("+o+": "+n+")",l.name="ChunkLoadError",l.type=o,l.request=n,i[1](l)}}),"chunk-"+r,r)}},a.O.j=r=>0===e[r];var r=(r,t)=>{var i,o,n=t[0],l=t[1],d=t[2],c=0;if(n.some((r=>0!==e[r]))){for(i in l)a.o(l,i)&&(a.m[i]=l[i]);if(d)var s=d(a)}for(r&&r(t);c<n.length;c++)o=n[c],a.o(e,o)&&e[o]&&e[o][0](),e[o]=0;return a.O(s)},t=self.webpackChunknextcloud=self.webpackChunknextcloud||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),a.nc=void 0;var n=a.O(void 0,[4208],(()=>a(97986)));n=a.O(n)})();
//# sourceMappingURL=files-search.js.map?v=7770bb1112cf619e4b71

@ -23,7 +23,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
This file is generated from multiple sources. Included packages:
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/browser-storage
- version: 0.4.0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -43,7 +43,7 @@ This file is generated from multiple sources. Included packages:
- version: 0.2.5
- license: MIT
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -79,7 +79,7 @@ This file is generated from multiple sources. Included packages:
- version: 7.4.47
- license: Apache-2.0
- @nextcloud/auth
- version: 2.5.1
- version: 2.5.2
- license: GPL-3.0-or-later
- @nextcloud/axios
- version: 2.5.1
@ -100,7 +100,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.3.2
- license: GPL-3.0-or-later
- @nextcloud/files
- version: 3.11.0
- version: 3.12.0
- license: AGPL-3.0-or-later
- @nextcloud/initial-state
- version: 2.2.0
@ -121,7 +121,7 @@ This file is generated from multiple sources. Included packages:
- version: 3.0.1
- license: GPL-3.0-or-later
- @nextcloud/sharing
- version: 0.2.4
- version: 0.2.5
- license: GPL-3.0-or-later
- @nextcloud/vue-select
- version: 3.25.1

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More