diff --git a/apps/settings/src/views/UserManagementNavigation.vue b/apps/settings/src/views/UserManagementNavigation.vue
index 0d555e3afdc..e934e5a6b96 100644
--- a/apps/settings/src/views/UserManagementNavigation.vue
+++ b/apps/settings/src/views/UserManagementNavigation.vue
@@ -19,6 +19,7 @@
>()
const searchInput = ref('')
const commitSearch = debounce((query: string) => {
store.commit('setSearchQuery', query)
@@ -156,6 +158,30 @@ function clearSearch() {
}
onBeforeUnmount(() => commitSearch.clear())
+/**
+ * Intercept Ctrl+F (Cmd+F on macOS) so it focuses the local search input
+ * instead of opening the global unified search. We always stop propagation
+ * to prevent the global handler from firing; preventDefault is skipped when
+ * the field already has focus so a second Ctrl+F opens the browser's native
+ * find-in-page dialog as an escape hatch.
+ *
+ * @param event - The keydown event
+ */
+function onKeyDown(event: KeyboardEvent) {
+ if (!(event.ctrlKey || event.metaKey) || event.key !== 'f') {
+ return
+ }
+ event.stopImmediatePropagation()
+ const fieldEl = (searchField.value?.$el as HTMLElement | undefined) ?? null
+ if (fieldEl?.contains(document.activeElement)) {
+ return
+ }
+ event.preventDefault()
+ searchField.value?.focus()
+}
+onMounted(() => window.addEventListener('keydown', onKeyDown, { capture: true }))
+onBeforeUnmount(() => window.removeEventListener('keydown', onKeyDown, { capture: true }))
+
/** State of the 'new-account' dialog */
const isDialogOpen = ref(false)
diff --git a/dist/core-public_share_auth.js b/dist/core-public_share_auth.js
index e20ae00fbc0..7af982b0e96 100644
--- a/dist/core-public_share_auth.js
+++ b/dist/core-public_share_auth.js
@@ -1,2 +1,852 @@
-(()=>{"use strict";var t,e,n,o={28554(t,e,n){var o=n(21777),s=n(85471),r=n(81222),a=n(53334),i=n(32505),l=n(950),c=n(74715),d=n(61744),u=n(78928),p=n(86162),h=n(57908),m=n(64426),w=n(59915),N=n(56587),v=n(15502),f=n(71711),g=n(25878),A=n(75017),y=n(47611),b=n(10363),_=n(32999),P=n(48283),x=n(54048),T=n(8976),S=n(27345),k=n(86226),C=n(49833),R=n(37024),B=n(62306),q=n(542),F=n(31744),O=n(93651),L=n(15807),I=n(35056),$=n(50017),E=n(60258),G=n(51122),D=n(66865),M=n(17067),j=n(2302),X=n(52631),z=n(87450),K=n(24426),V=n(20948),H=n(69075),J=n(17671),U=n(8852),Y=n(50299),Q=n(90429),W=n(64569),Z=n(29982),tt=n(44025),et=n(35048),nt=n(48198),ot=n(96573),st=n(20959),rt=n(83194),at=n(91849),it=n(42507),lt=n(31241),ct=n(85646),dt=n(71565),ut=n(11264),pt=n(17848),ht=n(99925),mt=n(66768),wt=n(16704),Nt=n(40020),vt=n(51550),ft=n(91624),gt=n(6670),At=n(48191),yt=n(21541),bt=n(56570),_t=n(77128),Pt=n(88289),xt=n(83947),Tt=n(371),St=n(3274),kt=n(71912),Ct=n(35290),Rt=n(1938),Bt=n(1357),qt=n(17370),Ft=n(36079),Ot=n(69674),Lt=(n(19051),n(64789),n(52781),n(3168),n(39156)),It=n(53160),$t=n(14762),Et=(n(61338),n(71639)),Gt=n(72223),Dt=n(9773),Mt=n(27971),jt=n(25514),Xt=n(6330),zt=n(88381),Kt=n(8256),Vt=n(64289),Ht=n(37356),Jt=n(8818),Ut=n(23610),Yt=(n(55581),n(94205),n(95462),n(23020),n(53429),n(23739),n(39160),n(29928),n(64660),n(18547),n(42892)),Qt=n(69885),Wt=(n(59656),n(75105),n(92471),n(16406),n(2508));l.N,c.N,d.A,u.N,p.N,h.A,m.N,w.A,v.A,f.A,g.N,N.N,A.N,y.A,b.A,_.N,P.N,x.A,T.N,S.A,k.N,C.N,R.N,B.N,q.A,F.N,O.N,L.N,L.N,I.N,$.N,E.A,G.N,D.A,M.N,Ot.N,j.N,X.N,z.N,K.N,V.N,H.N,J.N,U.N,Y.N,Q.N,W.N,Z.N,tt.N,et.default,nt.A,ot.N,st.N,rt.A,at.N,it.A,lt.N,ct.N,dt.N,ut.N,pt.N,ht.N,mt.A,wt.N,Nt.N,vt.N,ft.N,gt.N,At.N,yt.N,bt.N,_t.N,Pt.A,Ft.N,xt.A,Tt.A,St.N,kt.N,Ct.N,Rt.N,Bt.N,qt.N,Ot.a,Lt.N,Et.N,It.N,Gt.N,Dt.N,Mt.N,jt.N,Xt.N,zt.N,$t.N,Kt.N,Vt.N,Ht.N,Jt.N,Ut.A,Symbol.toStringTag,Yt.A,Qt.A,Wt.yw,Symbol.toStringTag;var Zt=n(74095),te=n(57268),ee=n(16044);const ne=(0,s.pM)({__name:"PublicShareAuth",setup(t){const e=(0,r.C)("core","publicShareAuth"),n=(0,o.do)(),l=(0,i.G)(),{shareType:c,invalidPassword:d,canResendPassword:u}=e,p=!!e.showPasswordReset,h=(0,s.KR)(e.showPasswordReset??!1),m=(0,s.KR)(""),w=(0,s.KR)("");return(0,s.sV)(()=>{const t=(0,s.nI)();t&&t.proxy.$el?.classList.add("guest-box")}),{__sfc:!0,publicShareAuth:e,requestToken:n,sharingToken:l,shareType:c,invalidPassword:d,canResendPassword:u,isPasswordResetProcessed:p,showPasswordReset:h,password:m,email:w,t:a.t,NcTextField:$t.N,NcButton:Zt.A,NcFormBox:te.A,NcGuestContent:mt.A,NcNoteCard:Tt.A,NcPasswordField:ee.A}}});var oe=n(85072),se=n.n(oe),re=n(97825),ae=n.n(re),ie=n(77659),le=n.n(ie),ce=n(55056),de=n.n(ce),ue=n(10540),pe=n.n(ue),he=n(41113),me=n.n(he),we=n(76992),Ne={};Ne.styleTagTransform=me(),Ne.setAttributes=de(),Ne.insert=le().bind(null,"head"),Ne.domAPI=ae(),Ne.insertStyleElement=pe(),se()(we.A,Ne);const ve=we.A&&we.A.locals?we.A.locals:void 0,fe=(0,n(14486).A)(ne,function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.NcGuestContent,{class:t.$style.publicShareAuth},[e("h2",[t._v(t._s(n.t("core","This share is password-protected")))]),t._v(" "),e("form",{directives:[{name:"show",rawName:"v-show",value:!n.showPasswordReset,expression:"!showPasswordReset"}],class:t.$style.publicShareAuth__form,attrs:{method:"POST"}},[n.invalidPassword?e(n.NcNoteCard,{attrs:{type:"error"}},[t._v("\n\t\t\t"+t._s(n.t("core","The password is wrong or expired. Please try again or request a new one."))+"\n\t\t")]):t._e(),t._v(" "),e(n.NcPasswordField,{attrs:{label:n.t("core","Password"),autofocus:"",autocomplete:"new-password",autocapitalize:"off",spellcheck:"false",name:"password"},model:{value:n.password,callback:function(t){n.password=t},expression:"password"}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"requesttoken"},domProps:{value:n.requestToken}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"sharingToken"},domProps:{value:n.sharingToken}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"sharingType"},domProps:{value:n.shareType}}),t._v(" "),e(n.NcButton,{attrs:{type:"submit",variant:"primary",wide:""}},[t._v("\n\t\t\t"+t._s(n.t("core","Submit"))+"\n\t\t")])],1),t._v(" "),n.showPasswordReset?e("form",{class:t.$style.publicShareAuth__form,attrs:{method:"POST"}},[e(n.NcNoteCard,{attrs:{type:"info"}},[t._v("\n\t\t\t"+t._s(n.isPasswordResetProcessed?n.t("core","If the email address was correct then you will receive an email with the password."):n.t("core","Please type in your email address to request a temporary password"))+"\n\t\t")]),t._v(" "),e(n.NcTextField,{attrs:{type:"email",name:"identityToken",label:n.t("core","Email address")},model:{value:n.email,callback:function(t){n.email=t},expression:"email"}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"requesttoken"},domProps:{value:n.requestToken}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"sharingToken"},domProps:{value:n.sharingToken}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"sharingType"},domProps:{value:n.shareType}}),t._v(" "),e("input",{attrs:{type:"hidden",name:"passwordRequest",value:""}}),t._v(" "),e(n.NcFormBox,{attrs:{row:""}},[e(n.NcButton,{attrs:{wide:""},on:{click:function(t){n.showPasswordReset=!1}}},[t._v("\n\t\t\t\t"+t._s(n.t("core","Back"))+"\n\t\t\t")]),t._v(" "),e(n.NcButton,{attrs:{type:"submit",variant:"primary",wide:""}},[t._v("\n\t\t\t\t"+t._s(n.t("core","Request password"))+"\n\t\t\t")])],1)],1):t._e(),t._v(" "),n.canResendPassword&&!n.showPasswordReset?e(n.NcButton,{class:t.$style.publicShareAuth__forgotPasswordButton,attrs:{wide:""},on:{click:function(t){n.showPasswordReset=!0}}},[t._v("\n\t\t"+t._s(n.t("core","Forgot password"))+"\n\t")]):t._e()],1)},[],!1,function(t){this.$style=ve.locals||ve},null,null).exports;n.nc=(0,o.aV)(),(new(s.Ay.extend(fe))).$mount("#core-public-share-auth")},76992(t,e,n){n.d(e,{A:()=>i});var o=n(71354),s=n.n(o),r=n(76314),a=n.n(r)()(s());a.push([t.id,"\n._publicShareAuth_S4vsJ {\n\tmax-width: 400px !important;\n}\n._publicShareAuth__form_kYSqz {\n\tdisplay: flex;\n\tflex-direction: column;\n\tgap: calc(2 * var(--default-grid-baseline));\n}\n._publicShareAuth__forgotPasswordButton_tKti_ {\n\tmargin-top: calc(3 * var(--default-grid-baseline));\n}\n","",{version:3,sources:["webpack://./core/src/views/PublicShareAuth.vue"],names:[],mappings:";AAsHA;CACA,2BAAA;AACA;AAEA;CACA,aAAA;CACA,sBAAA;CACA,2CAAA;AACA;AAEA;CACA,kDAAA;AACA",sourcesContent:['\x3c!--\n - SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n --\x3e\n\n\\n\\n\\n\\t\\n\\t\\t{{ t('core', 'This share is password-protected') }}
\\n\\t\\t\\n\\n\\t\\t\\n\\n\\t\\t\\n\\t\\t\\n\\t\\t\\t{{ t('core', 'Forgot password') }}\\n\\t\\t\\n\\t\\n\\n\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\n___CSS_LOADER_EXPORT___.locals = {\n\t\"publicShareAuth\": `_publicShareAuth_S4vsJ`,\n\t\"publicShareAuth__form\": `_publicShareAuth__form_kYSqz`,\n\t\"publicShareAuth__forgotPasswordButton\": `_publicShareAuth__forgotPasswordButton_tKti_`\n};\nexport default ___CSS_LOADER_EXPORT___;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"5862\":\"580b9c2e231a9169a12f\",\"6798\":\"1a6cf42d93801a926a3d\",\"7471\":\"b4ac70873a3ab192efd0\"}[chunkId] + \"\";\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 1537;","var scriptUrl;\nif (globalThis.importScripts) scriptUrl = globalThis.location + \"\";\nvar document = globalThis.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/^blob:/, \"\").replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = (typeof document !== 'undefined' && document.baseURI) || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t1537: 0,\n\t7471: 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunknextcloud_ui_legacy\"] = globalThis[\"webpackChunknextcloud_ui_legacy\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [4208], () => (__webpack_require__(28554)))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","N","Symbol","toStringTag","_defineComponent","__name","setup","__props","publicShareAuth","loadState","requestToken","getRequestToken","sharingToken","getSharingToken","shareType","invalidPassword","canResendPassword","isPasswordResetProcessed","showPasswordReset","ref","password","email","onMounted","instance","getCurrentInstance","proxy","$el","classList","add","__sfc","t","NcTextField","NcButton","NcFormBox","NcGuestContent","NcNoteCard","NcPasswordField","options","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","undefined","_vm","this","_c","_self","_setup","_setupProxy","class","$style","_v","_s","directives","name","rawName","value","expression","publicShareAuth__form","attrs","_e","model","callback","$$v","domProps","on","$event","publicShareAuth__forgotPasswordButton","context","__webpack_nonce__","getCSPNonce","Vue","extend","PublicShareAuth","$mount","___CSS_LOADER_EXPORT___","push","module","id","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","exports","loaded","__webpack_modules__","call","m","O","result","chunkIds","fn","priority","notFulfilled","Infinity","i","length","fulfilled","j","Object","keys","every","key","splice","r","n","getter","__esModule","d","a","definition","o","defineProperty","enumerable","get","f","e","chunkId","Promise","all","reduce","promises","u","obj","prop","prototype","hasOwnProperty","l","url","done","script","needAttach","scripts","document","getElementsByTagName","s","getAttribute","createElement","charset","nc","setAttribute","src","onScriptComplete","prev","event","onerror","onload","clearTimeout","timeout","doneFns","parentNode","removeChild","forEach","setTimeout","bind","type","target","head","appendChild","nmd","paths","children","scriptUrl","globalThis","importScripts","location","currentScript","tagName","toUpperCase","test","Error","replace","p","b","baseURI","self","href","installedChunks","installedChunkData","promise","resolve","reject","error","errorType","realSrc","message","request","webpackJsonpCallback","parentChunkLoadingFunction","data","moreModules","runtime","some","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"file":"core-public_share_auth.js?v=e5e4d85453fcec354ae2","mappings":";;;;;;;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;ACxDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;ACvJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AACA;AACA;AACA;AAUA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;AAkBA;AACA;;;;;;;;;;;;;;;ACxEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AEAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;ACnCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AC3BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACRA;AACA;AACA;AACA;AACA;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACVA;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACxCA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;ACrFA;;;;;AEAA;AACA;AACA;AACA;AACA","sources":["webpack:///nextcloud/core/src/public-share-auth.ts","webpack:///nextcloud/core/src/views/PublicShareAuth.vue?vue&type=script&setup=true&lang=ts","webpack:///nextcloud/core/src/views/PublicShareAuth.vue?vue&type=template&id=7f1717b0","webpack:///nextcloud/core/src/views/PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css","webpack://nextcloud/./core/src/views/PublicShareAuth.vue?2d08","webpack:///nextcloud/core/src/views/PublicShareAuth.vue","webpack://nextcloud/./core/src/views/PublicShareAuth.vue?d4c2","webpack://nextcloud/./core/src/views/PublicShareAuth.vue?903d","webpack://nextcloud/./core/src/views/PublicShareAuth.vue?01d7","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/harmony module decorator","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/before-startup","webpack:///nextcloud/webpack/startup","webpack:///nextcloud/webpack/after-startup"],"sourcesContent":["/*!\n * SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\nimport { getCSPNonce } from '@nextcloud/auth';\nimport Vue from 'vue';\nimport PublicShareAuth from \"./views/PublicShareAuth.vue\";\n__webpack_nonce__ = getCSPNonce();\nconst View = Vue.extend(PublicShareAuth);\nconst app = new View();\napp.$mount('#core-public-share-auth');","import { defineComponent as _defineComponent } from 'vue';\nimport { getRequestToken } from '@nextcloud/auth';\nimport { loadState } from '@nextcloud/initial-state';\nimport { t } from '@nextcloud/l10n';\nimport { getSharingToken } from '@nextcloud/sharing/public';\nimport { NcTextField } from '@nextcloud/vue';\nimport { getCurrentInstance, onMounted, ref } from 'vue';\nimport NcButton from '@nextcloud/vue/components/NcButton';\nimport NcFormBox from '@nextcloud/vue/components/NcFormBox';\nimport NcGuestContent from '@nextcloud/vue/components/NcGuestContent';\nimport NcNoteCard from '@nextcloud/vue/components/NcNoteCard';\nimport NcPasswordField from '@nextcloud/vue/components/NcPasswordField';\nexport default /*#__PURE__*/_defineComponent({\n __name: 'PublicShareAuth',\n setup(__props) {\n const publicShareAuth = loadState('core', 'publicShareAuth');\n const requestToken = getRequestToken();\n const sharingToken = getSharingToken();\n const {\n shareType,\n invalidPassword,\n canResendPassword\n } = publicShareAuth;\n const isPasswordResetProcessed = !!publicShareAuth.showPasswordReset;\n const showPasswordReset = ref(publicShareAuth.showPasswordReset ?? false);\n const password = ref('');\n const email = ref('');\n // TODO: Remove when using Vue 3\n onMounted(() => {\n const instance = getCurrentInstance();\n if (instance) {\n // @ts-expect-error Vue internals\n instance.proxy.$el?.classList.add('guest-box');\n }\n });\n return {\n __sfc: true,\n publicShareAuth,\n requestToken,\n sharingToken,\n shareType,\n invalidPassword,\n canResendPassword,\n isPasswordResetProcessed,\n showPasswordReset,\n password,\n email,\n t,\n NcTextField,\n NcButton,\n NcFormBox,\n NcGuestContent,\n NcNoteCard,\n NcPasswordField\n };\n }\n});","var render = function render() {\n var _vm = this,\n _c = _vm._self._c,\n _setup = _vm._self._setupProxy;\n return _c(_setup.NcGuestContent, {\n class: _vm.$style.publicShareAuth\n }, [_c(\"h2\", [_vm._v(_vm._s(_setup.t(\"core\", \"This share is password-protected\")))]), _vm._v(\" \"), _c(\"form\", {\n directives: [{\n name: \"show\",\n rawName: \"v-show\",\n value: !_setup.showPasswordReset,\n expression: \"!showPasswordReset\"\n }],\n class: _vm.$style.publicShareAuth__form,\n attrs: {\n method: \"POST\"\n }\n }, [_setup.invalidPassword ? _c(_setup.NcNoteCard, {\n attrs: {\n type: \"error\"\n }\n }, [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_setup.t(\"core\", \"The password is wrong or expired. Please try again or request a new one.\")) + \"\\n\\t\\t\")]) : _vm._e(), _vm._v(\" \"), _c(_setup.NcPasswordField, {\n attrs: {\n label: _setup.t(\"core\", \"Password\"),\n autofocus: \"\",\n autocomplete: \"new-password\",\n autocapitalize: \"off\",\n spellcheck: \"false\",\n name: \"password\"\n },\n model: {\n value: _setup.password,\n callback: function ($$v) {\n _setup.password = $$v;\n },\n expression: \"password\"\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"requesttoken\"\n },\n domProps: {\n value: _setup.requestToken\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"sharingToken\"\n },\n domProps: {\n value: _setup.sharingToken\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"sharingType\"\n },\n domProps: {\n value: _setup.shareType\n }\n }), _vm._v(\" \"), _c(_setup.NcButton, {\n attrs: {\n type: \"submit\",\n variant: \"primary\",\n wide: \"\"\n }\n }, [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_setup.t(\"core\", \"Submit\")) + \"\\n\\t\\t\")])], 1), _vm._v(\" \"), _setup.showPasswordReset ? _c(\"form\", {\n class: _vm.$style.publicShareAuth__form,\n attrs: {\n method: \"POST\"\n }\n }, [_c(_setup.NcNoteCard, {\n attrs: {\n type: \"info\"\n }\n }, [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_setup.isPasswordResetProcessed ? _setup.t(\"core\", \"If the email address was correct then you will receive an email with the password.\") : _setup.t(\"core\", \"Please type in your email address to request a temporary password\")) + \"\\n\\t\\t\")]), _vm._v(\" \"), _c(_setup.NcTextField, {\n attrs: {\n type: \"email\",\n name: \"identityToken\",\n label: _setup.t(\"core\", \"Email address\")\n },\n model: {\n value: _setup.email,\n callback: function ($$v) {\n _setup.email = $$v;\n },\n expression: \"email\"\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"requesttoken\"\n },\n domProps: {\n value: _setup.requestToken\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"sharingToken\"\n },\n domProps: {\n value: _setup.sharingToken\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"sharingType\"\n },\n domProps: {\n value: _setup.shareType\n }\n }), _vm._v(\" \"), _c(\"input\", {\n attrs: {\n type: \"hidden\",\n name: \"passwordRequest\",\n value: \"\"\n }\n }), _vm._v(\" \"), _c(_setup.NcFormBox, {\n attrs: {\n row: \"\"\n }\n }, [_c(_setup.NcButton, {\n attrs: {\n wide: \"\"\n },\n on: {\n click: function ($event) {\n _setup.showPasswordReset = false;\n }\n }\n }, [_vm._v(\"\\n\\t\\t\\t\\t\" + _vm._s(_setup.t(\"core\", \"Back\")) + \"\\n\\t\\t\\t\")]), _vm._v(\" \"), _c(_setup.NcButton, {\n attrs: {\n type: \"submit\",\n variant: \"primary\",\n wide: \"\"\n }\n }, [_vm._v(\"\\n\\t\\t\\t\\t\" + _vm._s(_setup.t(\"core\", \"Request password\")) + \"\\n\\t\\t\\t\")])], 1)], 1) : _vm._e(), _vm._v(\" \"), _setup.canResendPassword && !_setup.showPasswordReset ? _c(_setup.NcButton, {\n class: _vm.$style.publicShareAuth__forgotPasswordButton,\n attrs: {\n wide: \"\"\n },\n on: {\n click: function ($event) {\n _setup.showPasswordReset = true;\n }\n }\n }, [_vm._v(\"\\n\\t\\t\" + _vm._s(_setup.t(\"core\", \"Forgot password\")) + \"\\n\\t\")]) : _vm._e()], 1);\n};\nvar staticRenderFns = [];\nrender._withStripped = true;\nexport { render, staticRenderFns };","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `\n._publicShareAuth_S4vsJ {\n\tmax-width: 400px !important;\n}\n._publicShareAuth__form_kYSqz {\n\tdisplay: flex;\n\tflex-direction: column;\n\tgap: calc(2 * var(--default-grid-baseline));\n}\n._publicShareAuth__forgotPasswordButton_tKti_ {\n\tmargin-top: calc(3 * var(--default-grid-baseline));\n}\n`, \"\"]);\n// Exports\n___CSS_LOADER_EXPORT___.locals = {\n\t\"publicShareAuth\": `_publicShareAuth_S4vsJ`,\n\t\"publicShareAuth__form\": `_publicShareAuth__form_kYSqz`,\n\t\"publicShareAuth__forgotPasswordButton\": `_publicShareAuth__forgotPasswordButton_tKti_`\n};\nexport default ___CSS_LOADER_EXPORT___;\n","\n import API from \"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-3.use[1]!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn.bind(null, \"head\");\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-3.use[1]!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./PublicShareAuth.vue?vue&type=template&id=7f1717b0\"\nimport script from \"./PublicShareAuth.vue?vue&type=script&setup=true&lang=ts\"\nexport * from \"./PublicShareAuth.vue?vue&type=script&setup=true&lang=ts\"\nimport style0 from \"./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\"\n\nvar cssModules = {}\nvar disposed = false\n\nfunction injectStyles (context) {\n if (disposed) return\n \n cssModules[\"$style\"] = (style0.locals || style0)\n Object.defineProperty(this, \"$style\", {\n configurable: true,\n get: function () {\n return cssModules[\"$style\"]\n }\n })\n \n}\n\n\n module.hot && module.hot.dispose(function (data) {\n disposed = true\n })\n\n\n\n module.hot && module.hot.accept([\"./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\"], function () {\n var oldLocals = cssModules[\"$style\"]\n if (oldLocals) {\n var newLocals = require(\"./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\")\n if (JSON.stringify(newLocals) !== JSON.stringify(oldLocals)) {\n cssModules[\"$style\"] = newLocals\n require(\"/home/peter/nextcloud-docker-dev/workspace/server/build/frontend-legacy/node_modules/vue-hot-reload-api/dist/index.js\").rerender(\"7f1717b0\")\n }\n }\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 injectStyles,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/peter/nextcloud-docker-dev/workspace/server/build/frontend-legacy/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('7f1717b0')) {\n api.createRecord('7f1717b0', component.options)\n } else {\n api.reload('7f1717b0', component.options)\n }\n module.hot.accept(\"./PublicShareAuth.vue?vue&type=template&id=7f1717b0\", function () {\n api.rerender('7f1717b0', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"core/src/views/PublicShareAuth.vue\"\nexport default component.exports","import mod from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-6.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=script&setup=true&lang=ts\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-6.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=script&setup=true&lang=ts\"","export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=template&id=7f1717b0\"","export { default } from \"-!../../../node_modules/style-loader/dist/cjs.js!../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-3.use[1]!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\"; export * from \"-!../../../node_modules/style-loader/dist/cjs.js!../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-3.use[1]!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PublicShareAuth.vue?vue&type=style&index=0&id=7f1717b0&module=true&lang=css\"","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\tif (!(moduleId in __webpack_modules__)) {\n\t\tdelete __webpack_module_cache__[moduleId];\n\t\tvar e = new Error(\"Cannot find module '\" + moduleId + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"node_modules_nextcloud_vue_dist_Components_NcColorPicker_mjs\":\"59e6413dedbe01cca484\",\"data_image_svg_xml_3c_21--_20-_20SPDX-FileCopyrightText_202020_20Google_20Inc_20-_20SPDX-Lice-cc29b1\":\"21fc91c563f5cd8d04c3\",\"node_modules_rehype-highlight_index_js\":\"625f8818e33c457c3744\"}[chunkId] + \"\";\n};","__webpack_require__.hmd = (module) => {\n\tmodule = Object.create(module);\n\tif (!module.children) module.children = [];\n\tObject.defineProperty(module, 'exports', {\n\t\tenumerable: true,\n\t\tset: () => {\n\t\t\tthrow new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);\n\t\t}\n\t});\n\treturn module;\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud-ui-legacy:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key, chunkId) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => (fn(event)));\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","var scriptUrl;\nif (globalThis.importScripts) scriptUrl = globalThis.location + \"\";\nvar document = globalThis.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/^blob:/, \"\").replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = (typeof document !== 'undefined' && document.baseURI) || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"core-public_share_auth\": 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunknextcloud_ui_legacy\"] = globalThis[\"webpackChunknextcloud_ui_legacy\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"core-common\"], () => (__webpack_require__(\"./core/src/public-share-auth.ts\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":[],"sourceRoot":""}
\ No newline at end of file