@opencloud-eu/web-pkg 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2991,6 +2991,8 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
2991
2991
  currentSpace: import('vue').Ref<SpaceResource, SpaceResource>;
2992
2992
  personalSpace: import('vue').ComputedRef<SpaceResource>;
2993
2993
  defaultSpaceImageBlobURL: import('vue').Ref<string, string>;
2994
+ imagesLoading: import('vue').Ref<string[], string[]>;
2995
+ readmesLoading: import('vue').Ref<string[], string[]>;
2994
2996
  getSpace: (id: string) => SpaceResource;
2995
2997
  createShareSpace: ({ driveAliasPrefix, id, shareName }: {
2996
2998
  driveAliasPrefix: "share" | "ocm-share";
@@ -3027,7 +3029,13 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
3027
3029
  graphClient: Graph;
3028
3030
  signal?: AbortSignal;
3029
3031
  }) => Promise<void>;
3030
- }, "spaces" | "spacesInitialized" | "mountPointsInitialized" | "spacesLoading" | "currentSpace" | "defaultSpaceImageBlobURL">, Pick<{
3032
+ addToImagesLoading: (id: string) => void;
3033
+ removeFromImagesLoading: (id: string) => void;
3034
+ purgeImagesLoading: () => void;
3035
+ addToReadmesLoading: (id: string) => void;
3036
+ removeFromReadmesLoading: (id: string) => void;
3037
+ purgeReadmesLoading: () => void;
3038
+ }, "spaces" | "spacesInitialized" | "mountPointsInitialized" | "spacesLoading" | "currentSpace" | "defaultSpaceImageBlobURL" | "imagesLoading" | "readmesLoading">, Pick<{
3031
3039
  spaces: import('vue').Ref<{
3032
3040
  description: string;
3033
3041
  disabled: boolean;
@@ -6009,6 +6017,8 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
6009
6017
  currentSpace: import('vue').Ref<SpaceResource, SpaceResource>;
6010
6018
  personalSpace: import('vue').ComputedRef<SpaceResource>;
6011
6019
  defaultSpaceImageBlobURL: import('vue').Ref<string, string>;
6020
+ imagesLoading: import('vue').Ref<string[], string[]>;
6021
+ readmesLoading: import('vue').Ref<string[], string[]>;
6012
6022
  getSpace: (id: string) => SpaceResource;
6013
6023
  createShareSpace: ({ driveAliasPrefix, id, shareName }: {
6014
6024
  driveAliasPrefix: "share" | "ocm-share";
@@ -6045,6 +6055,12 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
6045
6055
  graphClient: Graph;
6046
6056
  signal?: AbortSignal;
6047
6057
  }) => Promise<void>;
6058
+ addToImagesLoading: (id: string) => void;
6059
+ removeFromImagesLoading: (id: string) => void;
6060
+ purgeImagesLoading: () => void;
6061
+ addToReadmesLoading: (id: string) => void;
6062
+ removeFromReadmesLoading: (id: string) => void;
6063
+ purgeReadmesLoading: () => void;
6048
6064
  }, "personalSpace">, Pick<{
6049
6065
  spaces: import('vue').Ref<{
6050
6066
  description: string;
@@ -9027,6 +9043,8 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
9027
9043
  currentSpace: import('vue').Ref<SpaceResource, SpaceResource>;
9028
9044
  personalSpace: import('vue').ComputedRef<SpaceResource>;
9029
9045
  defaultSpaceImageBlobURL: import('vue').Ref<string, string>;
9046
+ imagesLoading: import('vue').Ref<string[], string[]>;
9047
+ readmesLoading: import('vue').Ref<string[], string[]>;
9030
9048
  getSpace: (id: string) => SpaceResource;
9031
9049
  createShareSpace: ({ driveAliasPrefix, id, shareName }: {
9032
9050
  driveAliasPrefix: "share" | "ocm-share";
@@ -9063,5 +9081,11 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
9063
9081
  graphClient: Graph;
9064
9082
  signal?: AbortSignal;
9065
9083
  }) => Promise<void>;
9066
- }, "getSpace" | "createShareSpace" | "setSpacesInitialized" | "setMountPointsInitialized" | "setSpacesLoading" | "setCurrentSpace" | "setDefaultSpaceImageBlobURL" | "getSpaceMembers" | "getMountPointForSpace" | "addSpaces" | "removeSpace" | "upsertSpace" | "updateSpaceField" | "loadSpaces" | "loadMountPoints" | "reloadProjectSpaces">>;
9084
+ addToImagesLoading: (id: string) => void;
9085
+ removeFromImagesLoading: (id: string) => void;
9086
+ purgeImagesLoading: () => void;
9087
+ addToReadmesLoading: (id: string) => void;
9088
+ removeFromReadmesLoading: (id: string) => void;
9089
+ purgeReadmesLoading: () => void;
9090
+ }, "getSpace" | "createShareSpace" | "setSpacesInitialized" | "setMountPointsInitialized" | "setSpacesLoading" | "setCurrentSpace" | "setDefaultSpaceImageBlobURL" | "getSpaceMembers" | "getMountPointForSpace" | "addSpaces" | "removeSpace" | "upsertSpace" | "updateSpaceField" | "loadSpaces" | "loadMountPoints" | "reloadProjectSpaces" | "addToImagesLoading" | "removeFromImagesLoading" | "purgeImagesLoading" | "addToReadmesLoading" | "removeFromReadmesLoading" | "purgeReadmesLoading">>;
9067
9091
  export type SpacesStore = ReturnType<typeof useSpacesStore>;
@@ -3,6 +3,7 @@ export * from './folderLink';
3
3
  export * from './resource';
4
4
  export * from './router';
5
5
  export * from './share';
6
+ export * from './spaces';
6
7
  export * from './ui';
7
8
  export * from './breadcrumbs';
8
9
  export * from './clipboardActions';
@@ -0,0 +1 @@
1
+ export * from './permissions';
@@ -0,0 +1,14 @@
1
+ import { DriveItem } from '@opencloud-eu/web-client/graph/generated';
2
+ import { SharesStore, SpacesStore, UserStore } from '../../composables/piniaStores';
3
+ import { SpaceResource } from '@opencloud-eu/web-client';
4
+ /**
5
+ * Since shared spaces are only virtual, they and their permissions can't be fetched from the server.
6
+ * Hence the permissions for the current user may need to be set manually via the corresponding drive item.
7
+ */
8
+ export declare const setCurrentUserShareSpacePermissions: ({ sharesStore, spacesStore, userStore, space, sharedDriveItem }: {
9
+ sharesStore: SharesStore;
10
+ spacesStore: SpacesStore;
11
+ userStore: UserStore;
12
+ space: SpaceResource;
13
+ sharedDriveItem: DriveItem;
14
+ }) => void;
@@ -4,9 +4,4 @@ export declare class FolderLoaderSpace implements FolderLoader {
4
4
  isEnabled(): boolean;
5
5
  isActive(router: Router): boolean;
6
6
  getTask(context: TaskContext): FolderLoaderTask;
7
- /**
8
- * Since shared spaces are only virtual, they and their permissions can't be fetched from the server.
9
- * Hence the permissions for the current user need to be set manually via the corresponding drive item.
10
- */
11
- private setCurrentUserShareSpacePermissions;
12
7
  }
package/dist/web-pkg.js CHANGED
@@ -1,5 +1,5 @@
1
- import { e2 as e } from "./index-CPsauqxc.js";
2
- import { t as i, cG as r, n as c, A as n, dJ as u, g as l, q as d, s as p, dK as S, dM as b, B as A, cH as F, dN as m, d2 as v, $ as R, cJ as h, v as T, x as g, w as C, m as D, l as L, p as P, C as E, K as M, O as f, ag as y, af as I, cB as w, cC as O, cA as k, W, dO as B, a7 as x, X as N, a1 as V, dT as H, dU as Q, dV as _, dW as U, dS as K, dX as z, dQ as G, cr as j, dn as q, cD as J, cE as X, I as Y, M as Z, h as $, bp as ee, L as ae, dY as se, i as oe, dZ as te, dI as ie, bq as re, N as ce, P as ne, bw as ue, e0 as le, k as de, bR as pe, d_ as Se, d$ as be, a9 as Ae, Q as Fe, bD as me, cN as ve, T as Re, R as he, D as Te, G as ge, z as Ce, H as De, a8 as Le, J as Pe, y as Ee, E as Me, F as fe, cM as ye, cF as Ie, Y as we, j as Oe, cb as ke, a0 as We, ch as Be, cm as xe, cj as Ne, a5 as Ve, a6 as He, a3 as Qe, U as _e, a4 as Ue, S as Ke, aa as ze, bO as Ge, cO as je, Z as qe, e1 as Je, V as Xe, dp as Ye, a2 as Ze, bN as $e, b$ as ea, b_ as aa, dl as sa, d0 as oa, dH as ta, cU as ia, dL as ra, dm as ca, dk as na, d1 as ua, b5 as la, b1 as da, b2 as pa, b3 as Sa, cR as ba, cT as Aa, dq as Fa, dt as ma, dr as va, ds as Ra, dA as ha, dg as Ta, f as ga, cY as Ca, c_ as Da, d3 as La, e3 as Pa, dP as Ea, cP as Ma, cX as fa, dR as ya, d4 as Ia, d6 as wa, d7 as Oa, d5 as ka, d8 as Wa, df as Ba, d9 as xa, db as Na, dc as Va, da as Ha, dd as Qa, dj as _a, dh as Ua, di as Ka, cW as za, cV as Ga, bL as ja, dy as qa, du as Ja, dx as Xa, dv as Ya, dw as Za, dz as $a, cL as es, cI as as, dB as ss, dC as os, dE as ts, dF as is, dG as rs, dD as cs, e4 as ns, b6 as us, cS as ls, cK as ds, cQ as ps, b4 as Ss, cZ as bs, cl as As, bK as Fs, c$ as ms, de as vs, ab as Rs, aU as hs, c0 as Ts, c9 as gs, aY as Cs, aZ as Ds, a_ as Ls, a$ as Ps, b0 as Es, b7 as Ms, b9 as fs, by as ys, ba as Is, bb as ws, bz as Os, bd as ks, bV as Ws, cf as Bs, bW as xs, cg as Ns, bA as Vs, be as Hs, bf as Qs, bB as _s, bC as Us, cp as Ks, cw as zs, b8 as Gs, bg as js, bh as qs, bj as Js, bk as Xs, bE as Ys, bF as Zs, ah as $s, ak as eo, al as ao, aG as so, aD as oo, aC as to, aE as io, aB as ro, an as co, ad as no, am as uo, ao as lo, ap as po, aq as So, ai as bo, ar as Ao, as as Fo, at as mo, aF as vo, aH as Ro, au as ho, av as To, aw as go, aI as Co, ax as Do, ay as Lo, az as Po, aA as Eo, aj as Mo, bl as fo, c1 as yo, bn as Io, co as wo, bX as Oo, e5 as ko, ae as Wo, ac as Bo, bo as xo, br as No, bs as Vo, bY as Ho, bt as Qo, bu as _o, bG as Uo, bH as Ko, aV as zo, aW as Go, bv as jo, bx as qo, cx as Jo, bS as Xo, bT as Yo, bc as Zo, bU as $o, bZ as et, bm as at, bI as st, cy as ot, c2 as tt, c4 as it, c3 as rt, c5 as ct, c6 as nt, c7 as ut, c8 as lt, ca as dt, cc as pt, cd as St, ce as bt, bJ as At, ci as Ft, ck as mt, aJ as vt, aK as Rt, aL as ht, aM as Tt, aN as gt, aO as Ct, aS as Dt, aP as Lt, aQ as Pt, aT as Et, aR as Mt, cn as ft, bi as yt, bM as It, u as wt, cs as Ot, cz as kt, cq as Wt, bP as Bt, ct as xt, cu as Nt, cv as Vt, bQ as Ht, aX as Qt } from "./index-CPsauqxc.js";
1
+ import { e3 as e } from "./index-DZecEYvt.js";
2
+ import { t as i, cG as r, n as c, A as n, dK as u, g as l, q as d, s as p, dL as S, dN as b, B as A, cH as m, dO as F, d3 as v, $ as R, cJ as h, v as T, x as C, w as g, m as D, l as L, p as P, C as E, K as M, O as f, ag as y, af as I, cB as w, cC as O, cA as k, W, dP as B, a7 as x, X as N, a1 as V, dU as H, dV as Q, dW as U, dX as _, dT as K, dY as z, dR as G, cr as j, dp as q, cD as J, cE as X, I as Y, M as Z, h as $, bp as ee, L as ae, dZ as se, i as oe, d_ as te, dJ as ie, bq as re, N as ce, P as ne, bw as ue, e1 as le, k as de, bR as pe, d$ as Se, e0 as be, a9 as Ae, Q as me, bD as Fe, cN as ve, T as Re, R as he, D as Te, G as Ce, z as ge, H as De, a8 as Le, J as Pe, y as Ee, E as Me, F as fe, cM as ye, cF as Ie, Y as we, S as Oe, cb as ke, a0 as We, ch as Be, cm as xe, cj as Ne, a5 as Ve, a6 as He, a3 as Qe, U as Ue, a4 as _e, j as Ke, aa as ze, bO as Ge, cO as je, Z as qe, e2 as Je, V as Xe, dq as Ye, a2 as Ze, bN as $e, b$ as ea, b_ as aa, dm as sa, d1 as oa, dI as ta, cU as ia, dM as ra, dn as ca, dl as na, d2 as ua, b5 as la, b1 as da, b2 as pa, b3 as Sa, cR as ba, cT as Aa, dr as ma, du as Fa, ds as va, dt as Ra, dB as ha, dh as Ta, f as Ca, cZ as ga, c$ as Da, d4 as La, e4 as Pa, dQ as Ea, cP as Ma, cY as fa, dS as ya, d5 as Ia, d7 as wa, d8 as Oa, d6 as ka, d9 as Wa, dg as Ba, da as xa, dc as Na, dd as Va, db as Ha, de as Qa, dk as Ua, di as _a, dj as Ka, cW as za, cV as Ga, bL as ja, dz as qa, dv as Ja, dy as Xa, dw as Ya, dx as Za, dA as $a, cL as es, cI as as, dC as ss, dD as os, dF as ts, dG as is, dH as rs, dE as cs, e5 as ns, b6 as us, cS as ls, cK as ds, cQ as ps, b4 as Ss, cX as bs, c_ as As, cl as ms, bK as Fs, d0 as vs, df as Rs, ab as hs, aU as Ts, c0 as Cs, c9 as gs, aY as Ds, aZ as Ls, a_ as Ps, a$ as Es, b0 as Ms, b7 as fs, b9 as ys, by as Is, ba as ws, bb as Os, bz as ks, bd as Ws, bV as Bs, cf as xs, bW as Ns, cg as Vs, bA as Hs, be as Qs, bf as Us, bB as _s, bC as Ks, cp as zs, cw as Gs, b8 as js, bg as qs, bh as Js, bj as Xs, bk as Ys, bE as Zs, bF as $s, ah as eo, ak as ao, al as so, aG as oo, aD as to, aC as io, aE as ro, aB as co, an as no, ad as uo, am as lo, ao as po, ap as So, aq as bo, ai as Ao, ar as mo, as as Fo, at as vo, aF as Ro, aH as ho, au as To, av as Co, aw as go, aI as Do, ax as Lo, ay as Po, az as Eo, aA as Mo, aj as fo, bl as yo, c1 as Io, bn as wo, co as Oo, bX as ko, e6 as Wo, ae as Bo, ac as xo, bo as No, br as Vo, bs as Ho, bY as Qo, bt as Uo, bu as _o, bG as Ko, bH as zo, aV as Go, aW as jo, bv as qo, bx as Jo, cx as Xo, bS as Yo, bT as Zo, bc as $o, bU as et, bZ as at, bm as st, bI as ot, cy as tt, c2 as it, c4 as rt, c3 as ct, c5 as nt, c6 as ut, c7 as lt, c8 as dt, ca as pt, cc as St, cd as bt, ce as At, bJ as mt, ci as Ft, ck as vt, aJ as Rt, aK as ht, aL as Tt, aM as Ct, aN as gt, aO as Dt, aS as Lt, aP as Pt, aQ as Et, aT as Mt, aR as ft, cn as yt, bi as It, bM as wt, u as Ot, cs as kt, cz as Wt, cq as Bt, bP as xt, ct as Nt, cu as Vt, cv as Ht, bQ as Qt, aX as Ut } from "./index-DZecEYvt.js";
3
3
  const s = e.dirname;
4
4
  export {
5
5
  i as ActionMenuItem,
@@ -13,14 +13,14 @@ export {
13
13
  S as ArchiverService,
14
14
  b as Auth,
15
15
  A as BatchActions,
16
- F as Cache,
17
- m as ClientService,
16
+ m as Cache,
17
+ F as ClientService,
18
18
  v as ClipboardActions,
19
19
  R as CompareSaveDialog,
20
20
  h as ConflictDialog,
21
21
  T as ContextActionMenu,
22
- g as ContextActions,
23
- C as ContextMenuQuickAction,
22
+ C as ContextActions,
23
+ g as ContextMenuQuickAction,
24
24
  D as CreateLinkModal,
25
25
  L as CreateShortcutModal,
26
26
  P as CreateSpace,
@@ -39,8 +39,8 @@ export {
39
39
  V as FileSideBar,
40
40
  H as FolderLoaderFavorites,
41
41
  Q as FolderLoaderSharedViaLink,
42
- _ as FolderLoaderSharedWithMe,
43
- U as FolderLoaderSharedWithOthers,
42
+ U as FolderLoaderSharedWithMe,
43
+ _ as FolderLoaderSharedWithOthers,
44
44
  K as FolderLoaderSpace,
45
45
  z as FolderLoaderTrashbin,
46
46
  G as FolderService,
@@ -67,14 +67,14 @@ export {
67
67
  Se as PreviewService,
68
68
  be as ProcessorType,
69
69
  Ae as QuotaModal,
70
- Fe as QuotaSelect,
71
- me as RawConfigSchema,
70
+ me as QuotaSelect,
71
+ Fe as RawConfigSchema,
72
72
  ve as ResolveStrategy,
73
73
  Re as ResourceConflictModal,
74
74
  he as ResourceGhostElement,
75
75
  Te as ResourceIcon,
76
- ge as ResourceLink,
77
- Ce as ResourceListItem,
76
+ Ce as ResourceLink,
77
+ ge as ResourceListItem,
78
78
  De as ResourceName,
79
79
  Le as ResourcePreview,
80
80
  Pe as ResourceSize,
@@ -93,8 +93,8 @@ export {
93
93
  Ve as SpaceDetails,
94
94
  He as SpaceDetailsMultiple,
95
95
  Qe as SpaceInfo,
96
- _e as SpaceMoveInfoModal,
97
- Ue as SpaceNoSelection,
96
+ Ue as SpaceMoveInfoModal,
97
+ _e as SpaceNoSelection,
98
98
  Ke as SpaceQuota,
99
99
  ze as TextEditor,
100
100
  Ge as ThemeConfig,
@@ -121,14 +121,14 @@ export {
121
121
  Sa as contextRouteQueryKey,
122
122
  ba as createDefaultFileIconMapping,
123
123
  Aa as createFileRouteOptions,
124
- Fa as createLocationCommon,
125
- ma as createLocationPublic,
124
+ ma as createLocationCommon,
125
+ Fa as createLocationPublic,
126
126
  va as createLocationShares,
127
127
  Ra as createLocationSpaces,
128
128
  ha as createLocationTrash,
129
129
  Ta as defaultFuseOptions,
130
- ga as defineWebApplication,
131
- Ca as determineResourceTableSortFields,
130
+ Ca as defineWebApplication,
131
+ ga as determineResourceTableSortFields,
132
132
  Da as determineResourceTilesSortFields,
133
133
  s as dirname,
134
134
  La as displayPositionedDropdown,
@@ -148,8 +148,8 @@ export {
148
148
  Va as formatRelativeDateFromISO,
149
149
  Ha as formatRelativeDateFromJSDate,
150
150
  Qa as formatRelativeDateFromRFC,
151
- _a as getIndicators,
152
- Ua as getLocaleFromLanguage,
151
+ Ua as getIndicators,
152
+ _a as getLocaleFromLanguage,
153
153
  Ka as getParentPaths,
154
154
  za as getSharedAncestorRoute,
155
155
  Ga as getSharedDriveItem,
@@ -174,139 +174,140 @@ export {
174
174
  ds as resolveFileNameDuplicate,
175
175
  ps as resourceIconMappingInjectionKey,
176
176
  Ss as routeToContextQuery,
177
- bs as sortFields,
178
- As as sortHelper,
177
+ bs as setCurrentUserShareSpacePermissions,
178
+ As as sortFields,
179
+ ms as sortHelper,
179
180
  Fs as sortSpaceMembers,
180
- ms as translateSortFields,
181
- vs as triggerDownloadWithFilename,
182
- Rs as useAbility,
183
- hs as useActionsShowDetails,
184
- Ts as useActiveApp,
181
+ vs as translateSortFields,
182
+ Rs as triggerDownloadWithFilename,
183
+ hs as useAbility,
184
+ Ts as useActionsShowDetails,
185
+ Cs as useActiveApp,
185
186
  gs as useActiveLocation,
186
- Cs as useAppConfig,
187
- Ds as useAppDefaults,
188
- Ls as useAppFileHandling,
189
- Ps as useAppFolderHandling,
190
- Es as useAppMeta,
191
- Ms as useAppNavigation,
192
- fs as useAppProviderService,
193
- ys as useAppsStore,
194
- Is as useArchiverService,
195
- ws as useAuthService,
196
- Os as useAuthStore,
197
- ks as useBreadcrumbsFromPath,
198
- Ws as useCanBeOpenedWithSecureView,
199
- Bs as useCanListShares,
200
- xs as useCanListVersions,
201
- Ns as useCanShare,
202
- Vs as useCapabilityStore,
203
- Hs as useClientService,
204
- Qs as useClipboard,
187
+ Ds as useAppConfig,
188
+ Ls as useAppDefaults,
189
+ Ps as useAppFileHandling,
190
+ Es as useAppFolderHandling,
191
+ Ms as useAppMeta,
192
+ fs as useAppNavigation,
193
+ ys as useAppProviderService,
194
+ Is as useAppsStore,
195
+ ws as useArchiverService,
196
+ Os as useAuthService,
197
+ ks as useAuthStore,
198
+ Ws as useBreadcrumbsFromPath,
199
+ Bs as useCanBeOpenedWithSecureView,
200
+ xs as useCanListShares,
201
+ Ns as useCanListVersions,
202
+ Vs as useCanShare,
203
+ Hs as useCapabilityStore,
204
+ Qs as useClientService,
205
+ Us as useClipboard,
205
206
  _s as useClipboardStore,
206
- Us as useConfigStore,
207
- Ks as useCreateSpace,
208
- zs as useDeleteWorker,
209
- Gs as useDocumentTitle,
210
- js as useDownloadFile,
211
- qs as useDriveResolver,
212
- Js as useEmbedMode,
213
- Xs as useEventBus,
214
- Ys as useExtensionPreferencesStore,
215
- Zs as useExtensionRegistry,
216
- $s as useFileActions,
217
- eo as useFileActionsCopy,
218
- ao as useFileActionsCopyPermanentLink,
219
- so as useFileActionsCreateLink,
220
- oo as useFileActionsCreateNewFile,
221
- to as useFileActionsCreateNewFolder,
222
- io as useFileActionsCreateNewShortcut,
223
- ro as useFileActionsCreateSpaceFromResource,
224
- co as useFileActionsDelete,
225
- no as useFileActionsDeleteResources,
226
- uo as useFileActionsDisableSync,
227
- lo as useFileActionsDownloadArchive,
228
- po as useFileActionsDownloadFile,
229
- So as useFileActionsEmptyTrashBin,
230
- bo as useFileActionsEnableSync,
231
- Ao as useFileActionsFavorite,
207
+ Ks as useConfigStore,
208
+ zs as useCreateSpace,
209
+ Gs as useDeleteWorker,
210
+ js as useDocumentTitle,
211
+ qs as useDownloadFile,
212
+ Js as useDriveResolver,
213
+ Xs as useEmbedMode,
214
+ Ys as useEventBus,
215
+ Zs as useExtensionPreferencesStore,
216
+ $s as useExtensionRegistry,
217
+ eo as useFileActions,
218
+ ao as useFileActionsCopy,
219
+ so as useFileActionsCopyPermanentLink,
220
+ oo as useFileActionsCreateLink,
221
+ to as useFileActionsCreateNewFile,
222
+ io as useFileActionsCreateNewFolder,
223
+ ro as useFileActionsCreateNewShortcut,
224
+ co as useFileActionsCreateSpaceFromResource,
225
+ no as useFileActionsDelete,
226
+ uo as useFileActionsDeleteResources,
227
+ lo as useFileActionsDisableSync,
228
+ po as useFileActionsDownloadArchive,
229
+ So as useFileActionsDownloadFile,
230
+ bo as useFileActionsEmptyTrashBin,
231
+ Ao as useFileActionsEnableSync,
232
+ mo as useFileActionsFavorite,
232
233
  Fo as useFileActionsMove,
233
- mo as useFileActionsNavigate,
234
- vo as useFileActionsOpenShortcut,
235
- Ro as useFileActionsOpenWithApp,
236
- ho as useFileActionsPaste,
237
- To as useFileActionsRename,
234
+ vo as useFileActionsNavigate,
235
+ Ro as useFileActionsOpenShortcut,
236
+ ho as useFileActionsOpenWithApp,
237
+ To as useFileActionsPaste,
238
+ Co as useFileActionsRename,
238
239
  go as useFileActionsRestore,
239
- Co as useFileActionsSaveAs,
240
- Do as useFileActionsSetImage,
241
- Lo as useFileActionsShowActions,
242
- Po as useFileActionsShowDetails,
243
- Eo as useFileActionsShowShares,
244
- Mo as useFileActionsToggleHideShare,
245
- fo as useFileListHeaderPosition,
246
- yo as useFileRouteReplace,
247
- Io as useFolderLink,
248
- wo as useGetMatchingSpace,
249
- Oo as useGetResourceContext,
250
- ko as useGroupingSettings,
251
- Wo as useIsFilesAppActive,
252
- Bo as useIsSearchActive,
253
- xo as useIsTopBarSticky,
254
- No as useKeyboardActions,
255
- Vo as useLinkTypes,
256
- Ho as useLoadPreview,
257
- Qo as useLoadingService,
240
+ Do as useFileActionsSaveAs,
241
+ Lo as useFileActionsSetImage,
242
+ Po as useFileActionsShowActions,
243
+ Eo as useFileActionsShowDetails,
244
+ Mo as useFileActionsShowShares,
245
+ fo as useFileActionsToggleHideShare,
246
+ yo as useFileListHeaderPosition,
247
+ Io as useFileRouteReplace,
248
+ wo as useFolderLink,
249
+ Oo as useGetMatchingSpace,
250
+ ko as useGetResourceContext,
251
+ Wo as useGroupingSettings,
252
+ Bo as useIsFilesAppActive,
253
+ xo as useIsSearchActive,
254
+ No as useIsTopBarSticky,
255
+ Vo as useKeyboardActions,
256
+ Ho as useLinkTypes,
257
+ Qo as useLoadPreview,
258
+ Uo as useLoadingService,
258
259
  _o as useLocalStorage,
259
- Uo as useMessages,
260
- Ko as useModals,
261
- zo as useOpenEmptyEditor,
262
- Go as useOpenWithDefaultApp,
263
- jo as usePagination,
264
- qo as usePasswordPolicyService,
265
- Jo as usePasteWorker,
266
- Xo as usePortalTarget,
267
- Yo as usePreviewService,
268
- Zo as useRequest,
269
- $o as useRequestHeaders,
270
- et as useResourceContents,
271
- at as useResourceRouteResolver,
272
- st as useResourcesStore,
273
- ot as useRestoreWorker,
274
- tt as useRoute,
275
- it as useRouteMeta,
276
- rt as useRouteName,
277
- ct as useRouteParam,
278
- nt as useRouteQuery,
279
- ut as useRouteQueryPersisted,
280
- lt as useRouter,
281
- dt as useScrollTo,
282
- pt as useSearch,
283
- St as useSelectedResources,
284
- bt as useService,
285
- At as useSharesStore,
260
+ Ko as useMessages,
261
+ zo as useModals,
262
+ Go as useOpenEmptyEditor,
263
+ jo as useOpenWithDefaultApp,
264
+ qo as usePagination,
265
+ Jo as usePasswordPolicyService,
266
+ Xo as usePasteWorker,
267
+ Yo as usePortalTarget,
268
+ Zo as usePreviewService,
269
+ $o as useRequest,
270
+ et as useRequestHeaders,
271
+ at as useResourceContents,
272
+ st as useResourceRouteResolver,
273
+ ot as useResourcesStore,
274
+ tt as useRestoreWorker,
275
+ it as useRoute,
276
+ rt as useRouteMeta,
277
+ ct as useRouteName,
278
+ nt as useRouteParam,
279
+ ut as useRouteQuery,
280
+ lt as useRouteQueryPersisted,
281
+ dt as useRouter,
282
+ pt as useScrollTo,
283
+ St as useSearch,
284
+ bt as useSelectedResources,
285
+ At as useService,
286
+ mt as useSharesStore,
286
287
  Ft as useSideBar,
287
- mt as useSort,
288
- vt as useSpaceActionsDelete,
289
- Rt as useSpaceActionsDisable,
290
- ht as useSpaceActionsDuplicate,
291
- Tt as useSpaceActionsEditDescription,
288
+ vt as useSort,
289
+ Rt as useSpaceActionsDelete,
290
+ ht as useSpaceActionsDisable,
291
+ Tt as useSpaceActionsDuplicate,
292
+ Ct as useSpaceActionsEditDescription,
292
293
  gt as useSpaceActionsEditQuota,
293
- Ct as useSpaceActionsEditReadmeContent,
294
- Dt as useSpaceActionsNavigateToTrash,
295
- Lt as useSpaceActionsRename,
296
- Pt as useSpaceActionsRestore,
297
- Et as useSpaceActionsSetIcon,
298
- Mt as useSpaceActionsShowMembers,
299
- ft as useSpaceHelpers,
300
- yt as useSpacesLoading,
301
- It as useSpacesStore,
302
- wt as useThemeStore,
303
- Ot as useTileSize,
304
- kt as useTokenTimerWorker,
305
- Wt as useUpload,
306
- Bt as useUserStore,
307
- xt as useViewMode,
308
- Nt as useViewSize,
309
- Vt as useViewSizeMax,
310
- Ht as useWebWorkersStore,
311
- Qt as useWindowOpen
294
+ Dt as useSpaceActionsEditReadmeContent,
295
+ Lt as useSpaceActionsNavigateToTrash,
296
+ Pt as useSpaceActionsRename,
297
+ Et as useSpaceActionsRestore,
298
+ Mt as useSpaceActionsSetIcon,
299
+ ft as useSpaceActionsShowMembers,
300
+ yt as useSpaceHelpers,
301
+ It as useSpacesLoading,
302
+ wt as useSpacesStore,
303
+ Ot as useThemeStore,
304
+ kt as useTileSize,
305
+ Wt as useTokenTimerWorker,
306
+ Bt as useUpload,
307
+ xt as useUserStore,
308
+ Nt as useViewMode,
309
+ Vt as useViewSize,
310
+ Ht as useViewSizeMax,
311
+ Qt as useWebWorkersStore,
312
+ Ut as useWindowOpen
312
313
  };