@opencloud-eu/web-pkg 2.0.0 → 2.1.0-alpha.1
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.
- package/dist/{TextEditor-CBpP9DFX.js → TextEditor-XOBRrH6u.js} +1 -1
- package/dist/assets/{worker-BpDXOTOV.js → worker-C-4Lcir3.js} +2 -2
- package/dist/assets/{worker-Ds2rbROB.js → worker-CHXv5Q0i.js} +2 -2
- package/dist/assets/{worker-BCEWb3C6.js → worker-CjeEygd_.js} +2 -2
- package/dist/index-BCVoSs4U.js +30224 -0
- package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +1 -0
- package/dist/src/components/CreateShortcutModal.vue.d.ts +106 -294
- package/dist/src/components/FilesList/ResourceTile.vue.d.ts +70 -504
- package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +120 -685
- package/dist/src/components/Search/ResourcePreview.vue.d.ts +109 -301
- package/dist/src/components/SideBar/FileSideBar.vue.d.ts +1 -0
- package/dist/src/components/SideBar/Files/FileInfo.vue.d.ts +1 -0
- package/dist/src/components/SideBar/Spaces/Details/SpaceDetails.vue.d.ts +4 -95
- package/dist/src/components/SideBar/Spaces/Details/SpaceDetailsMultiple.vue.d.ts +4 -22
- package/dist/src/components/SpaceQuota.vue.d.ts +3 -23
- package/dist/src/composables/piniaStores/spaces.d.ts +14 -2
- package/dist/web-pkg.js +2 -2
- package/dist/web-pkg.umd.cjs +47 -52
- package/package.json +3 -3
- package/dist/index-CPsauqxc.js +0 -31448
|
@@ -2991,6 +2991,7 @@ 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[]>;
|
|
2994
2995
|
getSpace: (id: string) => SpaceResource;
|
|
2995
2996
|
createShareSpace: ({ driveAliasPrefix, id, shareName }: {
|
|
2996
2997
|
driveAliasPrefix: "share" | "ocm-share";
|
|
@@ -3027,7 +3028,10 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
|
|
|
3027
3028
|
graphClient: Graph;
|
|
3028
3029
|
signal?: AbortSignal;
|
|
3029
3030
|
}) => Promise<void>;
|
|
3030
|
-
|
|
3031
|
+
addToImagesLoading: (id: string) => void;
|
|
3032
|
+
removeFromImagesLoading: (id: string) => void;
|
|
3033
|
+
purgeImagesLoading: () => void;
|
|
3034
|
+
}, "spaces" | "spacesInitialized" | "mountPointsInitialized" | "spacesLoading" | "currentSpace" | "defaultSpaceImageBlobURL" | "imagesLoading">, Pick<{
|
|
3031
3035
|
spaces: import('vue').Ref<{
|
|
3032
3036
|
description: string;
|
|
3033
3037
|
disabled: boolean;
|
|
@@ -6009,6 +6013,7 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
|
|
|
6009
6013
|
currentSpace: import('vue').Ref<SpaceResource, SpaceResource>;
|
|
6010
6014
|
personalSpace: import('vue').ComputedRef<SpaceResource>;
|
|
6011
6015
|
defaultSpaceImageBlobURL: import('vue').Ref<string, string>;
|
|
6016
|
+
imagesLoading: import('vue').Ref<string[], string[]>;
|
|
6012
6017
|
getSpace: (id: string) => SpaceResource;
|
|
6013
6018
|
createShareSpace: ({ driveAliasPrefix, id, shareName }: {
|
|
6014
6019
|
driveAliasPrefix: "share" | "ocm-share";
|
|
@@ -6045,6 +6050,9 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
|
|
|
6045
6050
|
graphClient: Graph;
|
|
6046
6051
|
signal?: AbortSignal;
|
|
6047
6052
|
}) => Promise<void>;
|
|
6053
|
+
addToImagesLoading: (id: string) => void;
|
|
6054
|
+
removeFromImagesLoading: (id: string) => void;
|
|
6055
|
+
purgeImagesLoading: () => void;
|
|
6048
6056
|
}, "personalSpace">, Pick<{
|
|
6049
6057
|
spaces: import('vue').Ref<{
|
|
6050
6058
|
description: string;
|
|
@@ -9027,6 +9035,7 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
|
|
|
9027
9035
|
currentSpace: import('vue').Ref<SpaceResource, SpaceResource>;
|
|
9028
9036
|
personalSpace: import('vue').ComputedRef<SpaceResource>;
|
|
9029
9037
|
defaultSpaceImageBlobURL: import('vue').Ref<string, string>;
|
|
9038
|
+
imagesLoading: import('vue').Ref<string[], string[]>;
|
|
9030
9039
|
getSpace: (id: string) => SpaceResource;
|
|
9031
9040
|
createShareSpace: ({ driveAliasPrefix, id, shareName }: {
|
|
9032
9041
|
driveAliasPrefix: "share" | "ocm-share";
|
|
@@ -9063,5 +9072,8 @@ export declare const useSpacesStore: import('pinia').StoreDefinition<"spaces", P
|
|
|
9063
9072
|
graphClient: Graph;
|
|
9064
9073
|
signal?: AbortSignal;
|
|
9065
9074
|
}) => Promise<void>;
|
|
9066
|
-
|
|
9075
|
+
addToImagesLoading: (id: string) => void;
|
|
9076
|
+
removeFromImagesLoading: (id: string) => void;
|
|
9077
|
+
purgeImagesLoading: () => void;
|
|
9078
|
+
}, "getSpace" | "createShareSpace" | "setSpacesInitialized" | "setMountPointsInitialized" | "setSpacesLoading" | "setCurrentSpace" | "setDefaultSpaceImageBlobURL" | "getSpaceMembers" | "getMountPointForSpace" | "addSpaces" | "removeSpace" | "upsertSpace" | "updateSpaceField" | "loadSpaces" | "loadMountPoints" | "reloadProjectSpaces" | "addToImagesLoading" | "removeFromImagesLoading" | "purgeImagesLoading">>;
|
|
9067
9079
|
export type SpacesStore = ReturnType<typeof useSpacesStore>;
|
package/dist/web-pkg.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { e2 as e } from "./index-
|
|
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,
|
|
1
|
+
import { e2 as e } from "./index-BCVoSs4U.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, 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 _e, a4 as Ue, j 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-BCVoSs4U.js";
|
|
3
3
|
const s = e.dirname;
|
|
4
4
|
export {
|
|
5
5
|
i as ActionMenuItem,
|