mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
fix(comments): dismiss mention notifications and clear unread badge when viewed in activity sidebar
Backport of #60617 for stable31. When comments are loaded via the Activity sidebar integration, call markCommentsAsRead() so the file-row unread comment bubble clears after viewing. Also add a DELETE /notifications/{id} endpoint and call it for each comment that mentions the current user so the notification bell clears without navigating via the notification link. Fixes: nextcloud/activity#2531 AI-Assisted-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
e01d4d79cc
commit
07c068b042
443 changed files with 6517 additions and 2510 deletions
|
|
@ -8,5 +8,6 @@
|
|||
return [
|
||||
'routes' => [
|
||||
['name' => 'Notifications#view', 'url' => '/notifications/view/{id}', 'verb' => 'GET'],
|
||||
['name' => 'Notifications#dismiss', 'url' => '/notifications/{id}', 'verb' => 'DELETE'],
|
||||
]
|
||||
];
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ use OCP\AppFramework\Http;
|
|||
use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
|
||||
use OCP\AppFramework\Http\Attribute\OpenAPI;
|
||||
use OCP\AppFramework\Http\Attribute\PublicPage;
|
||||
use OCP\AppFramework\Http\DataResponse;
|
||||
use OCP\AppFramework\Http\NotFoundResponse;
|
||||
use OCP\AppFramework\Http\RedirectResponse;
|
||||
use OCP\Comments\IComment;
|
||||
|
|
@ -91,6 +92,37 @@ class NotificationsController extends Controller {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Dismiss the mention notification for a comment
|
||||
*
|
||||
* @NoAdminRequired
|
||||
*
|
||||
* @param string $id ID of the comment
|
||||
*
|
||||
* @return DataResponse<Http::STATUS_OK, array{}, array{}>|DataResponse<Http::STATUS_FORBIDDEN, array{}, array{}>|DataResponse<Http::STATUS_NOT_FOUND, array{}, array{}>
|
||||
*
|
||||
* 200: Notification dismissed successfully
|
||||
* 403: Not logged in
|
||||
* 404: Comment not found
|
||||
*/
|
||||
public function dismiss(string $id): DataResponse {
|
||||
$currentUser = $this->userSession->getUser();
|
||||
if (!$currentUser instanceof IUser) {
|
||||
return new DataResponse([], Http::STATUS_FORBIDDEN);
|
||||
}
|
||||
|
||||
try {
|
||||
$comment = $this->commentsManager->get($id);
|
||||
if ($comment->getObjectType() !== 'files') {
|
||||
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
||||
}
|
||||
$this->markProcessed($comment, $currentUser);
|
||||
return new DataResponse([]);
|
||||
} catch (\Exception $e) {
|
||||
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Marks the notification about a comment as processed
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -2,10 +2,14 @@
|
|||
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
import { getCurrentUser } from '@nextcloud/auth'
|
||||
import axios from '@nextcloud/axios'
|
||||
import moment from '@nextcloud/moment'
|
||||
import { generateUrl } from '@nextcloud/router'
|
||||
import Vue, { type ComponentPublicInstance } from 'vue'
|
||||
import logger from './logger.js'
|
||||
import { getComments } from './services/GetComments.js'
|
||||
import { markCommentsAsRead } from './services/ReadComments.js'
|
||||
|
||||
import { PiniaVuePlugin, createPinia } from 'pinia'
|
||||
|
||||
|
|
@ -49,6 +53,35 @@ export function registerCommentsPlugins() {
|
|||
window.OCA.Activity.registerSidebarEntries(async ({ fileInfo, limit, offset }) => {
|
||||
const { data: comments } = await getComments({ resourceType: 'files', resourceId: fileInfo.id }, { limit, offset })
|
||||
logger.debug('Loaded comments', { fileInfo, comments })
|
||||
|
||||
// Optimistically clear the unread bubble in the file list immediately
|
||||
// (without waiting for the PROPPATCH to complete), so the UI updates
|
||||
// without requiring a page refresh.
|
||||
// fileInfo.node is the underlying @nextcloud/files Node set by the Files sidebar.
|
||||
// Optimistically clear the unread bubble immediately via the global event bus
|
||||
// (window._nc_event_bus) so the UI updates without a page refresh.
|
||||
// fileInfo.node is the underlying @nextcloud/files Node set by the Files sidebar.
|
||||
const node = fileInfo.node
|
||||
if (node) {
|
||||
node.attributes['comments-unread'] = 0
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
;(window as any)._nc_event_bus?.emit('files:node:updated', node)
|
||||
}
|
||||
markCommentsAsRead('files', fileInfo.id, new Date()).catch(() => {})
|
||||
|
||||
// Mark mention notifications as read for comments that mention the current user
|
||||
const currentUser = getCurrentUser()
|
||||
if (currentUser) {
|
||||
for (const comment of comments) {
|
||||
const mentions = Object.values(comment.props?.mentions ?? {}) as { mentionType: string, mentionId: string }[]
|
||||
const isMentioned = comment.props?.id && mentions.some((m) => m.mentionType === 'user' && m.mentionId === currentUser.uid)
|
||||
if (isMentioned) {
|
||||
axios.delete(generateUrl('/apps/comments/notifications/{id}', { id: comment.props.id }))
|
||||
.catch(() => {})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const { default: CommentView } = await import('./views/ActivityCommentEntry.vue')
|
||||
// @ts-expect-error Types are broken for Vue2
|
||||
const CommentsViewObject = Vue.extend(CommentView)
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
namespace OCA\Comments\Tests\Unit\Controller;
|
||||
|
||||
use OCA\Comments\Controller\NotificationsController;
|
||||
use OCP\AppFramework\Http\DataResponse;
|
||||
use OCP\AppFramework\Http\NotFoundResponse;
|
||||
use OCP\AppFramework\Http\RedirectResponse;
|
||||
use OCP\Comments\IComment;
|
||||
|
|
@ -223,4 +224,102 @@ class NotificationsTest extends TestCase {
|
|||
$response = $this->notificationsController->view('42');
|
||||
$this->assertInstanceOf(NotFoundResponse::class, $response);
|
||||
}
|
||||
|
||||
public function testDismissNotLoggedIn(): void {
|
||||
$this->session->expects($this->once())
|
||||
->method('getUser')
|
||||
->willReturn(null);
|
||||
|
||||
$this->commentsManager->expects($this->never())
|
||||
->method('get');
|
||||
$this->notificationManager->expects($this->never())
|
||||
->method('markProcessed');
|
||||
|
||||
$response = $this->notificationsController->dismiss('42');
|
||||
$this->assertInstanceOf(DataResponse::class, $response);
|
||||
$this->assertSame(403, $response->getStatus());
|
||||
}
|
||||
|
||||
public function testDismissSuccess(): void {
|
||||
$comment = $this->createMock(IComment::class);
|
||||
$comment->expects($this->any())
|
||||
->method('getObjectType')
|
||||
->willReturn('files');
|
||||
$comment->expects($this->any())
|
||||
->method('getId')
|
||||
->willReturn('1234');
|
||||
|
||||
$this->commentsManager->expects($this->once())
|
||||
->method('get')
|
||||
->with('42')
|
||||
->willReturn($comment);
|
||||
|
||||
$user = $this->createMock(IUser::class);
|
||||
$user->expects($this->any())
|
||||
->method('getUID')
|
||||
->willReturn('user');
|
||||
|
||||
$this->session->expects($this->once())
|
||||
->method('getUser')
|
||||
->willReturn($user);
|
||||
|
||||
$notification = $this->createMock(INotification::class);
|
||||
$notification->expects($this->any())
|
||||
->method($this->anything())
|
||||
->willReturn($notification);
|
||||
|
||||
$this->notificationManager->expects($this->once())
|
||||
->method('createNotification')
|
||||
->willReturn($notification);
|
||||
$this->notificationManager->expects($this->once())
|
||||
->method('markProcessed')
|
||||
->with($notification);
|
||||
|
||||
$response = $this->notificationsController->dismiss('42');
|
||||
$this->assertInstanceOf(DataResponse::class, $response);
|
||||
$this->assertSame(200, $response->getStatus());
|
||||
}
|
||||
|
||||
public function testDismissInvalidComment(): void {
|
||||
$this->commentsManager->expects($this->once())
|
||||
->method('get')
|
||||
->with('42')
|
||||
->will($this->throwException(new NotFoundException()));
|
||||
|
||||
$user = $this->createMock(IUser::class);
|
||||
$this->session->expects($this->once())
|
||||
->method('getUser')
|
||||
->willReturn($user);
|
||||
|
||||
$this->notificationManager->expects($this->never())
|
||||
->method('markProcessed');
|
||||
|
||||
$response = $this->notificationsController->dismiss('42');
|
||||
$this->assertInstanceOf(DataResponse::class, $response);
|
||||
$this->assertSame(404, $response->getStatus());
|
||||
}
|
||||
|
||||
public function testDismissNonFileComment(): void {
|
||||
$comment = $this->createMock(IComment::class);
|
||||
$comment->expects($this->any())
|
||||
->method('getObjectType')
|
||||
->willReturn('calendar');
|
||||
|
||||
$this->commentsManager->expects($this->once())
|
||||
->method('get')
|
||||
->with('42')
|
||||
->willReturn($comment);
|
||||
|
||||
$user = $this->createMock(IUser::class);
|
||||
$this->session->expects($this->once())
|
||||
->method('getUser')
|
||||
->willReturn($user);
|
||||
|
||||
$this->notificationManager->expects($this->never())
|
||||
->method('markProcessed');
|
||||
|
||||
$response = $this->notificationsController->dismiss('42');
|
||||
$this->assertInstanceOf(DataResponse::class, $response);
|
||||
$this->assertSame(404, $response->getStatus());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
4
dist/1252-1252.js
vendored
4
dist/1252-1252.js
vendored
File diff suppressed because one or more lines are too long
88
dist/1252-1252.js.license
vendored
88
dist/1252-1252.js.license
vendored
|
|
@ -4,15 +4,20 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: debounce developers
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Varun A P
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Rob Cresswell <robcresswell@pm.me>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch)
|
||||
SPDX-FileCopyrightText: Paul Vorbach <paul@vorb.de> (http://vorb.de)
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
|
|
@ -25,17 +30,25 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eugene Sharygin <eush77@gmail.com>
|
||||
SPDX-FileCopyrightText: Eric Norris (https://github.com/ericnorris)
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: Alkemics
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -43,26 +56,56 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -70,20 +113,17 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- version: 0.4.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -100,6 +140,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
- license: MIT
|
||||
|
|
@ -113,13 +156,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- debounce
|
||||
- version: 2.2.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -130,6 +173,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- focus-trap
|
||||
- version: 7.8.0
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- ieee754
|
||||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
|
|
@ -173,10 +219,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 6.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- vue-loader
|
||||
- version: 15.11.1
|
||||
|
|
@ -187,6 +230,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- nextcloud
|
||||
- version: 1.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
|
|
|
|||
2
dist/1252-1252.js.map
vendored
2
dist/1252-1252.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/1252-1252.js.map.license
vendored
1
dist/1252-1252.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
1252-1252.js.license
|
||||
2
dist/1580-1580.js
vendored
Normal file
2
dist/1580-1580.js
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[1580],{61580(e,t,a){a.r(t),a.d(t,{default:()=>b});var n=a(85471),l=a(21777),i=a(80474),o=a(91082),u=a(57244),r=a(17859),c=a(87651),s=a(56390),m=a(50240);function d(e){if(""===e.trim())return(0,c.t)("Names must not be empty.");if(e.startsWith("."))return(0,c.t)("Names must not start with a dot.");if(e.length>64)return(0,c.t)("Names may be at most 64 characters long.");try{return(0,s.KT)(e),""}catch(e){if(!(e instanceof s.di))throw e;switch(e.reason){case s.nF.Character:return(0,c.t)('"{char}" is not allowed inside a name.',{char:e.segment});case s.nF.ReservedName:return(0,c.t)('"{segment}" is a reserved name and not allowed.',{segment:e.segment});case s.nF.Extension:return e.segment.match(/\.[a-z]/i)?(0,c.t)('"{extension}" is not an allowed name.',{extension:e.segment}):(0,c.t)('Names must not end with "{extension}".',{extension:e.segment});default:return(0,c.t)("Invalid name.")}}}const p={key:0,class:"public-auth-prompt__text"},h=(0,n.pM)({__name:"PublicAuthPrompt",props:{nickname:{default:""},title:{default:(0,c.t)("Guest identification")},text:{default:""},notice:{default:""},submitLabel:{default:(0,c.t)("Submit name")},cancellable:{type:Boolean}},emits:["close"],setup(e,{emit:t}){const a=e,s=t,m=(0,n.useTemplateRef)("input"),h=(0,i.c0)("public").build(),b=(0,n.KR)(a.nickname);(0,n.wB)(()=>a.nickname,()=>{b.value=a.nickname}),(0,n.wB)(b,e=>{const t=d(e);t||!m.value||k(t)});const f=(0,n.EW)(()=>{const e={label:(0,c.t)("Cancel"),variant:"tertiary",callback:()=>s("close")},t={label:a.submitLabel,type:"submit",variant:"primary"};return a.cancellable?[e,t]:[t]}),v=(0,n.EW)(()=>a.notice?a.notice:b.value?(0,c.t)("You are currently identified as {nickname}.",{nickname:b.value}):(0,c.t)("You are currently not identified."));function y(){const e=b.value.trim(),t=d(e);if(t)k(t);else if(""!==e)if(e.length<2)k((0,c.t)("Please enter a name with at least 2 characters."));else{try{(0,l.L$)(e)}catch(e){return c.l.error("Failed to set nickname",{error:e}),(0,c.s)((0,c.t)("Failed to set nickname.")),void m.value.focus()}h.setItem("public-auth-prompt-shown","true"),s("close",b.value)}else k((0,c.t)("You cannot leave the name empty."))}function k(e){m.value&&(m.value.setCustomValidity(e),m.value.reportValidity(),m.value.focus())}return(t,a)=>((0,n.openBlock)(),(0,n.createBlock)((0,n.R1)(o.A),{buttons:f.value,class:"public-auth-prompt","data-cy-public-auth-prompt-dialog":"",isForm:"",noClose:"",name:e.title,onSubmit:y},{default:(0,n.withCtx)(()=>[e.text?((0,n.openBlock)(),(0,n.createElementBlock)("p",p,(0,n.toDisplayString)(e.text),1)):(0,n.createCommentVNode)("",!0),(0,n.createVNode)((0,n.R1)(u.A),{class:"public-auth-prompt__header",text:v.value,type:"info"},null,8,["text"]),(0,n.createVNode)((0,n.R1)(r.A),{ref:"input",modelValue:b.value,"onUpdate:modelValue":a[0]||(a[0]=e=>b.value=e),class:"public-auth-prompt__input","data-cy-public-auth-prompt-dialog-name":"",label:(0,n.R1)(c.t)("Name"),placeholder:(0,n.R1)(c.t)("Enter your name"),required:!e.cancellable,minlength:"2",maxlength:"64",name:"name"},null,8,["modelValue","label","placeholder","required"])]),_:1},8,["buttons","name"]))}}),b=(0,m._)(h,[["__scopeId","data-v-bd4b7f1b"]])}}]);
|
||||
//# sourceMappingURL=1580-1580.js.map?v=2db52d4eaf11e9a819d6
|
||||
182
dist/1580-1580.js.license
vendored
Normal file
182
dist/1580-1580.js.license
vendored
Normal file
|
|
@ -0,0 +1,182 @@
|
|||
SPDX-License-Identifier: MIT
|
||||
SPDX-License-Identifier: ISC
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: readable-stream developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Varun A P
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)
|
||||
SPDX-FileCopyrightText: Jonas Schade <derzade@gmail.com>
|
||||
SPDX-FileCopyrightText: James Halliday
|
||||
SPDX-FileCopyrightText: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
|
||||
SPDX-FileCopyrightText: Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)
|
||||
SPDX-FileCopyrightText: GitHub Inc.
|
||||
SPDX-FileCopyrightText: Feross Aboukhadijeh
|
||||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Borewit
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @file-type/xml
|
||||
- version: 0.4.3
|
||||
- license: MIT
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @nextcloud/auth
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 4.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
- license: MIT
|
||||
- events
|
||||
- version: 3.3.0
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- ieee754
|
||||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
- inherits
|
||||
- version: 2.0.4
|
||||
- license: ISC
|
||||
- is-svg
|
||||
- version: 6.1.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- process
|
||||
- version: 0.11.10
|
||||
- license: MIT
|
||||
- safe-buffer
|
||||
- version: 5.2.1
|
||||
- license: MIT
|
||||
- sax
|
||||
- version: 1.4.1
|
||||
- license: ISC
|
||||
- readable-stream
|
||||
- version: 3.6.2
|
||||
- license: MIT
|
||||
- stream-browserify
|
||||
- version: 3.0.0
|
||||
- license: MIT
|
||||
- string_decoder
|
||||
- version: 1.3.0
|
||||
- license: MIT
|
||||
- style-loader
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- tabbable
|
||||
- version: 6.4.0
|
||||
- license: MIT
|
||||
- toastify-js
|
||||
- version: 1.12.0
|
||||
- license: MIT
|
||||
- typescript-event-target
|
||||
- version: 1.1.2
|
||||
- license: MIT
|
||||
- util-deprecate
|
||||
- version: 1.0.2
|
||||
- license: MIT
|
||||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
1
dist/1580-1580.js.map
vendored
Normal file
1
dist/1580-1580.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4
dist/1642-1642.js
vendored
4
dist/1642-1642.js
vendored
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[1642],{94929(t,e,n){n.d(e,{A:()=>i});var a=n(71354),o=n.n(a),l=n(76314),s=n.n(l)()(o());s.push([t.id,".legacy-prompt__text[data-v-8cfbac52]{margin-block:0 .75em}.legacy-prompt__input[data-v-8cfbac52]{margin-block:0 1em}[data-v-8cfbac52] .legacy-prompt__dialog .dialog__actions{min-width:calc(100% - 12px);justify-content:space-between}","",{version:3,sources:["webpack://./core/src/components/LegacyDialogPrompt.vue"],names:[],mappings:"AAEC,sCACC,oBAAA,CAGD,uCACC,kBAAA,CAIF,0DACC,2BAAA,CACA,6BAAA",sourcesContent:["\n.legacy-prompt {\n\t&__text {\n\t\tmargin-block: 0 .75em;\n\t}\n\n\t&__input {\n\t\tmargin-block: 0 1em;\n\t}\n}\n\n:deep(.legacy-prompt__dialog .dialog__actions) {\n\tmin-width: calc(100% - 12px);\n\tjustify-content: space-between;\n}\n"],sourceRoot:""}]);const i=s},71642(t,e,n){n.r(e),n.d(e,{default:()=>v});var a=n(53334),o=n(85471),l=n(94219),s=n(82182),i=n(16044);const c=(0,o.pM)({name:"LegacyDialogPrompt",components:{NcDialog:l.A,NcTextField:s.A,NcPasswordField:i.A},props:{name:{type:String,required:!0},text:{type:String,required:!0},isPassword:{type:Boolean,required:!0},inputName:{type:String,default:"prompt-input"}},emits:["close"],data:()=>({inputValue:""}),computed:{buttons(){return[{label:(0,a.Tl)("core","No"),callback:()=>this.$emit("close",!1,this.inputValue)},{label:(0,a.Tl)("core","Yes"),type:"primary",callback:()=>this.$emit("close",!0,this.inputValue)}]}},mounted(){this.$nextTick((()=>this.$refs.input?.focus?.()))}});var p=n(85072),u=n.n(p),r=n(97825),m=n.n(r),d=n(77659),g=n.n(d),A=n(55056),_=n.n(A),b=n(10540),y=n.n(b),C=n(41113),f=n.n(C),h=n(94929),x={};x.styleTagTransform=f(),x.setAttributes=_(),x.insert=g().bind(null,"head"),x.domAPI=m(),x.insertStyleElement=y(),u()(h.A,x),h.A&&h.A.locals&&h.A.locals;const v=(0,n(14486).A)(c,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcDialog",{attrs:{"dialog-classes":"legacy-prompt__dialog",buttons:t.buttons,name:t.name},on:{"update:open":function(e){return t.$emit("close",!1,t.inputValue)}}},[e("p",{staticClass:"legacy-prompt__text",domProps:{textContent:t._s(t.text)}}),t._v(" "),t.isPassword?e("NcPasswordField",{ref:"input",staticClass:"legacy-prompt__input",attrs:{autocomplete:"new-password",label:t.name,name:t.inputName,value:t.inputValue},on:{"update:value":function(e){t.inputValue=e}}}):e("NcTextField",{ref:"input",staticClass:"legacy-prompt__input",attrs:{label:t.name,name:t.inputName,value:t.inputValue},on:{"update:value":function(e){t.inputValue=e}}})],1)}),[],!1,null,"8cfbac52",null).exports}}]);
|
||||
//# sourceMappingURL=1642-1642.js.map?v=2191c3d225683a357d10
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[1642],{94929(t,e,n){n.d(e,{A:()=>i});var a=n(71354),o=n.n(a),l=n(76314),s=n.n(l)()(o());s.push([t.id,".legacy-prompt__text[data-v-8cfbac52]{margin-block:0 .75em}.legacy-prompt__input[data-v-8cfbac52]{margin-block:0 1em}[data-v-8cfbac52] .legacy-prompt__dialog .dialog__actions{min-width:calc(100% - 12px);justify-content:space-between}","",{version:3,sources:["webpack://./core/src/components/LegacyDialogPrompt.vue"],names:[],mappings:"AAEC,sCACC,oBAAA,CAGD,uCACC,kBAAA,CAIF,0DACC,2BAAA,CACA,6BAAA",sourcesContent:["\n.legacy-prompt {\n\t&__text {\n\t\tmargin-block: 0 .75em;\n\t}\n\n\t&__input {\n\t\tmargin-block: 0 1em;\n\t}\n}\n\n:deep(.legacy-prompt__dialog .dialog__actions) {\n\tmin-width: calc(100% - 12px);\n\tjustify-content: space-between;\n}\n"],sourceRoot:""}]);const i=s},71642(t,e,n){n.r(e),n.d(e,{default:()=>v});var a=n(53334),o=n(85471),l=n(94219),s=n(82182),i=n(16044);const c=(0,o.pM)({name:"LegacyDialogPrompt",components:{NcDialog:l.A,NcTextField:s.A,NcPasswordField:i.A},props:{name:{type:String,required:!0},text:{type:String,required:!0},isPassword:{type:Boolean,required:!0},inputName:{type:String,default:"prompt-input"}},emits:["close"],data:()=>({inputValue:""}),computed:{buttons(){return[{label:(0,a.Tl)("core","No"),callback:()=>this.$emit("close",!1,this.inputValue)},{label:(0,a.Tl)("core","Yes"),type:"primary",callback:()=>this.$emit("close",!0,this.inputValue)}]}},mounted(){this.$nextTick(()=>this.$refs.input?.focus?.())}});var p=n(85072),u=n.n(p),r=n(97825),m=n.n(r),d=n(77659),g=n.n(d),A=n(55056),_=n.n(A),b=n(10540),y=n.n(b),C=n(41113),f=n.n(C),h=n(94929),x={};x.styleTagTransform=f(),x.setAttributes=_(),x.insert=g().bind(null,"head"),x.domAPI=m(),x.insertStyleElement=y(),u()(h.A,x),h.A&&h.A.locals&&h.A.locals;const v=(0,n(14486).A)(c,function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcDialog",{attrs:{"dialog-classes":"legacy-prompt__dialog",buttons:t.buttons,name:t.name},on:{"update:open":function(e){return t.$emit("close",!1,t.inputValue)}}},[e("p",{staticClass:"legacy-prompt__text",domProps:{textContent:t._s(t.text)}}),t._v(" "),t.isPassword?e("NcPasswordField",{ref:"input",staticClass:"legacy-prompt__input",attrs:{autocomplete:"new-password",label:t.name,name:t.inputName,value:t.inputValue},on:{"update:value":function(e){t.inputValue=e}}}):e("NcTextField",{ref:"input",staticClass:"legacy-prompt__input",attrs:{label:t.name,name:t.inputName,value:t.inputValue},on:{"update:value":function(e){t.inputValue=e}}})],1)},[],!1,null,"8cfbac52",null).exports}}]);
|
||||
//# sourceMappingURL=1642-1642.js.map?v=64e2cbf8879e6feb09b5
|
||||
16
dist/1642-1642.js.license
vendored
16
dist/1642-1642.js.license
vendored
|
|
@ -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.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -32,14 +32,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
|
|
@ -49,8 +46,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -65,13 +65,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- debounce
|
||||
- version: 2.2.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
|
|||
2
dist/1642-1642.js.map
vendored
2
dist/1642-1642.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/1642-1642.js.map.license
vendored
1
dist/1642-1642.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
1642-1642.js.license
|
||||
37
dist/1764-1764.js.license
vendored
37
dist/1764-1764.js.license
vendored
|
|
@ -15,6 +15,7 @@ SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
|||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Rubén Norte <ruben.norte@softonic.com>
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Matt Zabriskie
|
||||
SPDX-FileCopyrightText: Joyent
|
||||
|
|
@ -25,7 +26,6 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Alkemics
|
||||
|
|
@ -34,7 +34,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
|||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -42,44 +42,44 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- license: GPL-3.0-or-later
|
||||
- eventemitter3
|
||||
- version: 5.0.4
|
||||
- version: 5.0.1
|
||||
- license: MIT
|
||||
- p-queue
|
||||
- version: 9.1.0
|
||||
|
|
@ -88,7 +88,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.11.1
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -112,10 +112,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.3.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -171,3 +171,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
|
|
|
|||
2
dist/1764-1764.js.map
vendored
2
dist/1764-1764.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/1764-1764.js.map.license
vendored
1
dist/1764-1764.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
1764-1764.js.license
|
||||
4
dist/2452-2452.js
vendored
4
dist/2452-2452.js
vendored
File diff suppressed because one or more lines are too long
13
dist/2452-2452.js.license
vendored
13
dist/2452-2452.js.license
vendored
|
|
@ -17,13 +17,12 @@ SPDX-FileCopyrightText: Evan You
|
|||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christopher Jeffrey
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -32,7 +31,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
|
|
@ -47,7 +46,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -62,10 +61,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -80,7 +79,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
- marked
|
||||
- version: 15.0.12
|
||||
- version: 16.4.2
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 6.0.3
|
||||
|
|
|
|||
2
dist/2452-2452.js.map
vendored
2
dist/2452-2452.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/2452-2452.js.map.license
vendored
1
dist/2452-2452.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
2452-2452.js.license
|
||||
4
dist/2457-2457.js
vendored
4
dist/2457-2457.js
vendored
File diff suppressed because one or more lines are too long
37
dist/2457-2457.js.license
vendored
37
dist/2457-2457.js.license
vendored
|
|
@ -15,6 +15,7 @@ SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
|||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Rubén Norte <ruben.norte@softonic.com>
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Matt Zabriskie
|
||||
SPDX-FileCopyrightText: Joyent
|
||||
|
|
@ -25,7 +26,6 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Alkemics
|
||||
|
|
@ -34,7 +34,7 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
|||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -42,44 +42,44 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- license: GPL-3.0-or-later
|
||||
- eventemitter3
|
||||
- version: 5.0.4
|
||||
- version: 5.0.1
|
||||
- license: MIT
|
||||
- p-queue
|
||||
- version: 9.1.0
|
||||
|
|
@ -88,7 +88,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.11.1
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -112,10 +112,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.3.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -171,3 +171,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
|
|
|
|||
2
dist/2457-2457.js.map
vendored
2
dist/2457-2457.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/2457-2457.js.map.license
vendored
1
dist/2457-2457.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
2457-2457.js.license
|
||||
2
dist/256-256.js
vendored
2
dist/256-256.js
vendored
File diff suppressed because one or more lines are too long
1
dist/256-256.js.map
vendored
1
dist/256-256.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/256-256.js.map.license
vendored
1
dist/256-256.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
256-256.js.license
|
||||
4
dist/3179-3179.js
vendored
4
dist/3179-3179.js
vendored
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[3179],{96921(e,t,n){n.d(t,{A:()=>a});var o=n(71354),i=n.n(o),r=n(76314),s=n.n(r)()(i());s.push([e.id,"\n.note-to-recipient[data-v-940664e0] {\n\tmargin-inline: var(--row-height)\n}\n.note-to-recipient__text[data-v-940664e0] {\n\t/* respect new lines */\n\twhite-space: pre-line;\n}\n.note-to-recipient__heading[data-v-940664e0] {\n\tfont-weight: bold;\n}\n@media screen and (max-width: 512px) {\n.note-to-recipient[data-v-940664e0] {\n\t\tmargin-inline: var(--default-grid-baseline);\n}\n}\n","",{version:3,sources:["webpack://./apps/files_sharing/src/views/FilesHeaderNoteToRecipient.vue"],names:[],mappings:";AAsDA;CACA;AACA;AAEA;CACA,sBAAA;CACA,qBAAA;AACA;AAEA;CACA,iBAAA;AACA;AAEA;AACA;EACA,2CAAA;AACA;AACA",sourcesContent:["\x3c!--\n - SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n--\x3e\n<template>\n\t<NcNoteCard v-if=\"note.length > 0\"\n\t\tclass=\"note-to-recipient\"\n\t\ttype=\"info\">\n\t\t<p v-if=\"displayName\" class=\"note-to-recipient__heading\">\n\t\t\t{{ t('files_sharing', 'Note from') }}\n\t\t\t<NcUserBubble :user=\"user.id\" :display-name=\"user.displayName\" />\n\t\t</p>\n\t\t<p v-else class=\"note-to-recipient__heading\">\n\t\t\t{{ t('files_sharing', 'Note:') }}\n\t\t</p>\n\t\t<p class=\"note-to-recipient__text\" v-text=\"note\" />\n\t</NcNoteCard>\n</template>\n\n<script setup lang=\"ts\">\nimport type { Folder } from '@nextcloud/files'\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { t } from '@nextcloud/l10n'\nimport { computed, ref } from 'vue'\n\nimport NcNoteCard from '@nextcloud/vue/dist/Components/NcNoteCard.js'\nimport NcUserBubble from '@nextcloud/vue/dist/Components/NcUserBubble.js'\n\nconst folder = ref<Folder>()\nconst note = computed<string>(() => folder.value?.attributes.note ?? '')\nconst displayName = computed<string>(() => folder.value?.attributes['owner-display-name'] ?? '')\nconst user = computed(() => {\n\tconst id = folder.value?.owner\n\tif (id !== getCurrentUser()?.uid) {\n\t\treturn {\n\t\t\tid,\n\t\t\tdisplayName: displayName.value,\n\t\t}\n\t}\n\treturn null\n})\n\n/**\n * Update the current folder\n * @param newFolder the new folder to show note for\n */\nfunction updateFolder(newFolder: Folder) {\n\tfolder.value = newFolder\n}\n\ndefineExpose({ updateFolder })\n<\/script>\n\n<style scoped>\n.note-to-recipient {\n\tmargin-inline: var(--row-height)\n}\n\n.note-to-recipient__text {\n\t/* respect new lines */\n\twhite-space: pre-line;\n}\n\n.note-to-recipient__heading {\n\tfont-weight: bold;\n}\n\n@media screen and (max-width: 512px) {\n\t.note-to-recipient {\n\t\tmargin-inline: var(--default-grid-baseline);\n\t}\n}\n</style>\n"],sourceRoot:""}]);const a=s},73179(e,t,n){n.d(t,{default:()=>x});var o=n(85471),i=n(21777),r=n(53334),s=n(371),a=n(77764);const l=(0,o.pM)({__name:"FilesHeaderNoteToRecipient",setup(e,{expose:t}){const n=(0,o.KR)(),l=(0,o.EW)((()=>n.value?.attributes.note??"")),d=(0,o.EW)((()=>n.value?.attributes["owner-display-name"]??"")),p=(0,o.EW)((()=>{const e=n.value?.owner;return e!==(0,i.HW)()?.uid?{id:e,displayName:d.value}:null}));function c(e){n.value=e}return t({updateFolder:c}),{__sfc:!0,folder:n,note:l,displayName:d,user:p,updateFolder:c,t:r.t,NcNoteCard:s.A,NcUserBubble:a.A}}});var d=n(85072),p=n.n(d),c=n(97825),u=n.n(c),A=n(77659),m=n.n(A),f=n(55056),_=n.n(f),h=n(10540),v=n.n(h),C=n(41113),N=n.n(C),g=n(96921),b={};b.styleTagTransform=N(),b.setAttributes=_(),b.insert=m().bind(null,"head"),b.domAPI=u(),b.insertStyleElement=v(),p()(g.A,b),g.A&&g.A.locals&&g.A.locals;const x=(0,n(14486).A)(l,(function(){var e=this,t=e._self._c,n=e._self._setupProxy;return n.note.length>0?t(n.NcNoteCard,{staticClass:"note-to-recipient",attrs:{type:"info"}},[n.displayName?t("p",{staticClass:"note-to-recipient__heading"},[e._v("\n\t\t"+e._s(n.t("files_sharing","Note from"))+"\n\t\t"),t(n.NcUserBubble,{attrs:{user:n.user.id,"display-name":n.user.displayName}})],1):t("p",{staticClass:"note-to-recipient__heading"},[e._v("\n\t\t"+e._s(n.t("files_sharing","Note:"))+"\n\t")]),e._v(" "),t("p",{staticClass:"note-to-recipient__text",domProps:{textContent:e._s(n.note)}})]):e._e()}),[],!1,null,"940664e0",null).exports}}]);
|
||||
//# sourceMappingURL=3179-3179.js.map?v=ac7e43ec334680ff1e48
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[3179],{96921(e,t,n){n.d(t,{A:()=>a});var o=n(71354),i=n.n(o),r=n(76314),s=n.n(r)()(i());s.push([e.id,"\n.note-to-recipient[data-v-940664e0] {\n\tmargin-inline: var(--row-height)\n}\n.note-to-recipient__text[data-v-940664e0] {\n\t/* respect new lines */\n\twhite-space: pre-line;\n}\n.note-to-recipient__heading[data-v-940664e0] {\n\tfont-weight: bold;\n}\n@media screen and (max-width: 512px) {\n.note-to-recipient[data-v-940664e0] {\n\t\tmargin-inline: var(--default-grid-baseline);\n}\n}\n","",{version:3,sources:["webpack://./apps/files_sharing/src/views/FilesHeaderNoteToRecipient.vue"],names:[],mappings:";AAsDA;CACA;AACA;AAEA;CACA,sBAAA;CACA,qBAAA;AACA;AAEA;CACA,iBAAA;AACA;AAEA;AACA;EACA,2CAAA;AACA;AACA",sourcesContent:["\x3c!--\n - SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n--\x3e\n<template>\n\t<NcNoteCard v-if=\"note.length > 0\"\n\t\tclass=\"note-to-recipient\"\n\t\ttype=\"info\">\n\t\t<p v-if=\"displayName\" class=\"note-to-recipient__heading\">\n\t\t\t{{ t('files_sharing', 'Note from') }}\n\t\t\t<NcUserBubble :user=\"user.id\" :display-name=\"user.displayName\" />\n\t\t</p>\n\t\t<p v-else class=\"note-to-recipient__heading\">\n\t\t\t{{ t('files_sharing', 'Note:') }}\n\t\t</p>\n\t\t<p class=\"note-to-recipient__text\" v-text=\"note\" />\n\t</NcNoteCard>\n</template>\n\n<script setup lang=\"ts\">\nimport type { Folder } from '@nextcloud/files'\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { t } from '@nextcloud/l10n'\nimport { computed, ref } from 'vue'\n\nimport NcNoteCard from '@nextcloud/vue/dist/Components/NcNoteCard.js'\nimport NcUserBubble from '@nextcloud/vue/dist/Components/NcUserBubble.js'\n\nconst folder = ref<Folder>()\nconst note = computed<string>(() => folder.value?.attributes.note ?? '')\nconst displayName = computed<string>(() => folder.value?.attributes['owner-display-name'] ?? '')\nconst user = computed(() => {\n\tconst id = folder.value?.owner\n\tif (id !== getCurrentUser()?.uid) {\n\t\treturn {\n\t\t\tid,\n\t\t\tdisplayName: displayName.value,\n\t\t}\n\t}\n\treturn null\n})\n\n/**\n * Update the current folder\n * @param newFolder the new folder to show note for\n */\nfunction updateFolder(newFolder: Folder) {\n\tfolder.value = newFolder\n}\n\ndefineExpose({ updateFolder })\n<\/script>\n\n<style scoped>\n.note-to-recipient {\n\tmargin-inline: var(--row-height)\n}\n\n.note-to-recipient__text {\n\t/* respect new lines */\n\twhite-space: pre-line;\n}\n\n.note-to-recipient__heading {\n\tfont-weight: bold;\n}\n\n@media screen and (max-width: 512px) {\n\t.note-to-recipient {\n\t\tmargin-inline: var(--default-grid-baseline);\n\t}\n}\n</style>\n"],sourceRoot:""}]);const a=s},73179(e,t,n){n.d(t,{default:()=>x});var o=n(85471),i=n(21777),r=n(53334),s=n(371),a=n(77764);const l=(0,o.pM)({__name:"FilesHeaderNoteToRecipient",setup(e,{expose:t}){const n=(0,o.KR)(),l=(0,o.EW)(()=>n.value?.attributes.note??""),d=(0,o.EW)(()=>n.value?.attributes["owner-display-name"]??""),p=(0,o.EW)(()=>{const e=n.value?.owner;return e!==(0,i.HW)()?.uid?{id:e,displayName:d.value}:null});function c(e){n.value=e}return t({updateFolder:c}),{__sfc:!0,folder:n,note:l,displayName:d,user:p,updateFolder:c,t:r.t,NcNoteCard:s.A,NcUserBubble:a.A}}});var d=n(85072),p=n.n(d),c=n(97825),u=n.n(c),A=n(77659),m=n.n(A),f=n(55056),_=n.n(f),h=n(10540),v=n.n(h),C=n(41113),N=n.n(C),g=n(96921),b={};b.styleTagTransform=N(),b.setAttributes=_(),b.insert=m().bind(null,"head"),b.domAPI=u(),b.insertStyleElement=v(),p()(g.A,b),g.A&&g.A.locals&&g.A.locals;const x=(0,n(14486).A)(l,function(){var e=this,t=e._self._c,n=e._self._setupProxy;return n.note.length>0?t(n.NcNoteCard,{staticClass:"note-to-recipient",attrs:{type:"info"}},[n.displayName?t("p",{staticClass:"note-to-recipient__heading"},[e._v("\n\t\t"+e._s(n.t("files_sharing","Note from"))+"\n\t\t"),t(n.NcUserBubble,{attrs:{user:n.user.id,"display-name":n.user.displayName}})],1):t("p",{staticClass:"note-to-recipient__heading"},[e._v("\n\t\t"+e._s(n.t("files_sharing","Note:"))+"\n\t")]),e._v(" "),t("p",{staticClass:"note-to-recipient__text",domProps:{textContent:e._s(n.note)}})]):e._e()},[],!1,null,"940664e0",null).exports}}]);
|
||||
//# sourceMappingURL=3179-3179.js.map?v=01918f9955c978be4729
|
||||
22
dist/3179-3179.js.license
vendored
22
dist/3179-3179.js.license
vendored
|
|
@ -22,13 +22,12 @@ SPDX-FileCopyrightText: Eugene Sharygin <eush77@gmail.com>
|
|||
SPDX-FileCopyrightText: Eric Norris (https://github.com/ericnorris)
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -36,18 +35,18 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
|
|
@ -58,7 +57,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -82,10 +81,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -127,10 +126,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 6.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- vue-loader
|
||||
- version: 15.11.1
|
||||
|
|
|
|||
2
dist/3179-3179.js.map
vendored
2
dist/3179-3179.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/3179-3179.js.map.license
vendored
1
dist/3179-3179.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
3179-3179.js.license
|
||||
4
dist/3303-3303.js
vendored
4
dist/3303-3303.js
vendored
File diff suppressed because one or more lines are too long
9
dist/3303-3303.js.license
vendored
9
dist/3303-3303.js.license
vendored
|
|
@ -8,7 +8,6 @@ SPDX-FileCopyrightText: Tobias Koppers @sokra
|
|||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Austin Andrews
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
|
||||
|
|
@ -18,7 +17,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 7.4.47
|
||||
- license: Apache-2.0
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -27,7 +26,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -36,10 +35,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 11.3.0
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
|
|||
2
dist/3303-3303.js.map
vendored
2
dist/3303-3303.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/3303-3303.js.map.license
vendored
1
dist/3303-3303.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
3303-3303.js.license
|
||||
2
dist/3718-3718.js
vendored
Normal file
2
dist/3718-3718.js
vendored
Normal file
File diff suppressed because one or more lines are too long
166
dist/3718-3718.js.license
vendored
Normal file
166
dist/3718-3718.js.license
vendored
Normal file
|
|
@ -0,0 +1,166 @@
|
|||
SPDX-License-Identifier: MIT
|
||||
SPDX-License-Identifier: ISC
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: readable-stream developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)
|
||||
SPDX-FileCopyrightText: Jonas Schade <derzade@gmail.com>
|
||||
SPDX-FileCopyrightText: James Halliday
|
||||
SPDX-FileCopyrightText: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
|
||||
SPDX-FileCopyrightText: Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)
|
||||
SPDX-FileCopyrightText: GitHub Inc.
|
||||
SPDX-FileCopyrightText: Feross Aboukhadijeh
|
||||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: Borewit
|
||||
SPDX-FileCopyrightText: Austin Andrews
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @file-type/xml
|
||||
- version: 0.4.3
|
||||
- license: MIT
|
||||
- @mdi/js
|
||||
- version: 7.4.47
|
||||
- license: Apache-2.0
|
||||
- @nextcloud/auth
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 4.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- eventemitter3
|
||||
- version: 5.0.4
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
- license: MIT
|
||||
- events
|
||||
- version: 3.3.0
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- ieee754
|
||||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
- inherits
|
||||
- version: 2.0.4
|
||||
- license: ISC
|
||||
- is-svg
|
||||
- version: 6.1.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- process
|
||||
- version: 0.11.10
|
||||
- license: MIT
|
||||
- safe-buffer
|
||||
- version: 5.2.1
|
||||
- license: MIT
|
||||
- sax
|
||||
- version: 1.4.1
|
||||
- license: ISC
|
||||
- readable-stream
|
||||
- version: 3.6.2
|
||||
- license: MIT
|
||||
- stream-browserify
|
||||
- version: 3.0.0
|
||||
- license: MIT
|
||||
- string_decoder
|
||||
- version: 1.3.0
|
||||
- license: MIT
|
||||
- style-loader
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- typescript-event-target
|
||||
- version: 1.1.2
|
||||
- license: MIT
|
||||
- util-deprecate
|
||||
- version: 1.0.2
|
||||
- license: MIT
|
||||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
1
dist/3718-3718.js.map
vendored
Normal file
1
dist/3718-3718.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
2
dist/3731-3731.js
vendored
2
dist/3731-3731.js
vendored
|
|
@ -1,2 +0,0 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[3731],{83731(e,l,c){c.d(l,{FilePickerVue:()=>i});const i=(0,c(85471).$V)((()=>Promise.all([c.e(4208),c.e(256)]).then(c.bind(c,256))))}}]);
|
||||
//# sourceMappingURL=3731-3731.js.map?v=03a157235c000f83910a
|
||||
1
dist/3731-3731.js.map
vendored
1
dist/3731-3731.js.map
vendored
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"3731-3731.js?v=03a157235c000f83910a","mappings":"6IACA,MAAMA,GAAgB,E,SAAA,KAAqB,IAAM,uD","sources":["webpack:///nextcloud/node_modules/@nextcloud/dialogs/dist/chunks/index-BMbtc3xh.mjs"],"sourcesContent":["import { defineAsyncComponent } from \"vue\";\nconst FilePickerVue = defineAsyncComponent(() => import(\"./FilePicker-JKNLPCbR.mjs\"));\nexport {\n FilePickerVue\n};\n//# sourceMappingURL=index-BMbtc3xh.mjs.map\n"],"names":["FilePickerVue"],"sourceRoot":""}
|
||||
1
dist/3731-3731.js.map.license
vendored
1
dist/3731-3731.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
3731-3731.js.license
|
||||
4
dist/3902-3902.js
vendored
4
dist/3902-3902.js
vendored
File diff suppressed because one or more lines are too long
120
dist/3902-3902.js.license
vendored
120
dist/3902-3902.js.license
vendored
|
|
@ -8,12 +8,15 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: xiemengxiong
|
||||
SPDX-FileCopyrightText: xiaokai <kexiaokai@gmail.com>
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: rhysd <lin90162@yahoo.co.jp>
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: p-queue developers
|
||||
SPDX-FileCopyrightText: omahlama
|
||||
SPDX-FileCopyrightText: inline-style-parser developers
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: debounce developers
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
|
|
@ -26,6 +29,7 @@ SPDX-FileCopyrightText: Stefan Thomas <justmoon@members.fsf.org> (http://www.jus
|
|||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Richie Bendall
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch)
|
||||
SPDX-FileCopyrightText: Paul Vorbach <paul@vorb.de> (http://vorb.de)
|
||||
SPDX-FileCopyrightText: OpenJS Foundation and other contributors
|
||||
|
|
@ -45,6 +49,7 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eugene Sharygin <eush77@gmail.com>
|
||||
SPDX-FileCopyrightText: Eric Norris (https://github.com/ericnorris)
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
|
|
@ -52,6 +57,7 @@ SPDX-FileCopyrightText: Borys Serebrov
|
|||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Antoni Andre <antoniandre.web@gmail.com>
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: Andrea Giammarchi
|
||||
SPDX-FileCopyrightText: Alkemics
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
|
@ -59,10 +65,13 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
|||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.4
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/dom
|
||||
- version: 1.7.6
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.10
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @linusborg/vue-simple-portal
|
||||
- version: 0.1.5
|
||||
|
|
@ -80,7 +89,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.2.1
|
||||
- license: BSD-2-Clause
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -88,26 +97,56 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -116,31 +155,25 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- version: 2.4.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- version: 0.4.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue-select
|
||||
- version: 3.26.0
|
||||
- license: MIT
|
||||
- eventemitter3
|
||||
- version: 5.0.1
|
||||
- license: MIT
|
||||
- p-queue
|
||||
- version: 8.1.1
|
||||
- license: MIT
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @ungap/structured-clone
|
||||
- version: 1.2.0
|
||||
- version: 1.3.0
|
||||
- license: ISC
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -160,6 +193,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- blurhash
|
||||
- version: 2.0.5
|
||||
- license: MIT
|
||||
|
|
@ -170,7 +206,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.3.1
|
||||
- license: MIT
|
||||
- char-regex
|
||||
- version: 2.0.1
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- charenc
|
||||
- version: 0.0.2
|
||||
|
|
@ -182,7 +218,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- date-format-parse
|
||||
- version: 0.2.7
|
||||
|
|
@ -191,13 +227,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.2.0
|
||||
- license: MIT
|
||||
- decode-named-character-reference
|
||||
- version: 1.1.0
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- devlop
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- emoji-mart-vue-fast
|
||||
- version: 15.0.5
|
||||
|
|
@ -223,6 +259,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- hast-util-whitespace
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- ieee754
|
||||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
|
|
@ -251,7 +290,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 5.0.0
|
||||
- license: MIT
|
||||
- mdast-util-find-and-replace
|
||||
- version: 3.0.1
|
||||
- version: 3.0.2
|
||||
- license: MIT
|
||||
- mdast-util-from-markdown
|
||||
- version: 2.0.2
|
||||
|
|
@ -260,7 +299,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.0
|
||||
- license: MIT
|
||||
- mdast-util-to-hast
|
||||
- version: 13.2.0
|
||||
- version: 13.2.1
|
||||
- license: MIT
|
||||
- mdast-util-to-string
|
||||
- version: 4.0.0
|
||||
|
|
@ -284,7 +323,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-character
|
||||
- version: 2.1.0
|
||||
- version: 2.1.1
|
||||
- license: MIT
|
||||
- micromark-util-chunked
|
||||
- version: 2.0.1
|
||||
|
|
@ -302,7 +341,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-encode
|
||||
- version: 2.0.0
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-html-tag-name
|
||||
- version: 2.0.1
|
||||
|
|
@ -314,7 +353,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-sanitize-uri
|
||||
- version: 2.0.0
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-subtokenize
|
||||
- version: 2.1.0
|
||||
|
|
@ -325,6 +364,12 @@ This file is generated from multiple sources. Included packages:
|
|||
- buffer
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- eventemitter3
|
||||
- version: 5.0.1
|
||||
- license: MIT
|
||||
- p-queue
|
||||
- version: 8.1.1
|
||||
- license: MIT
|
||||
- inherits
|
||||
- version: 2.0.3
|
||||
- license: ISC
|
||||
|
|
@ -353,7 +398,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 11.0.0
|
||||
- license: MIT
|
||||
- remark-rehype
|
||||
- version: 11.1.0
|
||||
- version: 11.1.2
|
||||
- license: MIT
|
||||
- remark-unlink-protocols
|
||||
- version: 1.0.0
|
||||
|
|
@ -410,19 +455,19 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- license: MIT
|
||||
- vfile-message
|
||||
- version: 4.0.2
|
||||
- version: 4.0.3
|
||||
- license: MIT
|
||||
- vfile
|
||||
- version: 6.0.2
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- vue-color
|
||||
- version: 2.8.1
|
||||
- version: 2.8.2
|
||||
- license: MIT
|
||||
- vue-frag
|
||||
- version: 1.4.3
|
||||
|
|
@ -439,6 +484,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- web-namespaces
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- nextcloud
|
||||
- version: 1.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
|
|
|
|||
2
dist/3902-3902.js.map
vendored
2
dist/3902-3902.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/3902-3902.js.map.license
vendored
1
dist/3902-3902.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
3902-3902.js.license
|
||||
4
dist/3920-3920.js
vendored
4
dist/3920-3920.js
vendored
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[3920],{94163(t,e,n){n.d(e,{A:()=>a});var o=n(71354),m=n.n(o),s=n(76314),r=n.n(s)()(m());r.push([t.id,"\n.comments-activity[data-v-5e783bec] {\n\tpadding: 0;\n}\n","",{version:3,sources:["webpack://./apps/comments/src/views/ActivityCommentEntry.vue"],names:[],mappings:";AAmEA;CACA,UAAA;AACA",sourcesContent:['\x3c!--\n - SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n--\x3e\n\n<template>\n\t<Comment ref="comment"\n\t\ttag="li"\n\t\tv-bind="comment.props"\n\t\t:auto-complete="autoComplete"\n\t\t:resource-type="resourceType"\n\t\t:message="commentMessage"\n\t\t:resource-id="resourceId"\n\t\t:user-data="genMentionsData(comment.props.mentions)"\n\t\tclass="comments-activity"\n\t\t@delete="reloadCallback()" />\n</template>\n\n<script lang="ts">\nimport type { PropType } from \'vue\'\nimport { translate as t } from \'@nextcloud/l10n\'\n\nimport Comment from \'../components/Comment.vue\'\nimport CommentView from \'../mixins/CommentView\'\n\nexport default {\n\tname: \'ActivityCommentEntry\',\n\n\tcomponents: {\n\t\tComment,\n\t},\n\n\tmixins: [CommentView],\n\tprops: {\n\t\tcomment: {\n\t\t\ttype: Object,\n\t\t\trequired: true,\n\t\t},\n\t\treloadCallback: {\n\t\t\ttype: Function as PropType<() => void>,\n\t\t\trequired: true,\n\t\t},\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\tcommentMessage: \'\',\n\t\t}\n\t},\n\n\twatch: {\n\t\tcomment() {\n\t\t\tthis.commentMessage = this.comment.props.message\n\t\t},\n\t},\n\n\tmounted() {\n\t\tthis.commentMessage = this.comment.props.message\n\t},\n\n\tmethods: {\n\t\tt,\n\t},\n}\n<\/script>\n\n<style scoped>\n.comments-activity {\n\tpadding: 0;\n}\n</style>\n'],sourceRoot:""}]);const a=r},93920(t,e,n){n.d(e,{default:()=>f});var o=n(53334),m=n(65463),s=n(70452);const r={name:"ActivityCommentEntry",components:{Comment:m.A},mixins:[s.A],props:{comment:{type:Object,required:!0},reloadCallback:{type:Function,required:!0}},data:()=>({commentMessage:""}),watch:{comment(){this.commentMessage=this.comment.props.message}},mounted(){this.commentMessage=this.comment.props.message},methods:{t:o.Tl}};var a=n(85072),c=n.n(a),i=n(97825),p=n.n(i),l=n(77659),u=n.n(l),d=n(55056),C=n.n(d),g=n(10540),y=n.n(g),A=n(41113),h=n.n(A),b=n(94163),v={};v.styleTagTransform=h(),v.setAttributes=C(),v.insert=u().bind(null,"head"),v.domAPI=p(),v.insertStyleElement=y(),c()(b.A,v),b.A&&b.A.locals&&b.A.locals;const f=(0,n(14486).A)(r,(function(){var t=this;return(0,t._self._c)("Comment",t._b({ref:"comment",staticClass:"comments-activity",attrs:{tag:"li","auto-complete":t.autoComplete,"resource-type":t.resourceType,message:t.commentMessage,"resource-id":t.resourceId,"user-data":t.genMentionsData(t.comment.props.mentions)},on:{delete:function(e){return t.reloadCallback()}}},"Comment",t.comment.props,!1))}),[],!1,null,"5e783bec",null).exports}}]);
|
||||
//# sourceMappingURL=3920-3920.js.map?v=e9c98e3ed3d86308486e
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[3920],{94163(t,e,n){n.d(e,{A:()=>a});var o=n(71354),m=n.n(o),s=n(76314),r=n.n(s)()(m());r.push([t.id,"\n.comments-activity[data-v-5e783bec] {\n\tpadding: 0;\n}\n","",{version:3,sources:["webpack://./apps/comments/src/views/ActivityCommentEntry.vue"],names:[],mappings:";AAmEA;CACA,UAAA;AACA",sourcesContent:['\x3c!--\n - SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n--\x3e\n\n<template>\n\t<Comment ref="comment"\n\t\ttag="li"\n\t\tv-bind="comment.props"\n\t\t:auto-complete="autoComplete"\n\t\t:resource-type="resourceType"\n\t\t:message="commentMessage"\n\t\t:resource-id="resourceId"\n\t\t:user-data="genMentionsData(comment.props.mentions)"\n\t\tclass="comments-activity"\n\t\t@delete="reloadCallback()" />\n</template>\n\n<script lang="ts">\nimport type { PropType } from \'vue\'\nimport { translate as t } from \'@nextcloud/l10n\'\n\nimport Comment from \'../components/Comment.vue\'\nimport CommentView from \'../mixins/CommentView\'\n\nexport default {\n\tname: \'ActivityCommentEntry\',\n\n\tcomponents: {\n\t\tComment,\n\t},\n\n\tmixins: [CommentView],\n\tprops: {\n\t\tcomment: {\n\t\t\ttype: Object,\n\t\t\trequired: true,\n\t\t},\n\t\treloadCallback: {\n\t\t\ttype: Function as PropType<() => void>,\n\t\t\trequired: true,\n\t\t},\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\tcommentMessage: \'\',\n\t\t}\n\t},\n\n\twatch: {\n\t\tcomment() {\n\t\t\tthis.commentMessage = this.comment.props.message\n\t\t},\n\t},\n\n\tmounted() {\n\t\tthis.commentMessage = this.comment.props.message\n\t},\n\n\tmethods: {\n\t\tt,\n\t},\n}\n<\/script>\n\n<style scoped>\n.comments-activity {\n\tpadding: 0;\n}\n</style>\n'],sourceRoot:""}]);const a=r},93920(t,e,n){n.d(e,{default:()=>f});var o=n(53334),m=n(65463),s=n(70452);const r={name:"ActivityCommentEntry",components:{Comment:m.A},mixins:[s.A],props:{comment:{type:Object,required:!0},reloadCallback:{type:Function,required:!0}},data:()=>({commentMessage:""}),watch:{comment(){this.commentMessage=this.comment.props.message}},mounted(){this.commentMessage=this.comment.props.message},methods:{t:o.Tl}};var a=n(85072),c=n.n(a),i=n(97825),p=n.n(i),l=n(77659),u=n.n(l),d=n(55056),C=n.n(d),g=n(10540),y=n.n(g),A=n(41113),h=n.n(A),b=n(94163),v={};v.styleTagTransform=h(),v.setAttributes=C(),v.insert=u().bind(null,"head"),v.domAPI=p(),v.insertStyleElement=y(),c()(b.A,v),b.A&&b.A.locals&&b.A.locals;const f=(0,n(14486).A)(r,function(){var t=this;return(0,t._self._c)("Comment",t._b({ref:"comment",staticClass:"comments-activity",attrs:{tag:"li","auto-complete":t.autoComplete,"resource-type":t.resourceType,message:t.commentMessage,"resource-id":t.resourceId,"user-data":t.genMentionsData(t.comment.props.mentions)},on:{delete:function(e){return t.reloadCallback()}}},"Comment",t.comment.props,!1))},[],!1,null,"5e783bec",null).exports}}]);
|
||||
//# sourceMappingURL=3920-3920.js.map?v=152abc588f20048b8ee0
|
||||
112
dist/3920-3920.js.license
vendored
112
dist/3920-3920.js.license
vendored
|
|
@ -4,13 +4,17 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: readable-stream developers
|
||||
SPDX-FileCopyrightText: qs developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: jden <jason@denizac.org>
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: defunctzombie
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Varun A P
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
|
||||
|
|
@ -34,7 +38,6 @@ SPDX-FileCopyrightText: Jordan Harband
|
|||
SPDX-FileCopyrightText: John Hiesey
|
||||
SPDX-FileCopyrightText: James Halliday
|
||||
SPDX-FileCopyrightText: Jacob Clevenger<https://github.com/wheatjs>
|
||||
SPDX-FileCopyrightText: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)
|
||||
SPDX-FileCopyrightText: Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)
|
||||
SPDX-FileCopyrightText: Guillaume Chau <guillaume.b.chau@gmail.com>
|
||||
SPDX-FileCopyrightText: Guillaume Chau
|
||||
|
|
@ -47,17 +50,23 @@ SPDX-FileCopyrightText: Eduardo San Martin Morote
|
|||
SPDX-FileCopyrightText: Dylan Piercey <pierceydylan@gmail.com>
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Ben Drucker
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: Amit Gupta (https://solothought.com)
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -65,23 +74,50 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -89,17 +125,17 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nodable/entities
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 6.6.3
|
||||
- version: 6.6.4
|
||||
- license: MIT
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -125,8 +161,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- brace-expansion
|
||||
- version: 2.0.1
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
|
|
@ -153,13 +192,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- define-data-property
|
||||
- version: 1.1.4
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- dunder-proto
|
||||
- version: 1.0.1
|
||||
|
|
@ -179,6 +218,12 @@ This file is generated from multiple sources. Included packages:
|
|||
- events
|
||||
- version: 3.3.0
|
||||
- license: MIT
|
||||
- fast-xml-builder
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- fast-xml-parser
|
||||
- version: 5.7.3
|
||||
- license: MIT
|
||||
- floating-vue
|
||||
- version: 1.0.0-beta.19
|
||||
- license: MIT
|
||||
|
|
@ -212,6 +257,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- hasown
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- hot-patcher
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
|
|
@ -225,7 +273,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.4
|
||||
- license: ISC
|
||||
- is-arguments
|
||||
- version: 1.1.1
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- is-buffer
|
||||
- version: 1.1.6
|
||||
|
|
@ -234,7 +282,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.2.7
|
||||
- license: MIT
|
||||
- is-generator-function
|
||||
- version: 1.0.10
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- is-regex
|
||||
- version: 1.2.1
|
||||
- license: MIT
|
||||
- is-typed-array
|
||||
- version: 1.1.15
|
||||
|
|
@ -248,9 +299,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- md5
|
||||
- version: 2.3.0
|
||||
- license: BSD-3-Clause
|
||||
- minimatch
|
||||
- version: 9.0.5
|
||||
- license: ISC
|
||||
- nested-property
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
|
|
@ -260,6 +308,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- object-inspect
|
||||
- version: 1.13.4
|
||||
- license: MIT
|
||||
- path-expression-matcher
|
||||
- version: 1.5.0
|
||||
- license: MIT
|
||||
- path-posix
|
||||
- version: 1.0.0
|
||||
- license: ISC
|
||||
|
|
@ -267,7 +318,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.3.1
|
||||
- license: MIT
|
||||
- possible-typed-array-names
|
||||
- version: 1.0.0
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- process
|
||||
- version: 0.11.10
|
||||
|
|
@ -276,7 +327,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.4.1
|
||||
- license: MIT
|
||||
- qs
|
||||
- version: 6.13.0
|
||||
- version: 6.14.1
|
||||
- license: BSD-3-Clause
|
||||
- querystringify
|
||||
- version: 2.2.0
|
||||
|
|
@ -287,6 +338,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- safe-buffer
|
||||
- version: 5.2.1
|
||||
- license: MIT
|
||||
- safe-regex-test
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- set-function-length
|
||||
- version: 1.2.2
|
||||
- license: MIT
|
||||
|
|
@ -336,10 +390,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 6.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- url-join
|
||||
- version: 5.0.0
|
||||
|
|
@ -368,11 +419,8 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- fast-xml-parser
|
||||
- version: 5.3.4
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.9.0
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- which-typed-array
|
||||
- version: 1.1.19
|
||||
|
|
|
|||
2
dist/3920-3920.js.map
vendored
2
dist/3920-3920.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/3920-3920.js.map.license
vendored
1
dist/3920-3920.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
3920-3920.js.license
|
||||
4
dist/4107-4107.js
vendored
4
dist/4107-4107.js
vendored
File diff suppressed because one or more lines are too long
36
dist/4107-4107.js.license
vendored
36
dist/4107-4107.js.license
vendored
|
|
@ -15,6 +15,7 @@ SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
|||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Rubén Norte <ruben.norte@softonic.com>
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Matt Zabriskie
|
||||
SPDX-FileCopyrightText: Joyent
|
||||
|
|
@ -25,7 +26,6 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Austin Andrews
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
|
|
@ -38,7 +38,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 7.4.47
|
||||
- license: Apache-2.0
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -46,26 +46,23 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -73,20 +70,20 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- license: GPL-3.0-or-later
|
||||
- eventemitter3
|
||||
- version: 5.0.4
|
||||
- version: 5.0.1
|
||||
- license: MIT
|
||||
- p-queue
|
||||
- version: 9.1.0
|
||||
|
|
@ -95,7 +92,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.11.1
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -119,10 +116,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.3.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -181,6 +178,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- nextcloud
|
||||
- version: 1.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
|
|
|
|||
2
dist/4107-4107.js.map
vendored
2
dist/4107-4107.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/4107-4107.js.map.license
vendored
1
dist/4107-4107.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
4107-4107.js.license
|
||||
2
dist/4271-4271.js
vendored
Normal file
2
dist/4271-4271.js
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[4271],{4271(t,e,a){a.r(e),a.d(e,{default:()=>f});var n=a(85471),i=a(80474),s=a(21777),r=a(95674),o=a(94219),l=a(371),c=a(82182),u=a(67145),m=a(35810);const d=(0,i.c0)("public").build(),p=(0,n.pM)({name:"PublicAuthPrompt",components:{NcDialog:o.A,NcNoteCard:l.A,NcTextField:c.A},props:{nickname:{type:String,default:""},title:{type:String,default:(0,u.t)("Guest identification")},text:{type:String,default:""},notice:{type:String,default:""},submitLabel:{type:String,default:(0,u.t)("Submit name")},cancellable:{type:Boolean,default:!1}},emits:["close"],setup:()=>({t:u.t}),data:()=>({name:""}),computed:{dialogButtons(){const t={label:(0,u.t)("Cancel"),variant:"tertiary",callback:()=>this.$emit("close")},e={label:this.submitLabel,type:"submit",variant:"primary"};return this.cancellable?[t,e]:[e]},defaultNotice(){return this.notice?this.notice:this.nickname?(0,u.t)("You are currently identified as {nickname}.",{nickname:this.nickname}):(0,u.t)("You are currently not identified.")}},watch:{nickname:{handler(){this.name=this.nickname},immediate:!0},name(){const t=this.name.trim?.()||"",e=this.$refs.input?.$el.querySelector("input");if(!e)return;const a=function(t){if(""===t.trim())return(0,u.t)("Names must not be empty.");if(t.startsWith("."))return(0,u.t)("Names must not start with a dot.");if(t.length>64)return(0,u.t)("Names may be at most 64 characters long.");try{return(0,m.KT)(t),""}catch(t){if(!(t instanceof m.di))throw t;switch(t.reason){case m.nF.Character:return(0,u.t)('"{char}" is not allowed inside a name.',{char:t.segment});case m.nF.ReservedName:return(0,u.t)('"{segment}" is a reserved name and not allowed.',{segment:t.segment});case m.nF.Extension:return t.segment.match(/\.[a-z]/i)?(0,u.t)('"{extension}" is not an allowed name.',{extension:t.segment}):(0,u.t)('Names must not end with "{extension}".',{extension:t.segment});default:return(0,u.t)("Invalid name.")}}}(t);e.setCustomValidity(a),e.reportValidity()}},methods:{onSubmit(){const t=this.$refs.input,e=this.name.trim();if(""===e)return t.setCustomValidity((0,u.t)("You cannot leave the name empty.")),t.reportValidity(),void t.focus();if(e.length<2)return t.setCustomValidity((0,u.t)("Please enter a name with at least 2 characters.")),t.reportValidity(),void t.focus();try{(0,s.L$)(e)}catch(e){return(0,r.Qg)((0,u.t)("Failed to set nickname.")),console.error("Failed to set nickname",e),void t.focus()}d.setItem("public-auth-prompt-shown","true"),this.$emit("close",this.name)}}});var h=function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcDialog",{staticClass:"public-auth-prompt",attrs:{buttons:t.dialogButtons,"data-cy-public-auth-prompt-dialog":"","is-form":"","no-close":"",name:t.title},on:{submit:t.onSubmit}},[t.text?e("p",{staticClass:"public-auth-prompt__text"},[t._v(" "+t._s(t.text)+" ")]):t._e(),e("NcNoteCard",{staticClass:"public-auth-prompt__header",attrs:{text:t.defaultNotice,type:"info"}}),e("NcTextField",{ref:"input",staticClass:"public-auth-prompt__input",attrs:{"data-cy-public-auth-prompt-dialog-name":"",label:t.t("Name"),placeholder:t.t("Enter your name"),required:!t.cancellable,minlength:"2",maxlength:"64",name:"name"},model:{value:t.name,callback:function(e){t.name=e},expression:"name"}})],1)},b=[];const f=(0,u.n)(p,h,b,!1,null,"a2f36bdb").exports}}]);
|
||||
//# sourceMappingURL=4271-4271.js.map?v=ff31b3d86353bd197672
|
||||
|
|
@ -10,6 +10,7 @@ SPDX-FileCopyrightText: Varun A P
|
|||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Jonas Schade <derzade@gmail.com>
|
||||
SPDX-FileCopyrightText: Guillaume Chau <guillaume.b.chau@gmail.com>
|
||||
|
|
@ -18,7 +19,6 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Alkemics
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
|
@ -26,49 +26,46 @@ SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
|||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -86,10 +83,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.3.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -130,3 +127,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
1
dist/4271-4271.js.map
vendored
Normal file
1
dist/4271-4271.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4
dist/4505-4505.js
vendored
4
dist/4505-4505.js
vendored
File diff suppressed because one or more lines are too long
158
dist/4505-4505.js.license
vendored
158
dist/4505-4505.js.license
vendored
|
|
@ -5,15 +5,18 @@ SPDX-License-Identifier: BSD-3-Clause
|
|||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: xiaokai <kexiaokai@gmail.com>
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: readable-stream developers
|
||||
SPDX-FileCopyrightText: qs developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: jden <jason@denizac.org>
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: defunctzombie
|
||||
SPDX-FileCopyrightText: debounce developers
|
||||
SPDX-FileCopyrightText: color developers
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Varun A P
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
|
|
@ -21,7 +24,6 @@ SPDX-FileCopyrightText: Sindre Sorhus
|
|||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Rob Cresswell <robcresswell@pm.me>
|
||||
SPDX-FileCopyrightText: Raynos <raynos2@gmail.com>
|
||||
SPDX-FileCopyrightText: Qix (http://github.com/qix-)
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch)
|
||||
SPDX-FileCopyrightText: Paul Vorbach <paul@vorb.de> (http://vorb.de)
|
||||
|
|
@ -37,28 +39,32 @@ SPDX-FileCopyrightText: Jordan Harband <ljharb@gmail.com>
|
|||
SPDX-FileCopyrightText: Jordan Harband
|
||||
SPDX-FileCopyrightText: John Hiesey
|
||||
SPDX-FileCopyrightText: James Halliday
|
||||
SPDX-FileCopyrightText: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)
|
||||
SPDX-FileCopyrightText: Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)
|
||||
SPDX-FileCopyrightText: Heather Arthur <fayearthur@gmail.com>
|
||||
SPDX-FileCopyrightText: Guillaume Chau <guillaume.b.chau@gmail.com>
|
||||
SPDX-FileCopyrightText: GitHub Inc.
|
||||
SPDX-FileCopyrightText: Feross Aboukhadijeh
|
||||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dylan Piercey <pierceydylan@gmail.com>
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: DY <dfcreative@gmail.com>
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Ben Drucker
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: Amit Gupta (https://solothought.com)
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -66,17 +72,50 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -84,18 +123,42 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/password-confirmation
|
||||
- version: 5.3.2
|
||||
- @nextcloud/vue
|
||||
- version: 9.6.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.1.0
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.1.0
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.3
|
||||
- license: MIT
|
||||
- @nextcloud/password-confirmation
|
||||
- version: 6.1.0
|
||||
- license: MIT
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nodable/entities
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
- license: MIT
|
||||
|
|
@ -117,8 +180,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- brace-expansion
|
||||
- version: 2.0.1
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
|
|
@ -144,23 +210,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- charenc
|
||||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- color-convert
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- color-name
|
||||
- version: 1.1.4
|
||||
- license: MIT
|
||||
- color-string
|
||||
- version: 1.9.1
|
||||
- license: MIT
|
||||
- color
|
||||
- version: 4.2.3
|
||||
- license: MIT
|
||||
- crypt
|
||||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- debounce
|
||||
- version: 2.2.0
|
||||
|
|
@ -169,7 +223,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.1.4
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- dunder-proto
|
||||
- version: 1.0.1
|
||||
|
|
@ -189,6 +243,12 @@ This file is generated from multiple sources. Included packages:
|
|||
- events
|
||||
- version: 3.3.0
|
||||
- license: MIT
|
||||
- fast-xml-builder
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- fast-xml-parser
|
||||
- version: 5.7.3
|
||||
- license: MIT
|
||||
- floating-vue
|
||||
- version: 1.0.0-beta.19
|
||||
- license: MIT
|
||||
|
|
@ -222,6 +282,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- hasown
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- hot-patcher
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
|
|
@ -235,7 +298,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.4
|
||||
- license: ISC
|
||||
- is-arguments
|
||||
- version: 1.1.1
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- is-buffer
|
||||
- version: 1.1.6
|
||||
|
|
@ -244,7 +307,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.2.7
|
||||
- license: MIT
|
||||
- is-generator-function
|
||||
- version: 1.0.10
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- is-regex
|
||||
- version: 1.2.1
|
||||
- license: MIT
|
||||
- is-typed-array
|
||||
- version: 1.1.15
|
||||
|
|
@ -258,9 +324,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- md5
|
||||
- version: 2.3.0
|
||||
- license: BSD-3-Clause
|
||||
- minimatch
|
||||
- version: 9.0.5
|
||||
- license: ISC
|
||||
- nested-property
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
|
|
@ -270,11 +333,14 @@ This file is generated from multiple sources. Included packages:
|
|||
- object-inspect
|
||||
- version: 1.13.4
|
||||
- license: MIT
|
||||
- path-expression-matcher
|
||||
- version: 1.5.0
|
||||
- license: MIT
|
||||
- path-posix
|
||||
- version: 1.0.0
|
||||
- license: ISC
|
||||
- possible-typed-array-names
|
||||
- version: 1.0.0
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- process
|
||||
- version: 0.11.10
|
||||
|
|
@ -283,7 +349,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.4.1
|
||||
- license: MIT
|
||||
- qs
|
||||
- version: 6.13.0
|
||||
- version: 6.14.1
|
||||
- license: BSD-3-Clause
|
||||
- querystringify
|
||||
- version: 2.2.0
|
||||
|
|
@ -294,6 +360,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- safe-buffer
|
||||
- version: 5.2.1
|
||||
- license: MIT
|
||||
- safe-regex-test
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- set-function-length
|
||||
- version: 1.2.2
|
||||
- license: MIT
|
||||
|
|
@ -309,12 +378,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- side-channel
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- is-arrayish
|
||||
- version: 0.3.2
|
||||
- license: MIT
|
||||
- simple-swizzle
|
||||
- version: 0.2.2
|
||||
- license: MIT
|
||||
- readable-stream
|
||||
- version: 3.6.2
|
||||
- license: MIT
|
||||
|
|
@ -355,7 +418,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.12.5
|
||||
- license: MIT
|
||||
- vue-color
|
||||
- version: 2.8.1
|
||||
- version: 2.8.2
|
||||
- license: MIT
|
||||
- vue-loader
|
||||
- version: 15.11.1
|
||||
|
|
@ -366,11 +429,8 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- fast-xml-parser
|
||||
- version: 5.3.4
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.9.0
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- which-typed-array
|
||||
- version: 1.1.19
|
||||
|
|
|
|||
2
dist/4505-4505.js.map
vendored
2
dist/4505-4505.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/4505-4505.js.map.license
vendored
1
dist/4505-4505.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
4505-4505.js.license
|
||||
2
dist/4508-4508.js
vendored
2
dist/4508-4508.js
vendored
|
|
@ -1 +1 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[4508],{64508(e,r,i){i.r(r),i.d(r,{NcCustomPickerRenderResult:()=>s.N,NcReferenceList:()=>c.a,NcReferencePicker:()=>t.N,NcReferencePickerModal:()=>t.e,NcReferenceWidget:()=>t.f,NcRichText:()=>c.N,NcSearch:()=>t.h,anyLinkProviderId:()=>t.a,default:()=>c.N,getLinkWithPicker:()=>t.g,getProvider:()=>t.b,getProviders:()=>t.c,isCustomPickerElementRegistered:()=>s.c,isWidgetRegistered:()=>s.i,registerCustomPickerElement:()=>s.e,registerWidget:()=>s.r,renderCustomPickerElement:()=>s.f,renderWidget:()=>s.a,searchProvider:()=>t.s,sortProviders:()=>t.d});var c=i(63121),t=i(65139),s=i(52781)}}]);
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[4508],{64508(e,r,i){i.r(r),i.d(r,{NcCustomPickerRenderResult:()=>s.N,NcReferenceList:()=>c.a,NcReferencePicker:()=>t.N,NcReferencePickerModal:()=>t.e,NcReferenceWidget:()=>t.f,NcRichText:()=>c.N,NcSearch:()=>t.h,anyLinkProviderId:()=>t.a,default:()=>c.N,getLinkWithPicker:()=>t.g,getProvider:()=>t.b,getProviders:()=>t.c,isCustomPickerElementRegistered:()=>s.c,isWidgetRegistered:()=>s.i,registerCustomPickerElement:()=>s.e,registerWidget:()=>s.r,renderCustomPickerElement:()=>s.f,renderWidget:()=>s.a,searchProvider:()=>t.s,sortProviders:()=>t.d});var c=i(50188),t=i(56143),s=i(52781)}}]);
|
||||
52
dist/4508-4508.js.license
vendored
52
dist/4508-4508.js.license
vendored
|
|
@ -39,10 +39,13 @@ SPDX-FileCopyrightText: Andrea Giammarchi
|
|||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.4
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/dom
|
||||
- version: 1.7.6
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.10
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- unist-util-is
|
||||
- version: 3.0.0
|
||||
|
|
@ -57,7 +60,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.2.1
|
||||
- license: BSD-2-Clause
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -65,20 +68,17 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -89,20 +89,20 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- version: 0.4.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue-select
|
||||
- version: 3.26.0
|
||||
- license: MIT
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @ungap/structured-clone
|
||||
- version: 1.2.0
|
||||
- version: 1.3.0
|
||||
- license: ISC
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -132,16 +132,16 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- decode-named-character-reference
|
||||
- version: 1.1.0
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- devlop
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -189,7 +189,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 5.0.0
|
||||
- license: MIT
|
||||
- mdast-util-find-and-replace
|
||||
- version: 3.0.1
|
||||
- version: 3.0.2
|
||||
- license: MIT
|
||||
- mdast-util-from-markdown
|
||||
- version: 2.0.2
|
||||
|
|
@ -198,7 +198,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.0
|
||||
- license: MIT
|
||||
- mdast-util-to-hast
|
||||
- version: 13.2.0
|
||||
- version: 13.2.1
|
||||
- license: MIT
|
||||
- mdast-util-to-string
|
||||
- version: 4.0.0
|
||||
|
|
@ -222,7 +222,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-character
|
||||
- version: 2.1.0
|
||||
- version: 2.1.1
|
||||
- license: MIT
|
||||
- micromark-util-chunked
|
||||
- version: 2.0.1
|
||||
|
|
@ -240,7 +240,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-encode
|
||||
- version: 2.0.0
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-html-tag-name
|
||||
- version: 2.0.1
|
||||
|
|
@ -252,7 +252,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-sanitize-uri
|
||||
- version: 2.0.0
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-subtokenize
|
||||
- version: 2.1.0
|
||||
|
|
@ -282,7 +282,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 11.0.0
|
||||
- license: MIT
|
||||
- remark-rehype
|
||||
- version: 11.1.0
|
||||
- version: 11.1.2
|
||||
- license: MIT
|
||||
- remark-unlink-protocols
|
||||
- version: 1.0.0
|
||||
|
|
@ -324,16 +324,16 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- license: MIT
|
||||
- vfile-message
|
||||
- version: 4.0.2
|
||||
- version: 4.0.3
|
||||
- license: MIT
|
||||
- vfile
|
||||
- version: 6.0.2
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 3.6.5
|
||||
|
|
|
|||
2
dist/5528-5528.js
vendored
2
dist/5528-5528.js
vendored
|
|
@ -1 +1 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[5528],{95528(e,l,u){u.r(l),u.d(l,{NcAutoCompleteResult:()=>a.N,NcMentionBubble:()=>t.N,default:()=>a.a});var t=u(36079),a=u(55041)}}]);
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[5528],{95528(e,l,u){u.r(l),u.d(l,{NcAutoCompleteResult:()=>a.N,NcMentionBubble:()=>t.N,default:()=>a.a});var t=u(26797),a=u(24299)}}]);
|
||||
54
dist/5528-5528.js.license
vendored
54
dist/5528-5528.js.license
vendored
|
|
@ -43,10 +43,13 @@ SPDX-FileCopyrightText: Andrea Giammarchi
|
|||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.4
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/dom
|
||||
- version: 1.7.6
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.10
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- unist-util-is
|
||||
- version: 3.0.0
|
||||
|
|
@ -61,7 +64,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.2.1
|
||||
- license: BSD-2-Clause
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -69,20 +72,17 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -93,20 +93,20 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- version: 0.4.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue-select
|
||||
- version: 3.26.0
|
||||
- license: MIT
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @ungap/structured-clone
|
||||
- version: 1.2.0
|
||||
- version: 1.3.0
|
||||
- license: ISC
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -127,7 +127,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- char-regex
|
||||
- version: 2.0.1
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- charenc
|
||||
- version: 0.0.2
|
||||
|
|
@ -139,19 +139,19 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- debounce
|
||||
- version: 2.2.0
|
||||
- license: MIT
|
||||
- decode-named-character-reference
|
||||
- version: 1.1.0
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- devlop
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- emoji-mart-vue-fast
|
||||
- version: 15.0.5
|
||||
|
|
@ -205,7 +205,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 5.0.0
|
||||
- license: MIT
|
||||
- mdast-util-find-and-replace
|
||||
- version: 3.0.1
|
||||
- version: 3.0.2
|
||||
- license: MIT
|
||||
- mdast-util-from-markdown
|
||||
- version: 2.0.2
|
||||
|
|
@ -214,7 +214,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.0
|
||||
- license: MIT
|
||||
- mdast-util-to-hast
|
||||
- version: 13.2.0
|
||||
- version: 13.2.1
|
||||
- license: MIT
|
||||
- mdast-util-to-string
|
||||
- version: 4.0.0
|
||||
|
|
@ -238,7 +238,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-character
|
||||
- version: 2.1.0
|
||||
- version: 2.1.1
|
||||
- license: MIT
|
||||
- micromark-util-chunked
|
||||
- version: 2.0.1
|
||||
|
|
@ -256,7 +256,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-encode
|
||||
- version: 2.0.0
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-html-tag-name
|
||||
- version: 2.0.1
|
||||
|
|
@ -268,7 +268,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-sanitize-uri
|
||||
- version: 2.0.0
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
- micromark-util-subtokenize
|
||||
- version: 2.1.0
|
||||
|
|
@ -298,7 +298,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 11.0.0
|
||||
- license: MIT
|
||||
- remark-rehype
|
||||
- version: 11.1.0
|
||||
- version: 11.1.2
|
||||
- license: MIT
|
||||
- remark-unlink-protocols
|
||||
- version: 1.0.0
|
||||
|
|
@ -340,16 +340,16 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- license: MIT
|
||||
- vfile-message
|
||||
- version: 4.0.2
|
||||
- version: 4.0.3
|
||||
- license: MIT
|
||||
- vfile
|
||||
- version: 6.0.2
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 3.6.5
|
||||
|
|
|
|||
4
dist/5862-5862.js
vendored
4
dist/5862-5862.js
vendored
File diff suppressed because one or more lines are too long
2
dist/5862-5862.js.license
vendored
2
dist/5862-5862.js.license
vendored
|
|
@ -30,7 +30,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 6.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
|
|
|
|||
2
dist/5862-5862.js.map
vendored
2
dist/5862-5862.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/5862-5862.js.map.license
vendored
1
dist/5862-5862.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
5862-5862.js.license
|
||||
2
dist/6015-6015.js
vendored
Normal file
2
dist/6015-6015.js
vendored
Normal file
File diff suppressed because one or more lines are too long
92
dist/6015-6015.js.license
vendored
Normal file
92
dist/6015-6015.js.license
vendored
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
SPDX-License-Identifier: MIT
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: date-fns developers
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Jeff Sagal <sagalbot@gmail.com>
|
||||
SPDX-FileCopyrightText: Feross Aboukhadijeh
|
||||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/dom
|
||||
- version: 1.7.6
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- vue-select
|
||||
- version: 4.0.0-beta.6
|
||||
- license: MIT
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- date-fns
|
||||
- version: 4.1.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- ieee754
|
||||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
- buffer
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- style-loader
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
1
dist/6015-6015.js.map
vendored
Normal file
1
dist/6015-6015.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4
dist/6127-6127.js
vendored
4
dist/6127-6127.js
vendored
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[6127],{95556(e,t,a){a.d(t,{A:()=>r});var n=a(71354),i=a.n(n),s=a(76314),l=a.n(s)()(i());l.push([e.id,".public-auth-prompt__subtitle[data-v-47b67b1d]{font-size:1.25em;margin-block:0 calc(3*var(--default-grid-baseline))}.public-auth-prompt__header[data-v-47b67b1d]{margin-block:0 calc(3*var(--default-grid-baseline))}.public-auth-prompt__input[data-v-47b67b1d]{margin-block:calc(4*var(--default-grid-baseline)) calc(2*var(--default-grid-baseline))}","",{version:3,sources:["webpack://./apps/files_sharing/src/views/PublicAuthPrompt.vue"],names:[],mappings:"AAEC,+CAEC,gBAAA,CACA,mDAAA,CAGD,6CACC,mDAAA,CAGD,4CACC,sFAAA",sourcesContent:["\n.public-auth-prompt {\n\t&__subtitle {\n\t\t// Smaller than dialog title\n\t\tfont-size: 1.25em;\n\t\tmargin-block: 0 calc(3 * var(--default-grid-baseline));\n\t}\n\n\t&__header {\n\t\tmargin-block: 0 calc(3 * var(--default-grid-baseline));\n\t}\n\n\t&__input {\n\t\tmargin-block: calc(4 * var(--default-grid-baseline)) calc(2 * var(--default-grid-baseline));\n\t}\n}\n"],sourceRoot:""}]);const r=l},36127(e,t,a){a.r(t),a.d(t,{default:()=>k});var n=a(85471),i=a(32981),s=a(53334),l=a(94219),r=a(371),o=a(82182),u=a(35810);const c=(0,n.pM)({name:"PublicAuthPrompt",components:{NcDialog:l.A,NcNoteCard:r.A,NcTextField:o.A},props:{nickname:{type:String,default:""}},setup:()=>({t:s.t,owner:(0,i.C)("files_sharing","owner",""),ownerDisplayName:(0,i.C)("files_sharing","ownerDisplayName",""),label:(0,i.C)("files_sharing","label",""),note:(0,i.C)("files_sharing","note",""),filename:(0,i.C)("files_sharing","filename","")}),data:()=>({name:""}),computed:{dialogName(){return this.t("files_sharing","Upload files to {folder}",{folder:this.label||this.filename})},dialogButtons:()=>[{label:(0,s.t)("files_sharing","Submit name"),type:"primary",nativeType:"submit"}]},watch:{nickname:{handler(){this.name=this.nickname},immediate:!0},name(){const e=this.name.trim?.()||"",t=this.$refs.input?.$el.querySelector("input");if(!t)return;const a=function(e,t=!1){if(""===e.trim())return(0,s.t)("files","Filename must not be empty.");if(e.startsWith("."))return(0,s.t)("files","Names must not start with a dot.");try{return(0,u.KT)(e),""}catch(e){if(!(e instanceof u.di))throw e;switch(e.reason){case u.nF.Character:return(0,s.t)("files",'"{char}" is not allowed inside a name.',{char:e.segment},void 0,{escape:t});case u.nF.ReservedName:return(0,s.t)("files",'"{segment}" is a reserved name and not allowed.',{segment:e.segment},void 0,{escape:!1});case u.nF.Extension:return e.segment.match(/\.[a-z]/i)?(0,s.t)("files",'"{extension}" is not an allowed name.',{extension:e.segment},void 0,{escape:!1}):(0,s.t)("files",'Names must not end with "{extension}".',{extension:e.segment},void 0,{escape:!1});default:return(0,s.t)("files","Invalid name.")}}}(e);t.setCustomValidity(a),t.reportValidity()}}});var m=a(85072),d=a.n(m),p=a(97825),h=a.n(p),f=a(77659),b=a.n(f),g=a(55056),_=a.n(g),A=a(10540),v=a.n(A),C=a(41113),y=a.n(C),w=a(95556),N={};N.styleTagTransform=y(),N.setAttributes=_(),N.insert=b().bind(null,"head"),N.domAPI=h(),N.insertStyleElement=v(),d()(w.A,N),w.A&&w.A.locals&&w.A.locals;const k=(0,a(14486).A)(c,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("NcDialog",{staticClass:"public-auth-prompt",attrs:{buttons:e.dialogButtons,"data-cy-public-auth-prompt-dialog":"","is-form":"","can-close":!1,name:e.dialogName},on:{submit:function(t){return e.$emit("close",e.name)}}},[e.owner?t("p",{staticClass:"public-auth-prompt__subtitle"},[e._v("\n\t\t"+e._s(e.t("files_sharing","{ownerDisplayName} shared a folder with you.",{ownerDisplayName:e.ownerDisplayName}))+"\n\t")]):e._e(),e._v(" "),t("NcNoteCard",{staticClass:"public-auth-prompt__header",attrs:{text:e.t("files_sharing","To upload files, you need to provide your name first."),type:"info"}}),e._v(" "),t("NcTextField",{ref:"input",staticClass:"public-auth-prompt__input",attrs:{"data-cy-public-auth-prompt-dialog-name":"",label:e.t("files_sharing","Name"),placeholder:e.t("files_sharing","Enter your name"),minlength:"2",name:"name",required:"",value:e.name},on:{"update:value":function(t){e.name=t}}})],1)}),[],!1,null,"47b67b1d",null).exports}}]);
|
||||
//# sourceMappingURL=6127-6127.js.map?v=5b5f88322a71597db878
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[6127],{95556(e,t,a){a.d(t,{A:()=>r});var n=a(71354),i=a.n(n),s=a(76314),l=a.n(s)()(i());l.push([e.id,".public-auth-prompt__subtitle[data-v-47b67b1d]{font-size:1.25em;margin-block:0 calc(3*var(--default-grid-baseline))}.public-auth-prompt__header[data-v-47b67b1d]{margin-block:0 calc(3*var(--default-grid-baseline))}.public-auth-prompt__input[data-v-47b67b1d]{margin-block:calc(4*var(--default-grid-baseline)) calc(2*var(--default-grid-baseline))}","",{version:3,sources:["webpack://./apps/files_sharing/src/views/PublicAuthPrompt.vue"],names:[],mappings:"AAEC,+CAEC,gBAAA,CACA,mDAAA,CAGD,6CACC,mDAAA,CAGD,4CACC,sFAAA",sourcesContent:["\n.public-auth-prompt {\n\t&__subtitle {\n\t\t// Smaller than dialog title\n\t\tfont-size: 1.25em;\n\t\tmargin-block: 0 calc(3 * var(--default-grid-baseline));\n\t}\n\n\t&__header {\n\t\tmargin-block: 0 calc(3 * var(--default-grid-baseline));\n\t}\n\n\t&__input {\n\t\tmargin-block: calc(4 * var(--default-grid-baseline)) calc(2 * var(--default-grid-baseline));\n\t}\n}\n"],sourceRoot:""}]);const r=l},36127(e,t,a){a.r(t),a.d(t,{default:()=>k});var n=a(85471),i=a(81222),s=a(53334),l=a(94219),r=a(371),o=a(82182),u=a(35810);const c=(0,n.pM)({name:"PublicAuthPrompt",components:{NcDialog:l.A,NcNoteCard:r.A,NcTextField:o.A},props:{nickname:{type:String,default:""}},setup:()=>({t:s.t,owner:(0,i.C)("files_sharing","owner",""),ownerDisplayName:(0,i.C)("files_sharing","ownerDisplayName",""),label:(0,i.C)("files_sharing","label",""),note:(0,i.C)("files_sharing","note",""),filename:(0,i.C)("files_sharing","filename","")}),data:()=>({name:""}),computed:{dialogName(){return this.t("files_sharing","Upload files to {folder}",{folder:this.label||this.filename})},dialogButtons:()=>[{label:(0,s.t)("files_sharing","Submit name"),type:"primary",nativeType:"submit"}]},watch:{nickname:{handler(){this.name=this.nickname},immediate:!0},name(){const e=this.name.trim?.()||"",t=this.$refs.input?.$el.querySelector("input");if(!t)return;const a=function(e,t=!1){if(""===e.trim())return(0,s.t)("files","Filename must not be empty.");if(e.startsWith("."))return(0,s.t)("files","Names must not start with a dot.");try{return(0,u.KT)(e),""}catch(e){if(!(e instanceof u.di))throw e;switch(e.reason){case u.nF.Character:return(0,s.t)("files",'"{char}" is not allowed inside a name.',{char:e.segment},void 0,{escape:t});case u.nF.ReservedName:return(0,s.t)("files",'"{segment}" is a reserved name and not allowed.',{segment:e.segment},void 0,{escape:!1});case u.nF.Extension:return e.segment.match(/\.[a-z]/i)?(0,s.t)("files",'"{extension}" is not an allowed name.',{extension:e.segment},void 0,{escape:!1}):(0,s.t)("files",'Names must not end with "{extension}".',{extension:e.segment},void 0,{escape:!1});default:return(0,s.t)("files","Invalid name.")}}}(e);t.setCustomValidity(a),t.reportValidity()}}});var m=a(85072),d=a.n(m),p=a(97825),h=a.n(p),f=a(77659),b=a.n(f),g=a(55056),_=a.n(g),A=a(10540),v=a.n(A),C=a(41113),y=a.n(C),w=a(95556),N={};N.styleTagTransform=y(),N.setAttributes=_(),N.insert=b().bind(null,"head"),N.domAPI=h(),N.insertStyleElement=v(),d()(w.A,N),w.A&&w.A.locals&&w.A.locals;const k=(0,a(14486).A)(c,function(){var e=this,t=e._self._c;return e._self._setupProxy,t("NcDialog",{staticClass:"public-auth-prompt",attrs:{buttons:e.dialogButtons,"data-cy-public-auth-prompt-dialog":"","is-form":"","can-close":!1,name:e.dialogName},on:{submit:function(t){return e.$emit("close",e.name)}}},[e.owner?t("p",{staticClass:"public-auth-prompt__subtitle"},[e._v("\n\t\t"+e._s(e.t("files_sharing","{ownerDisplayName} shared a folder with you.",{ownerDisplayName:e.ownerDisplayName}))+"\n\t")]):e._e(),e._v(" "),t("NcNoteCard",{staticClass:"public-auth-prompt__header",attrs:{text:e.t("files_sharing","To upload files, you need to provide your name first."),type:"info"}}),e._v(" "),t("NcTextField",{ref:"input",staticClass:"public-auth-prompt__input",attrs:{"data-cy-public-auth-prompt-dialog-name":"",label:e.t("files_sharing","Name"),placeholder:e.t("files_sharing","Enter your name"),minlength:"2",name:"name",required:"",value:e.name},on:{"update:value":function(t){e.name=t}}})],1)},[],!1,null,"47b67b1d",null).exports}}]);
|
||||
//# sourceMappingURL=6127-6127.js.map?v=223afe5138493ccb32c9
|
||||
32
dist/6127-6127.js.license
vendored
32
dist/6127-6127.js.license
vendored
|
|
@ -9,6 +9,7 @@ SPDX-FileCopyrightText: escape-html developers
|
|||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Jonas Schade <derzade@gmail.com>
|
||||
SPDX-FileCopyrightText: Guillaume Chau <guillaume.b.chau@gmail.com>
|
||||
|
|
@ -17,35 +18,34 @@ SPDX-FileCopyrightText: Feross Aboukhadijeh
|
|||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Alkemics
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 3.12.2
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -53,20 +53,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.3.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -84,10 +75,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 4.3.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
@ -128,6 +119,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- nextcloud
|
||||
- version: 1.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
|
|
|
|||
2
dist/6127-6127.js.map
vendored
2
dist/6127-6127.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/6127-6127.js.map.license
vendored
1
dist/6127-6127.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
6127-6127.js.license
|
||||
2
dist/6329-6329.js
vendored
2
dist/6329-6329.js
vendored
|
|
@ -1,2 +0,0 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[6329],{66329(t,e,a){a.r(e),a.d(e,{default:()=>f});var n=a(85471),i=a(80474),s=a(21777),r=a(85168),o=a(94219),l=a(371),c=a(82182),u=a(93095),m=a(35810);const d=(0,i.c0)("public").build(),p=(0,n.pM)({name:"PublicAuthPrompt",components:{NcDialog:o.A,NcNoteCard:l.A,NcTextField:c.A},props:{nickname:{type:String,default:""},title:{type:String,default:(0,u.t)("Guest identification")},text:{type:String,default:""},notice:{type:String,default:""},submitLabel:{type:String,default:(0,u.t)("Submit name")},cancellable:{type:Boolean,default:!1}},emits:["close"],setup:()=>({t:u.t}),data:()=>({name:""}),computed:{dialogButtons(){const t={label:(0,u.t)("Cancel"),variant:"tertiary",callback:()=>this.$emit("close")},e={label:this.submitLabel,type:"submit",variant:"primary"};return this.cancellable?[t,e]:[e]},defaultNotice(){return this.notice?this.notice:this.nickname?(0,u.t)("You are currently identified as {nickname}.",{nickname:this.nickname}):(0,u.t)("You are currently not identified.")}},watch:{nickname:{handler(){this.name=this.nickname},immediate:!0},name(){const t=this.name.trim?.()||"",e=this.$refs.input?.$el.querySelector("input");if(!e)return;const a=function(t){if(""===t.trim())return(0,u.t)("Names must not be empty.");if(t.startsWith("."))return(0,u.t)("Names must not start with a dot.");if(t.length>64)return(0,u.t)("Names may be at most 64 characters long.");try{return(0,m.KT)(t),""}catch(t){if(!(t instanceof m.di))throw t;switch(t.reason){case m.nF.Character:return(0,u.t)('"{char}" is not allowed inside a name.',{char:t.segment});case m.nF.ReservedName:return(0,u.t)('"{segment}" is a reserved name and not allowed.',{segment:t.segment});case m.nF.Extension:return t.segment.match(/\.[a-z]/i)?(0,u.t)('"{extension}" is not an allowed name.',{extension:t.segment}):(0,u.t)('Names must not end with "{extension}".',{extension:t.segment});default:return(0,u.t)("Invalid name.")}}}(t);e.setCustomValidity(a),e.reportValidity()}},methods:{onSubmit(){const t=this.$refs.input,e=this.name.trim();if(""===e)return t.setCustomValidity((0,u.t)("You cannot leave the name empty.")),t.reportValidity(),void t.focus();if(e.length<2)return t.setCustomValidity((0,u.t)("Please enter a name with at least 2 characters.")),t.reportValidity(),void t.focus();try{(0,s.L$)(e)}catch(e){return(0,r.Qg)((0,u.t)("Failed to set nickname.")),console.error("Failed to set nickname",e),void t.focus()}d.setItem("public-auth-prompt-shown","true"),this.$emit("close",this.name)}}});var h=function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcDialog",{staticClass:"public-auth-prompt",attrs:{buttons:t.dialogButtons,"data-cy-public-auth-prompt-dialog":"","is-form":"","no-close":"",name:t.title},on:{submit:t.onSubmit}},[t.text?e("p",{staticClass:"public-auth-prompt__text"},[t._v(" "+t._s(t.text)+" ")]):t._e(),e("NcNoteCard",{staticClass:"public-auth-prompt__header",attrs:{text:t.defaultNotice,type:"info"}}),e("NcTextField",{ref:"input",staticClass:"public-auth-prompt__input",attrs:{"data-cy-public-auth-prompt-dialog-name":"",label:t.t("Name"),placeholder:t.t("Enter your name"),required:!t.cancellable,minlength:"2",maxlength:"64",name:"name"},model:{value:t.name,callback:function(e){t.name=e},expression:"name"}})],1)},b=[];const f=(0,u.n)(p,h,b,!1,null,"a2f36bdb").exports}}]);
|
||||
//# sourceMappingURL=6329-6329.js.map?v=da6ad198a7ca85dde977
|
||||
1
dist/6329-6329.js.map
vendored
1
dist/6329-6329.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/6329-6329.js.map.license
vendored
1
dist/6329-6329.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
6329-6329.js.license
|
||||
2
dist/6822-6822.js
vendored
Normal file
2
dist/6822-6822.js
vendored
Normal file
File diff suppressed because one or more lines are too long
212
dist/6822-6822.js.license
vendored
Normal file
212
dist/6822-6822.js.license
vendored
Normal file
|
|
@ -0,0 +1,212 @@
|
|||
SPDX-License-Identifier: MIT
|
||||
SPDX-License-Identifier: ISC
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: readable-stream developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Varun A P
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: T. Jameson Little <t.jameson.little@gmail.com>
|
||||
SPDX-FileCopyrightText: Sindre Sorhus
|
||||
SPDX-FileCopyrightText: Roman Shtylman <shtylman@gmail.com>
|
||||
SPDX-FileCopyrightText: Perry Mitchell <perry@perrymitchell.net>
|
||||
SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors
|
||||
SPDX-FileCopyrightText: Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)
|
||||
SPDX-FileCopyrightText: Matt Zabriskie
|
||||
SPDX-FileCopyrightText: Jonas Schade <derzade@gmail.com>
|
||||
SPDX-FileCopyrightText: Jeff Sagal <sagalbot@gmail.com>
|
||||
SPDX-FileCopyrightText: James Halliday
|
||||
SPDX-FileCopyrightText: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
|
||||
SPDX-FileCopyrightText: Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)
|
||||
SPDX-FileCopyrightText: GitHub Inc.
|
||||
SPDX-FileCopyrightText: Feross Aboukhadijeh
|
||||
SPDX-FileCopyrightText: Evan You
|
||||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Borewit
|
||||
SPDX-FileCopyrightText: Austin Andrews
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @file-type/xml
|
||||
- version: 0.4.3
|
||||
- license: MIT
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/dom
|
||||
- version: 1.7.6
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @mdi/js
|
||||
- version: 7.4.47
|
||||
- license: Apache-2.0
|
||||
- @nextcloud/auth
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/files
|
||||
- version: 4.0.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- eventemitter3
|
||||
- version: 5.0.4
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- vue-select
|
||||
- version: 4.0.0-beta.6
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/sharing
|
||||
- version: 0.4.0
|
||||
- license: GPL-3.0-or-later
|
||||
- axios
|
||||
- version: 1.13.4
|
||||
- license: MIT
|
||||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
- license: MIT
|
||||
- events
|
||||
- version: 3.3.0
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- ieee754
|
||||
- version: 1.2.1
|
||||
- license: BSD-3-Clause
|
||||
- inherits
|
||||
- version: 2.0.4
|
||||
- license: ISC
|
||||
- is-svg
|
||||
- version: 6.1.0
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 6.0.3
|
||||
- license: MIT
|
||||
- process
|
||||
- version: 0.11.10
|
||||
- license: MIT
|
||||
- safe-buffer
|
||||
- version: 5.2.1
|
||||
- license: MIT
|
||||
- sax
|
||||
- version: 1.4.1
|
||||
- license: ISC
|
||||
- readable-stream
|
||||
- version: 3.6.2
|
||||
- license: MIT
|
||||
- stream-browserify
|
||||
- version: 3.0.0
|
||||
- license: MIT
|
||||
- string_decoder
|
||||
- version: 1.3.0
|
||||
- license: MIT
|
||||
- style-loader
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
- tabbable
|
||||
- version: 6.4.0
|
||||
- license: MIT
|
||||
- toastify-js
|
||||
- version: 1.12.0
|
||||
- license: MIT
|
||||
- typescript-event-target
|
||||
- version: 1.1.2
|
||||
- license: MIT
|
||||
- util-deprecate
|
||||
- version: 1.0.2
|
||||
- license: MIT
|
||||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
1
dist/6822-6822.js.map
vendored
Normal file
1
dist/6822-6822.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4
dist/7265-7265.js
vendored
4
dist/7265-7265.js
vendored
File diff suppressed because one or more lines are too long
6
dist/7265-7265.js.license
vendored
6
dist/7265-7265.js.license
vendored
|
|
@ -22,13 +22,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
|
|||
2
dist/7265-7265.js.map
vendored
2
dist/7265-7265.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/7265-7265.js.map.license
vendored
1
dist/7265-7265.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
7265-7265.js.license
|
||||
4
dist/7367-7367.js
vendored
4
dist/7367-7367.js
vendored
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[7367],{7367(e,t,a){a.r(t),a.d(t,{default:()=>u});var s=a(85471),l=a(53334),o=a(94219),r=a(371),n=a(16044),i=a(82182);const d=(0,s.pM)({name:"CredentialsDialog",components:{NcDialog:o.A,NcNoteCard:r.A,NcTextField:i.A,NcPasswordField:n.A},setup:()=>({t:l.t}),data:()=>({login:"",password:""}),computed:{dialogButtons:()=>[{label:(0,l.t)("files_external","Confirm"),type:"primary",nativeType:"submit"}]}}),u=(0,a(14486).A)(d,(function(){var e=this,t=e._self._c;return e._self._setupProxy,t("NcDialog",{staticClass:"external-storage-auth",attrs:{buttons:e.dialogButtons,"close-on-click-outside":"","data-cy-external-storage-auth":"","is-form":"",name:e.t("files_external","Storage credentials"),"out-transition":""},on:{submit:function(t){return e.$emit("close",{login:e.login,password:e.password})},"update:open":function(t){return e.$emit("close")}}},[t("NcNoteCard",{staticClass:"external-storage-auth__header",attrs:{text:e.t("files_external","To access the storage, you need to provide the authentication credentials."),type:"info"}}),e._v(" "),t("NcTextField",{ref:"login",staticClass:"external-storage-auth__login",attrs:{"data-cy-external-storage-auth-dialog-login":"",label:e.t("files_external","Login"),placeholder:e.t("files_external","Enter the storage login"),minlength:"2",name:"login",required:"",value:e.login},on:{"update:value":function(t){e.login=t}}}),e._v(" "),t("NcPasswordField",{ref:"password",staticClass:"external-storage-auth__password",attrs:{"data-cy-external-storage-auth-dialog-password":"",label:e.t("files_external","Password"),placeholder:e.t("files_external","Enter the storage password"),name:"password",required:"",value:e.password},on:{"update:value":function(t){e.password=t}}})],1)}),[],!1,null,null,null).exports}}]);
|
||||
//# sourceMappingURL=7367-7367.js.map?v=5b191c608ad27abba779
|
||||
"use strict";(globalThis.webpackChunknextcloud=globalThis.webpackChunknextcloud||[]).push([[7367],{7367(e,t,a){a.r(t),a.d(t,{default:()=>u});var s=a(85471),l=a(53334),o=a(94219),r=a(371),n=a(16044),i=a(82182);const d=(0,s.pM)({name:"CredentialsDialog",components:{NcDialog:o.A,NcNoteCard:r.A,NcTextField:i.A,NcPasswordField:n.A},setup:()=>({t:l.t}),data:()=>({login:"",password:""}),computed:{dialogButtons:()=>[{label:(0,l.t)("files_external","Confirm"),type:"primary",nativeType:"submit"}]}}),u=(0,a(14486).A)(d,function(){var e=this,t=e._self._c;return e._self._setupProxy,t("NcDialog",{staticClass:"external-storage-auth",attrs:{buttons:e.dialogButtons,"close-on-click-outside":"","data-cy-external-storage-auth":"","is-form":"",name:e.t("files_external","Storage credentials"),"out-transition":""},on:{submit:function(t){return e.$emit("close",{login:e.login,password:e.password})},"update:open":function(t){return e.$emit("close")}}},[t("NcNoteCard",{staticClass:"external-storage-auth__header",attrs:{text:e.t("files_external","To access the storage, you need to provide the authentication credentials."),type:"info"}}),e._v(" "),t("NcTextField",{ref:"login",staticClass:"external-storage-auth__login",attrs:{"data-cy-external-storage-auth-dialog-login":"",label:e.t("files_external","Login"),placeholder:e.t("files_external","Enter the storage login"),minlength:"2",name:"login",required:"",value:e.login},on:{"update:value":function(t){e.login=t}}}),e._v(" "),t("NcPasswordField",{ref:"password",staticClass:"external-storage-auth__password",attrs:{"data-cy-external-storage-auth-dialog-password":"",label:e.t("files_external","Password"),placeholder:e.t("files_external","Enter the storage password"),name:"password",required:"",value:e.password},on:{"update:value":function(t){e.password=t}}})],1)},[],!1,null,null,null).exports}}]);
|
||||
//# sourceMappingURL=7367-7367.js.map?v=2b31c145ec9d910815bf
|
||||
16
dist/7367-7367.js.license
vendored
16
dist/7367-7367.js.license
vendored
|
|
@ -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.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -32,14 +32,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
- license: GPL-3.0-or-later
|
||||
|
|
@ -49,8 +46,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -65,13 +65,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- debounce
|
||||
- version: 2.2.0
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
|
|||
2
dist/7367-7367.js.map
vendored
2
dist/7367-7367.js.map
vendored
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"7367-7367.js?v=5b191c608ad27abba779","mappings":"6IAAA,I,gEAMA,MCNiQ,GDMlPA,EAAAA,EAAAA,IAAgB,CAC3BC,KAAM,oBACNC,WAAY,CACRC,SAAQ,IACRC,WAAU,IACVC,YAAW,IACXC,gBAAeA,EAAAA,GAEnBC,MAAKA,KACM,CACHC,EAACA,EAAAA,IAGTC,KAAIA,KACO,CACHC,MAAO,GACPC,SAAU,KAGlBC,SAAU,CACNC,cAAaA,IACF,CAAC,CACAC,OAAON,EAAAA,EAAAA,GAAE,iBAAkB,WAC3BO,KAAM,UACNC,WAAY,cEZhC,GAXgB,E,SAAA,GACd,GFRW,WAAkB,IAAIC,EAAIC,KAAKC,EAAGF,EAAIG,MAAMD,GAAgC,OAAtBF,EAAIG,MAAMC,YAAmBF,EAAG,WAAW,CAACG,YAAY,wBAAwBC,MAAM,CAAC,QAAUN,EAAIJ,cAAc,yBAAyB,GAAG,gCAAgC,GAAG,UAAU,GAAG,KAAOI,EAAIT,EAAE,iBAAkB,uBAAuB,iBAAiB,IAAIgB,GAAG,CAAC,OAAS,SAASC,GAAQ,OAAOR,EAAIS,MAAM,QAAS,CAAChB,MAAOO,EAAIP,MAAOC,SAAUM,EAAIN,UAAU,EAAE,cAAc,SAASc,GAAQ,OAAOR,EAAIS,MAAM,QAAQ,IAAI,CAACP,EAAG,aAAa,CAACG,YAAY,gCAAgCC,MAAM,CAAC,KAAON,EAAIT,EAAE,iBAAkB,8EAA8E,KAAO,UAAUS,EAAIU,GAAG,KAAKR,EAAG,cAAc,CAACS,IAAI,QAAQN,YAAY,+BAA+BC,MAAM,CAAC,6CAA6C,GAAG,MAAQN,EAAIT,EAAE,iBAAkB,SAAS,YAAcS,EAAIT,EAAE,iBAAkB,2BAA2B,UAAY,IAAI,KAAO,QAAQ,SAAW,GAAG,MAAQS,EAAIP,OAAOc,GAAG,CAAC,eAAe,SAASC,GAAQR,EAAIP,MAAMe,CAAM,KAAKR,EAAIU,GAAG,KAAKR,EAAG,kBAAkB,CAACS,IAAI,WAAWN,YAAY,kCAAkCC,MAAM,CAAC,gDAAgD,GAAG,MAAQN,EAAIT,EAAE,iBAAkB,YAAY,YAAcS,EAAIT,EAAE,iBAAkB,8BAA8B,KAAO,WAAW,SAAW,GAAG,MAAQS,EAAIN,UAAUa,GAAG,CAAC,eAAe,SAASC,GAAQR,EAAIN,SAASc,CAAM,MAAM,EAC55C,GACsB,IESpB,EACA,KACA,KACA,M","sources":["webpack:///nextcloud/apps/files_external/src/views/CredentialsDialog.vue","webpack:///nextcloud/apps/files_external/src/views/CredentialsDialog.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files_external/src/views/CredentialsDialog.vue?7767"],"sourcesContent":["var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcDialog',{staticClass:\"external-storage-auth\",attrs:{\"buttons\":_vm.dialogButtons,\"close-on-click-outside\":\"\",\"data-cy-external-storage-auth\":\"\",\"is-form\":\"\",\"name\":_vm.t('files_external', 'Storage credentials'),\"out-transition\":\"\"},on:{\"submit\":function($event){return _vm.$emit('close', {login: _vm.login, password: _vm.password})},\"update:open\":function($event){return _vm.$emit('close')}}},[_c('NcNoteCard',{staticClass:\"external-storage-auth__header\",attrs:{\"text\":_vm.t('files_external', 'To access the storage, you need to provide the authentication credentials.'),\"type\":\"info\"}}),_vm._v(\" \"),_c('NcTextField',{ref:\"login\",staticClass:\"external-storage-auth__login\",attrs:{\"data-cy-external-storage-auth-dialog-login\":\"\",\"label\":_vm.t('files_external', 'Login'),\"placeholder\":_vm.t('files_external', 'Enter the storage login'),\"minlength\":\"2\",\"name\":\"login\",\"required\":\"\",\"value\":_vm.login},on:{\"update:value\":function($event){_vm.login=$event}}}),_vm._v(\" \"),_c('NcPasswordField',{ref:\"password\",staticClass:\"external-storage-auth__password\",attrs:{\"data-cy-external-storage-auth-dialog-password\":\"\",\"label\":_vm.t('files_external', 'Password'),\"placeholder\":_vm.t('files_external', 'Enter the storage password'),\"name\":\"password\",\"required\":\"\",\"value\":_vm.password},on:{\"update:value\":function($event){_vm.password=$event}}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CredentialsDialog.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CredentialsDialog.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./CredentialsDialog.vue?vue&type=template&id=196d9300\"\nimport script from \"./CredentialsDialog.vue?vue&type=script&lang=ts\"\nexport * from \"./CredentialsDialog.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"names":["defineComponent","name","components","NcDialog","NcNoteCard","NcTextField","NcPasswordField","setup","t","data","login","password","computed","dialogButtons","label","type","nativeType","_vm","this","_c","_self","_setupProxy","staticClass","attrs","on","$event","$emit","_v","ref"],"sourceRoot":""}
|
||||
{"version":3,"file":"7367-7367.js?v=2b31c145ec9d910815bf","mappings":"6IAAA,I,gEAMA,MCNiQ,GDMlPA,EAAAA,EAAAA,IAAgB,CAC3BC,KAAM,oBACNC,WAAY,CACRC,SAAQ,IACRC,WAAU,IACVC,YAAW,IACXC,gBAAeA,EAAAA,GAEnBC,MAAKA,KACM,CACHC,EAACA,EAAAA,IAGTC,KAAIA,KACO,CACHC,MAAO,GACPC,SAAU,KAGlBC,SAAU,CACNC,cAAaA,IACF,CAAC,CACAC,OAAON,EAAAA,EAAAA,GAAE,iBAAkB,WAC3BO,KAAM,UACNC,WAAY,cEZhC,GAXgB,E,SAAA,GACd,EFRW,WAAkB,IAAIC,EAAIC,KAAKC,EAAGF,EAAIG,MAAMD,GAAgC,OAAtBF,EAAIG,MAAMC,YAAmBF,EAAG,WAAW,CAACG,YAAY,wBAAwBC,MAAM,CAAC,QAAUN,EAAIJ,cAAc,yBAAyB,GAAG,gCAAgC,GAAG,UAAU,GAAG,KAAOI,EAAIT,EAAE,iBAAkB,uBAAuB,iBAAiB,IAAIgB,GAAG,CAAC,OAAS,SAASC,GAAQ,OAAOR,EAAIS,MAAM,QAAS,CAAChB,MAAOO,EAAIP,MAAOC,SAAUM,EAAIN,UAAU,EAAE,cAAc,SAASc,GAAQ,OAAOR,EAAIS,MAAM,QAAQ,IAAI,CAACP,EAAG,aAAa,CAACG,YAAY,gCAAgCC,MAAM,CAAC,KAAON,EAAIT,EAAE,iBAAkB,8EAA8E,KAAO,UAAUS,EAAIU,GAAG,KAAKR,EAAG,cAAc,CAACS,IAAI,QAAQN,YAAY,+BAA+BC,MAAM,CAAC,6CAA6C,GAAG,MAAQN,EAAIT,EAAE,iBAAkB,SAAS,YAAcS,EAAIT,EAAE,iBAAkB,2BAA2B,UAAY,IAAI,KAAO,QAAQ,SAAW,GAAG,MAAQS,EAAIP,OAAOc,GAAG,CAAC,eAAe,SAASC,GAAQR,EAAIP,MAAMe,CAAM,KAAKR,EAAIU,GAAG,KAAKR,EAAG,kBAAkB,CAACS,IAAI,WAAWN,YAAY,kCAAkCC,MAAM,CAAC,gDAAgD,GAAG,MAAQN,EAAIT,EAAE,iBAAkB,YAAY,YAAcS,EAAIT,EAAE,iBAAkB,8BAA8B,KAAO,WAAW,SAAW,GAAG,MAAQS,EAAIN,UAAUa,GAAG,CAAC,eAAe,SAASC,GAAQR,EAAIN,SAASc,CAAM,MAAM,EAC55C,EACsB,IESpB,EACA,KACA,KACA,M","sources":["webpack:///nextcloud/apps/files_external/src/views/CredentialsDialog.vue","webpack:///nextcloud/apps/files_external/src/views/CredentialsDialog.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files_external/src/views/CredentialsDialog.vue?7767"],"sourcesContent":["var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcDialog',{staticClass:\"external-storage-auth\",attrs:{\"buttons\":_vm.dialogButtons,\"close-on-click-outside\":\"\",\"data-cy-external-storage-auth\":\"\",\"is-form\":\"\",\"name\":_vm.t('files_external', 'Storage credentials'),\"out-transition\":\"\"},on:{\"submit\":function($event){return _vm.$emit('close', {login: _vm.login, password: _vm.password})},\"update:open\":function($event){return _vm.$emit('close')}}},[_c('NcNoteCard',{staticClass:\"external-storage-auth__header\",attrs:{\"text\":_vm.t('files_external', 'To access the storage, you need to provide the authentication credentials.'),\"type\":\"info\"}}),_vm._v(\" \"),_c('NcTextField',{ref:\"login\",staticClass:\"external-storage-auth__login\",attrs:{\"data-cy-external-storage-auth-dialog-login\":\"\",\"label\":_vm.t('files_external', 'Login'),\"placeholder\":_vm.t('files_external', 'Enter the storage login'),\"minlength\":\"2\",\"name\":\"login\",\"required\":\"\",\"value\":_vm.login},on:{\"update:value\":function($event){_vm.login=$event}}}),_vm._v(\" \"),_c('NcPasswordField',{ref:\"password\",staticClass:\"external-storage-auth__password\",attrs:{\"data-cy-external-storage-auth-dialog-password\":\"\",\"label\":_vm.t('files_external', 'Password'),\"placeholder\":_vm.t('files_external', 'Enter the storage password'),\"name\":\"password\",\"required\":\"\",\"value\":_vm.password},on:{\"update:value\":function($event){_vm.password=$event}}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CredentialsDialog.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CredentialsDialog.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./CredentialsDialog.vue?vue&type=template&id=196d9300\"\nimport script from \"./CredentialsDialog.vue?vue&type=script&lang=ts\"\nexport * from \"./CredentialsDialog.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"names":["defineComponent","name","components","NcDialog","NcNoteCard","NcTextField","NcPasswordField","setup","t","data","login","password","computed","dialogButtons","label","type","nativeType","_vm","this","_c","_self","_setupProxy","staticClass","attrs","on","$event","$emit","_v","ref"],"sourceRoot":""}
|
||||
1
dist/7367-7367.js.map.license
vendored
1
dist/7367-7367.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
7367-7367.js.license
|
||||
4
dist/7425-7425.js
vendored
4
dist/7425-7425.js
vendored
File diff suppressed because one or more lines are too long
15
dist/7425-7425.js.license
vendored
15
dist/7425-7425.js.license
vendored
|
|
@ -19,7 +19,6 @@ SPDX-FileCopyrightText: Evan You
|
|||
SPDX-FileCopyrightText: Eduardo San Martin Morote
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Austin Andrews
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
|
||||
|
|
@ -29,7 +28,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 7.4.47
|
||||
- license: Apache-2.0
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -38,13 +37,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -56,10 +55,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-api
|
||||
- version: 6.6.3
|
||||
- version: 6.6.4
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 11.3.0
|
||||
|
|
@ -74,10 +73,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- escape-html
|
||||
- version: 1.0.3
|
||||
|
|
|
|||
2
dist/7425-7425.js.map
vendored
2
dist/7425-7425.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/7425-7425.js.map.license
vendored
1
dist/7425-7425.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
7425-7425.js.license
|
||||
4
dist/7462-7462.js
vendored
4
dist/7462-7462.js
vendored
File diff suppressed because one or more lines are too long
112
dist/7462-7462.js.license
vendored
112
dist/7462-7462.js.license
vendored
|
|
@ -4,13 +4,17 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
SPDX-License-Identifier: BSD-3-Clause
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
SPDX-License-Identifier: (MPL-2.0 OR Apache-2.0)
|
||||
SPDX-FileCopyrightText: webfansplz
|
||||
SPDX-FileCopyrightText: string_decoder developers
|
||||
SPDX-FileCopyrightText: readable-stream developers
|
||||
SPDX-FileCopyrightText: qs developers
|
||||
SPDX-FileCopyrightText: perfect-debounce developers
|
||||
SPDX-FileCopyrightText: jden <jason@denizac.org>
|
||||
SPDX-FileCopyrightText: inherits developers
|
||||
SPDX-FileCopyrightText: hookable developers
|
||||
SPDX-FileCopyrightText: escape-html developers
|
||||
SPDX-FileCopyrightText: defunctzombie
|
||||
SPDX-FileCopyrightText: atomiks
|
||||
SPDX-FileCopyrightText: Varun A P
|
||||
SPDX-FileCopyrightText: Tobias Koppers @sokra
|
||||
SPDX-FileCopyrightText: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
|
||||
|
|
@ -34,7 +38,6 @@ SPDX-FileCopyrightText: Jordan Harband
|
|||
SPDX-FileCopyrightText: John Hiesey
|
||||
SPDX-FileCopyrightText: James Halliday
|
||||
SPDX-FileCopyrightText: Jacob Clevenger<https://github.com/wheatjs>
|
||||
SPDX-FileCopyrightText: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)
|
||||
SPDX-FileCopyrightText: Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)
|
||||
SPDX-FileCopyrightText: Guillaume Chau <guillaume.b.chau@gmail.com>
|
||||
SPDX-FileCopyrightText: Guillaume Chau
|
||||
|
|
@ -47,17 +50,23 @@ SPDX-FileCopyrightText: Eduardo San Martin Morote
|
|||
SPDX-FileCopyrightText: Dylan Piercey <pierceydylan@gmail.com>
|
||||
SPDX-FileCopyrightText: Dr.-Ing. Mario Heiderich, Cure53 <mario@cure53.de> (https://cure53.de/)
|
||||
SPDX-FileCopyrightText: David Clark
|
||||
SPDX-FileCopyrightText: Christoph Wurst
|
||||
SPDX-FileCopyrightText: Ben Drucker
|
||||
SPDX-FileCopyrightText: Arnout Kazemier
|
||||
SPDX-FileCopyrightText: Anthony Fu <https://github.com/antfu>
|
||||
SPDX-FileCopyrightText: Anthony Fu <anthonyfu117@hotmail.com>
|
||||
SPDX-FileCopyrightText: Amit Gupta (https://solothought.com)
|
||||
SPDX-FileCopyrightText: @nextcloud/dialogs developers
|
||||
|
||||
|
||||
This file is generated from multiple sources. Included packages:
|
||||
- @floating-ui/core
|
||||
- version: 1.7.5
|
||||
- license: MIT
|
||||
- @floating-ui/utils
|
||||
- version: 0.2.11
|
||||
- license: MIT
|
||||
- @nextcloud/auth
|
||||
- version: 2.5.3
|
||||
- version: 2.6.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/axios
|
||||
- version: 2.5.2
|
||||
|
|
@ -65,23 +74,50 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/browser-storage
|
||||
- version: 0.5.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/capabilities
|
||||
- version: 1.2.1
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 9.5.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @vue/devtools-shared
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vueuse/core
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- @vueuse/shared
|
||||
- version: 14.2.1
|
||||
- license: MIT
|
||||
- focus-trap
|
||||
- version: 8.0.0
|
||||
- license: MIT
|
||||
- perfect-debounce
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- @vue/devtools-kit
|
||||
- version: 8.0.6
|
||||
- license: MIT
|
||||
- vue-router
|
||||
- version: 5.0.2
|
||||
- license: MIT
|
||||
- @nextcloud/dialogs
|
||||
- version: 6.4.2
|
||||
- version: 7.3.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- semver
|
||||
- version: 7.7.3
|
||||
- version: 7.7.2
|
||||
- license: ISC
|
||||
- @nextcloud/event-bus
|
||||
- version: 3.3.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/initial-state
|
||||
- version: 2.2.0
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/l10n
|
||||
- version: 3.4.1
|
||||
|
|
@ -89,17 +125,17 @@ This file is generated from multiple sources. Included packages:
|
|||
- @nextcloud/logger
|
||||
- version: 3.0.3
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/paths
|
||||
- version: 3.0.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/router
|
||||
- version: 3.1.0
|
||||
- license: GPL-3.0-or-later
|
||||
- @nextcloud/vue
|
||||
- version: 8.36.0
|
||||
- version: 8.38.0
|
||||
- license: AGPL-3.0-or-later
|
||||
- @nodable/entities
|
||||
- version: 2.1.0
|
||||
- license: MIT
|
||||
- @vue/devtools-api
|
||||
- version: 6.6.3
|
||||
- version: 6.6.4
|
||||
- license: MIT
|
||||
- @vueuse/components
|
||||
- version: 11.3.0
|
||||
|
|
@ -125,8 +161,11 @@ This file is generated from multiple sources. Included packages:
|
|||
- base64-js
|
||||
- version: 1.5.1
|
||||
- license: MIT
|
||||
- birpc
|
||||
- version: 2.9.0
|
||||
- license: MIT
|
||||
- brace-expansion
|
||||
- version: 2.0.1
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- buffer
|
||||
- version: 5.7.1
|
||||
|
|
@ -153,13 +192,13 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 0.0.2
|
||||
- license: BSD-3-Clause
|
||||
- css-loader
|
||||
- version: 7.1.3
|
||||
- version: 7.1.2
|
||||
- license: MIT
|
||||
- define-data-property
|
||||
- version: 1.1.4
|
||||
- license: MIT
|
||||
- dompurify
|
||||
- version: 3.3.1
|
||||
- version: 3.4.2
|
||||
- license: (MPL-2.0 OR Apache-2.0)
|
||||
- dunder-proto
|
||||
- version: 1.0.1
|
||||
|
|
@ -179,6 +218,12 @@ This file is generated from multiple sources. Included packages:
|
|||
- events
|
||||
- version: 3.3.0
|
||||
- license: MIT
|
||||
- fast-xml-builder
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- fast-xml-parser
|
||||
- version: 5.7.3
|
||||
- license: MIT
|
||||
- floating-vue
|
||||
- version: 1.0.0-beta.19
|
||||
- license: MIT
|
||||
|
|
@ -212,6 +257,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- hasown
|
||||
- version: 2.0.2
|
||||
- license: MIT
|
||||
- hookable
|
||||
- version: 5.5.3
|
||||
- license: MIT
|
||||
- hot-patcher
|
||||
- version: 2.0.1
|
||||
- license: MIT
|
||||
|
|
@ -225,7 +273,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.0.4
|
||||
- license: ISC
|
||||
- is-arguments
|
||||
- version: 1.1.1
|
||||
- version: 1.2.0
|
||||
- license: MIT
|
||||
- is-buffer
|
||||
- version: 1.1.6
|
||||
|
|
@ -234,7 +282,10 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.2.7
|
||||
- license: MIT
|
||||
- is-generator-function
|
||||
- version: 1.0.10
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- is-regex
|
||||
- version: 1.2.1
|
||||
- license: MIT
|
||||
- is-typed-array
|
||||
- version: 1.1.15
|
||||
|
|
@ -248,9 +299,6 @@ This file is generated from multiple sources. Included packages:
|
|||
- md5
|
||||
- version: 2.3.0
|
||||
- license: BSD-3-Clause
|
||||
- minimatch
|
||||
- version: 9.0.5
|
||||
- license: ISC
|
||||
- nested-property
|
||||
- version: 4.0.0
|
||||
- license: MIT
|
||||
|
|
@ -260,6 +308,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- object-inspect
|
||||
- version: 1.13.4
|
||||
- license: MIT
|
||||
- path-expression-matcher
|
||||
- version: 1.5.0
|
||||
- license: MIT
|
||||
- path-posix
|
||||
- version: 1.0.0
|
||||
- license: ISC
|
||||
|
|
@ -267,7 +318,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 2.3.1
|
||||
- license: MIT
|
||||
- possible-typed-array-names
|
||||
- version: 1.0.0
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- process
|
||||
- version: 0.11.10
|
||||
|
|
@ -276,7 +327,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 1.4.1
|
||||
- license: MIT
|
||||
- qs
|
||||
- version: 6.13.0
|
||||
- version: 6.14.1
|
||||
- license: BSD-3-Clause
|
||||
- querystringify
|
||||
- version: 2.2.0
|
||||
|
|
@ -287,6 +338,9 @@ This file is generated from multiple sources. Included packages:
|
|||
- safe-buffer
|
||||
- version: 5.2.1
|
||||
- license: MIT
|
||||
- safe-regex-test
|
||||
- version: 1.1.0
|
||||
- license: MIT
|
||||
- set-function-length
|
||||
- version: 1.2.2
|
||||
- license: MIT
|
||||
|
|
@ -336,10 +390,7 @@ This file is generated from multiple sources. Included packages:
|
|||
- version: 6.0.0
|
||||
- license: MIT
|
||||
- unist-util-visit-parents
|
||||
- version: 6.0.1
|
||||
- license: MIT
|
||||
- unist-util-visit
|
||||
- version: 5.1.0
|
||||
- version: 6.0.2
|
||||
- license: MIT
|
||||
- url-join
|
||||
- version: 5.0.0
|
||||
|
|
@ -368,11 +419,8 @@ This file is generated from multiple sources. Included packages:
|
|||
- vue
|
||||
- version: 2.7.16
|
||||
- license: MIT
|
||||
- fast-xml-parser
|
||||
- version: 5.3.4
|
||||
- license: MIT
|
||||
- webdav
|
||||
- version: 5.9.0
|
||||
- version: 5.10.0
|
||||
- license: MIT
|
||||
- which-typed-array
|
||||
- version: 1.1.19
|
||||
|
|
|
|||
2
dist/7462-7462.js.map
vendored
2
dist/7462-7462.js.map
vendored
File diff suppressed because one or more lines are too long
1
dist/7462-7462.js.map.license
vendored
1
dist/7462-7462.js.map.license
vendored
|
|
@ -1 +0,0 @@
|
|||
7462-7462.js.license
|
||||
2
dist/7859-7859.js
vendored
Normal file
2
dist/7859-7859.js
vendored
Normal file
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
Loading…
Reference in a new issue