@opencloud-eu/web-pkg 5.1.0 → 6.0.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.
Files changed (49) hide show
  1. package/dist/{TextEditor-CXSedGM4.js → TextEditor-D-HQDUkm.js} +3 -5
  2. package/dist/assets/{worker-22sDKzz_.js → worker-CVwKToFD.js} +18 -18
  3. package/dist/assets/{worker-BSCY2vwA.js → worker-DJbU-qfq.js} +18 -18
  4. package/dist/assets/{worker-DH8D29Kr.js → worker-DyU7W9CZ.js} +18 -18
  5. package/dist/{index-CEJcEmbf.js → index-OU30YA6H.js} +10663 -11050
  6. package/dist/src/apps/types.d.ts +0 -3
  7. package/dist/src/components/AppBar/AppBar.vue.d.ts +1 -0
  8. package/dist/src/components/AppBar/index.d.ts +0 -1
  9. package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +1 -1
  10. package/dist/src/components/AppTopBar.vue.d.ts +1 -1
  11. package/dist/src/components/ContextActions/ContextMenuQuickAction.vue.d.ts +409 -11
  12. package/dist/src/components/CreateShortcutModal.vue.d.ts +222 -0
  13. package/dist/src/components/CustomComponentTarget.vue.d.ts +4 -14
  14. package/dist/src/components/Filters/DateFilter.vue.d.ts +500 -0
  15. package/dist/src/components/Navigation/index.d.ts +1 -0
  16. package/dist/src/components/NoContentMessage.vue.d.ts +3 -2
  17. package/dist/src/components/SideBar/FileSideBar.vue.d.ts +2 -1
  18. package/dist/src/components/index.d.ts +1 -1
  19. package/dist/src/composables/actions/spaces/index.d.ts +1 -0
  20. package/dist/src/composables/actions/spaces/useSpaceActionsCreate.d.ts +7 -0
  21. package/dist/src/composables/index.d.ts +1 -1
  22. package/dist/src/composables/navItems/index.d.ts +1 -0
  23. package/dist/src/composables/navItems/useNavItems.d.ts +13 -0
  24. package/dist/src/composables/piniaStores/auth.d.ts +8 -2
  25. package/dist/src/composables/piniaStores/extensionRegistry/types.d.ts +14 -1
  26. package/dist/src/composables/piniaStores/sideBar.d.ts +1 -15
  27. package/dist/src/composables/resources/useResourceViewContextMenu.d.ts +4 -3
  28. package/dist/src/composables/resources/useResourceViewHelpers.d.ts +2 -2
  29. package/dist/src/composables/spaces/useCreateSpace.d.ts +1 -0
  30. package/dist/src/constants.d.ts +0 -6
  31. package/dist/src/extensionPoints.d.ts +3 -0
  32. package/dist/src/helpers/filesize.d.ts +0 -7
  33. package/dist/src/helpers/index.d.ts +1 -2
  34. package/dist/src/helpers/versions.d.ts +5 -0
  35. package/dist/src/index.d.ts +1 -0
  36. package/dist/web-pkg.js +329 -331
  37. package/dist/web-pkg.umd.cjs +14 -34
  38. package/package.json +4 -5
  39. package/src/index.ts +1 -0
  40. package/dist/src/components/AppBar/CreateSpace.vue.d.ts +0 -18
  41. package/dist/src/components/TextEditor/TextEditor.vue.d.ts +0 -165
  42. package/dist/src/components/TextEditor/index.d.ts +0 -161
  43. package/dist/src/composables/portalTarget/eventTopics.d.ts +0 -3
  44. package/dist/src/composables/portalTarget/index.d.ts +0 -2
  45. package/dist/src/composables/portalTarget/usePortalTarget.d.ts +0 -4
  46. package/dist/src/helpers/contextMenuDropdown.d.ts +0 -7
  47. package/dist/src/helpers/statusIndicators.d.ts +0 -12
  48. package/dist/src/services/passwordPolicy/rules.d.ts +0 -69
  49. /package/dist/src/components/{PortalTarget.vue.d.ts → Navigation/MobileNav.vue.d.ts} +0 -0
@@ -0,0 +1,500 @@
1
+ import { PropType } from 'vue';
2
+ import { DateTime } from 'luxon';
3
+ type Item = Record<string, string>;
4
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
+ filterLabel: {
6
+ type: StringConstructor;
7
+ required: true;
8
+ };
9
+ filterName: {
10
+ type: StringConstructor;
11
+ required: true;
12
+ };
13
+ items: {
14
+ type: PropType<Item[]>;
15
+ required: true;
16
+ };
17
+ idAttribute: {
18
+ type: StringConstructor;
19
+ required: false;
20
+ default: string;
21
+ };
22
+ displayNameAttribute: {
23
+ type: StringConstructor;
24
+ required: false;
25
+ default: string;
26
+ };
27
+ }>, {
28
+ clearFilter: () => void;
29
+ displayedItems: import('vue').Ref<Item[], Item[]>;
30
+ isItemSelected: (item: Item) => boolean;
31
+ selectedItem: import('vue').Ref<Item, Item>;
32
+ onShowDrop: () => void;
33
+ onHideDrop: () => void;
34
+ filterChip: import('vue').Ref<{
35
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Props> & Readonly<{
36
+ onHideDrop?: () => any;
37
+ onShowDrop?: () => any;
38
+ onClearFilter?: () => any;
39
+ onToggleFilter?: () => any;
40
+ }>, {
41
+ hideDrop: () => void;
42
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
43
+ hideDrop: () => any;
44
+ showDrop: () => any;
45
+ clearFilter: () => any;
46
+ toggleFilter: () => any;
47
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
48
+ dropRef: {
49
+ $: import('vue').ComponentInternalInstance;
50
+ $data: {};
51
+ $props: Partial<{}> & Omit<{
52
+ readonly title?: string;
53
+ readonly closeOnClick?: boolean;
54
+ readonly dropId?: string;
55
+ readonly mode?: "click" | "hover" | "manual";
56
+ readonly offset?: number;
57
+ readonly paddingSize?: import('@opencloud-eu/design-system/helpers').SizeType | "remove";
58
+ readonly position?: import('@floating-ui/dom').Placement;
59
+ readonly toggle?: string;
60
+ readonly enforceDropOnMobile?: boolean;
61
+ readonly onHideDrop?: () => any;
62
+ readonly onShowDrop?: () => any;
63
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
64
+ $attrs: {
65
+ [x: string]: unknown;
66
+ };
67
+ $refs: {
68
+ [x: string]: unknown;
69
+ } & {
70
+ bottomDrawerRef: {
71
+ $: import('vue').ComponentInternalInstance;
72
+ $data: {};
73
+ $props: {
74
+ readonly drawerId: string;
75
+ readonly toggle: string;
76
+ readonly closeOnClick?: boolean;
77
+ readonly title?: string;
78
+ readonly registerClickHandler?: boolean;
79
+ readonly onShow?: () => any;
80
+ readonly onHide?: () => any;
81
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
82
+ $attrs: {
83
+ [x: string]: unknown;
84
+ };
85
+ $refs: {
86
+ [x: string]: unknown;
87
+ } & {
88
+ bottomDrawerCardBodyRef: HTMLDivElement;
89
+ };
90
+ $slots: Readonly<{
91
+ [name: string]: import('vue').Slot<any>;
92
+ }>;
93
+ $root: import('vue').ComponentPublicInstance | null;
94
+ $parent: import('vue').ComponentPublicInstance | null;
95
+ $host: Element | null;
96
+ $emit: ((event: "show") => void) & ((event: "hide") => void);
97
+ $el: any;
98
+ $options: import('vue').ComponentOptionsBase<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Props> & Readonly<{
99
+ onShow?: () => any;
100
+ onHide?: () => any;
101
+ }>, {
102
+ show: () => Promise<void>;
103
+ hide: () => void;
104
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
105
+ show: () => any;
106
+ hide: () => any;
107
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
108
+ beforeCreate?: (() => void) | (() => void)[];
109
+ created?: (() => void) | (() => void)[];
110
+ beforeMount?: (() => void) | (() => void)[];
111
+ mounted?: (() => void) | (() => void)[];
112
+ beforeUpdate?: (() => void) | (() => void)[];
113
+ updated?: (() => void) | (() => void)[];
114
+ activated?: (() => void) | (() => void)[];
115
+ deactivated?: (() => void) | (() => void)[];
116
+ beforeDestroy?: (() => void) | (() => void)[];
117
+ beforeUnmount?: (() => void) | (() => void)[];
118
+ destroyed?: (() => void) | (() => void)[];
119
+ unmounted?: (() => void) | (() => void)[];
120
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
121
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
122
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
123
+ };
124
+ $forceUpdate: () => void;
125
+ $nextTick: typeof import('vue').nextTick;
126
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
127
+ } & Readonly<{}> & Omit<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Props> & Readonly<{
128
+ onShow?: () => any;
129
+ onHide?: () => any;
130
+ }>, "show" | "hide"> & import('vue').ShallowUnwrapRef<{
131
+ show: () => Promise<void>;
132
+ hide: () => void;
133
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
134
+ $slots: Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Slots> & import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Slots;
135
+ };
136
+ drop: HTMLDivElement;
137
+ };
138
+ $slots: Readonly<{
139
+ [name: string]: import('vue').Slot<any>;
140
+ }>;
141
+ $root: import('vue').ComponentPublicInstance | null;
142
+ $parent: import('vue').ComponentPublicInstance | null;
143
+ $host: Element | null;
144
+ $emit: ((event: "hideDrop") => void) & ((event: "showDrop") => void);
145
+ $el: any;
146
+ $options: import('vue').ComponentOptionsBase<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Props> & Readonly<{
147
+ onHideDrop?: () => any;
148
+ onShowDrop?: () => any;
149
+ }>, {
150
+ show: ({ event, useMouseAnchor }?: {
151
+ event?: Event;
152
+ useMouseAnchor?: boolean;
153
+ }) => void;
154
+ hide: () => void;
155
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
156
+ hideDrop: () => any;
157
+ showDrop: () => any;
158
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
159
+ beforeCreate?: (() => void) | (() => void)[];
160
+ created?: (() => void) | (() => void)[];
161
+ beforeMount?: (() => void) | (() => void)[];
162
+ mounted?: (() => void) | (() => void)[];
163
+ beforeUpdate?: (() => void) | (() => void)[];
164
+ updated?: (() => void) | (() => void)[];
165
+ activated?: (() => void) | (() => void)[];
166
+ deactivated?: (() => void) | (() => void)[];
167
+ beforeDestroy?: (() => void) | (() => void)[];
168
+ beforeUnmount?: (() => void) | (() => void)[];
169
+ destroyed?: (() => void) | (() => void)[];
170
+ unmounted?: (() => void) | (() => void)[];
171
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
172
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
173
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
174
+ };
175
+ $forceUpdate: () => void;
176
+ $nextTick: typeof import('vue').nextTick;
177
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
178
+ } & Readonly<{}> & Omit<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Props> & Readonly<{
179
+ onHideDrop?: () => any;
180
+ onShowDrop?: () => any;
181
+ }>, "show" | "hide"> & import('vue').ShallowUnwrapRef<{
182
+ show: ({ event, useMouseAnchor }?: {
183
+ event?: Event;
184
+ useMouseAnchor?: boolean;
185
+ }) => void;
186
+ hide: () => void;
187
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
188
+ $slots: Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Slots> & import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Slots;
189
+ };
190
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
191
+ P: {};
192
+ B: {};
193
+ D: {};
194
+ C: {};
195
+ M: {};
196
+ Defaults: {};
197
+ }, Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Props> & Readonly<{
198
+ onHideDrop?: () => any;
199
+ onShowDrop?: () => any;
200
+ onClearFilter?: () => any;
201
+ onToggleFilter?: () => any;
202
+ }>, {
203
+ hideDrop: () => void;
204
+ }, {}, {}, {}, {}>;
205
+ __isFragment?: never;
206
+ __isTeleport?: never;
207
+ __isSuspense?: never;
208
+ } & import('vue').ComponentOptionsBase<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Props> & Readonly<{
209
+ onHideDrop?: () => any;
210
+ onShowDrop?: () => any;
211
+ onClearFilter?: () => any;
212
+ onToggleFilter?: () => any;
213
+ }>, {
214
+ hideDrop: () => void;
215
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
216
+ hideDrop: () => any;
217
+ showDrop: () => any;
218
+ clearFilter: () => any;
219
+ toggleFilter: () => any;
220
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
221
+ $slots: Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Slot> & import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Slot;
222
+ }), {
223
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Props> & Readonly<{
224
+ onHideDrop?: () => any;
225
+ onShowDrop?: () => any;
226
+ onClearFilter?: () => any;
227
+ onToggleFilter?: () => any;
228
+ }>, {
229
+ hideDrop: () => void;
230
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
231
+ hideDrop: () => any;
232
+ showDrop: () => any;
233
+ clearFilter: () => any;
234
+ toggleFilter: () => any;
235
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
236
+ dropRef: {
237
+ $: import('vue').ComponentInternalInstance;
238
+ $data: {};
239
+ $props: Partial<{}> & Omit<{
240
+ readonly title?: string;
241
+ readonly closeOnClick?: boolean;
242
+ readonly dropId?: string;
243
+ readonly mode?: "click" | "hover" | "manual";
244
+ readonly offset?: number;
245
+ readonly paddingSize?: import('@opencloud-eu/design-system/helpers').SizeType | "remove";
246
+ readonly position?: import('@floating-ui/dom').Placement;
247
+ readonly toggle?: string;
248
+ readonly enforceDropOnMobile?: boolean;
249
+ readonly onHideDrop?: () => any;
250
+ readonly onShowDrop?: () => any;
251
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
252
+ $attrs: {
253
+ [x: string]: unknown;
254
+ };
255
+ $refs: {
256
+ [x: string]: unknown;
257
+ } & {
258
+ bottomDrawerRef: {
259
+ $: import('vue').ComponentInternalInstance;
260
+ $data: {};
261
+ $props: {
262
+ readonly drawerId: string;
263
+ readonly toggle: string;
264
+ readonly closeOnClick?: boolean;
265
+ readonly title?: string;
266
+ readonly registerClickHandler?: boolean;
267
+ readonly onShow?: () => any;
268
+ readonly onHide?: () => any;
269
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
270
+ $attrs: {
271
+ [x: string]: unknown;
272
+ };
273
+ $refs: {
274
+ [x: string]: unknown;
275
+ } & {
276
+ bottomDrawerCardBodyRef: HTMLDivElement;
277
+ };
278
+ $slots: Readonly<{
279
+ [name: string]: import('vue').Slot<any>;
280
+ }>;
281
+ $root: import('vue').ComponentPublicInstance | null;
282
+ $parent: import('vue').ComponentPublicInstance | null;
283
+ $host: Element | null;
284
+ $emit: ((event: "show") => void) & ((event: "hide") => void);
285
+ $el: any;
286
+ $options: import('vue').ComponentOptionsBase<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Props> & Readonly<{
287
+ onShow?: () => any;
288
+ onHide?: () => any;
289
+ }>, {
290
+ show: () => Promise<void>;
291
+ hide: () => void;
292
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
293
+ show: () => any;
294
+ hide: () => any;
295
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
296
+ beforeCreate?: (() => void) | (() => void)[];
297
+ created?: (() => void) | (() => void)[];
298
+ beforeMount?: (() => void) | (() => void)[];
299
+ mounted?: (() => void) | (() => void)[];
300
+ beforeUpdate?: (() => void) | (() => void)[];
301
+ updated?: (() => void) | (() => void)[];
302
+ activated?: (() => void) | (() => void)[];
303
+ deactivated?: (() => void) | (() => void)[];
304
+ beforeDestroy?: (() => void) | (() => void)[];
305
+ beforeUnmount?: (() => void) | (() => void)[];
306
+ destroyed?: (() => void) | (() => void)[];
307
+ unmounted?: (() => void) | (() => void)[];
308
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
309
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
310
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
311
+ };
312
+ $forceUpdate: () => void;
313
+ $nextTick: typeof import('vue').nextTick;
314
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
315
+ } & Readonly<{}> & Omit<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Props> & Readonly<{
316
+ onShow?: () => any;
317
+ onHide?: () => any;
318
+ }>, "show" | "hide"> & import('vue').ShallowUnwrapRef<{
319
+ show: () => Promise<void>;
320
+ hide: () => void;
321
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
322
+ $slots: Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Slots> & import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcMobileDrop.vue').Slots;
323
+ };
324
+ drop: HTMLDivElement;
325
+ };
326
+ $slots: Readonly<{
327
+ [name: string]: import('vue').Slot<any>;
328
+ }>;
329
+ $root: import('vue').ComponentPublicInstance | null;
330
+ $parent: import('vue').ComponentPublicInstance | null;
331
+ $host: Element | null;
332
+ $emit: ((event: "hideDrop") => void) & ((event: "showDrop") => void);
333
+ $el: any;
334
+ $options: import('vue').ComponentOptionsBase<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Props> & Readonly<{
335
+ onHideDrop?: () => any;
336
+ onShowDrop?: () => any;
337
+ }>, {
338
+ show: ({ event, useMouseAnchor }?: {
339
+ event?: Event;
340
+ useMouseAnchor?: boolean;
341
+ }) => void;
342
+ hide: () => void;
343
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
344
+ hideDrop: () => any;
345
+ showDrop: () => any;
346
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
347
+ beforeCreate?: (() => void) | (() => void)[];
348
+ created?: (() => void) | (() => void)[];
349
+ beforeMount?: (() => void) | (() => void)[];
350
+ mounted?: (() => void) | (() => void)[];
351
+ beforeUpdate?: (() => void) | (() => void)[];
352
+ updated?: (() => void) | (() => void)[];
353
+ activated?: (() => void) | (() => void)[];
354
+ deactivated?: (() => void) | (() => void)[];
355
+ beforeDestroy?: (() => void) | (() => void)[];
356
+ beforeUnmount?: (() => void) | (() => void)[];
357
+ destroyed?: (() => void) | (() => void)[];
358
+ unmounted?: (() => void) | (() => void)[];
359
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
360
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
361
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
362
+ };
363
+ $forceUpdate: () => void;
364
+ $nextTick: typeof import('vue').nextTick;
365
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
366
+ } & Readonly<{}> & Omit<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Props> & Readonly<{
367
+ onHideDrop?: () => any;
368
+ onShowDrop?: () => any;
369
+ }>, "show" | "hide"> & import('vue').ShallowUnwrapRef<{
370
+ show: ({ event, useMouseAnchor }?: {
371
+ event?: Event;
372
+ useMouseAnchor?: boolean;
373
+ }) => void;
374
+ hide: () => void;
375
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
376
+ $slots: Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Slots> & import('node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue').Slots;
377
+ };
378
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
379
+ P: {};
380
+ B: {};
381
+ D: {};
382
+ C: {};
383
+ M: {};
384
+ Defaults: {};
385
+ }, Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Props> & Readonly<{
386
+ onHideDrop?: () => any;
387
+ onShowDrop?: () => any;
388
+ onClearFilter?: () => any;
389
+ onToggleFilter?: () => any;
390
+ }>, {
391
+ hideDrop: () => void;
392
+ }, {}, {}, {}, {}>;
393
+ __isFragment?: never;
394
+ __isTeleport?: never;
395
+ __isSuspense?: never;
396
+ } & import('vue').ComponentOptionsBase<Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Props> & Readonly<{
397
+ onHideDrop?: () => any;
398
+ onShowDrop?: () => any;
399
+ onClearFilter?: () => any;
400
+ onToggleFilter?: () => any;
401
+ }>, {
402
+ hideDrop: () => void;
403
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
404
+ hideDrop: () => any;
405
+ showDrop: () => any;
406
+ clearFilter: () => any;
407
+ toggleFilter: () => any;
408
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
409
+ $slots: Readonly<import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Slot> & import('node_modules/@opencloud-eu/design-system/src/components/OcFilterChip/OcFilterChip.vue').Slot;
410
+ })>;
411
+ toggleItemSelection: (item: Item) => Promise<void>;
412
+ setSelectedItemsBasedOnQuery: () => void;
413
+ fromDate: import('vue').Ref<DateTime<boolean>, DateTime<boolean>>;
414
+ toDate: import('vue').Ref<DateTime<boolean>, DateTime<boolean>>;
415
+ dateRangeValid: import('vue').ComputedRef<boolean>;
416
+ applyDateRangeFilter: () => Promise<void>;
417
+ dateRangeApplied: import('vue').ComputedRef<boolean>;
418
+ setDateRangeDate: ({ date, error }: {
419
+ date: DateTime;
420
+ error: boolean;
421
+ }, type: "from" | "to") => void;
422
+ dateRangeClicked: import('vue').Ref<boolean, boolean>;
423
+ currentTheme: import('vue').Ref<{
424
+ isDark: boolean;
425
+ label: string;
426
+ name?: string;
427
+ slogan?: string;
428
+ logo?: string;
429
+ logoMobile?: string;
430
+ urls?: {
431
+ accessDeniedHelp?: string;
432
+ imprint?: string;
433
+ privacy?: string;
434
+ accessibility?: string;
435
+ };
436
+ shareRoles?: Record<string, {
437
+ iconName: string;
438
+ }>;
439
+ designTokens?: {
440
+ roles?: Record<string, string>;
441
+ colorPalette?: Record<string, string>;
442
+ fontFamily?: string;
443
+ };
444
+ favicon?: string;
445
+ background?: string;
446
+ }, {
447
+ isDark: boolean;
448
+ label: string;
449
+ name?: string;
450
+ slogan?: string;
451
+ logo?: string;
452
+ logoMobile?: string;
453
+ urls?: {
454
+ accessDeniedHelp?: string;
455
+ imprint?: string;
456
+ privacy?: string;
457
+ accessibility?: string;
458
+ };
459
+ shareRoles?: Record<string, {
460
+ iconName: string;
461
+ }>;
462
+ designTokens?: {
463
+ roles?: Record<string, string>;
464
+ colorPalette?: Record<string, string>;
465
+ fontFamily?: string;
466
+ };
467
+ favicon?: string;
468
+ background?: string;
469
+ }>;
470
+ queryParam: string;
471
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "selectionChange"[], "selectionChange", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
472
+ filterLabel: {
473
+ type: StringConstructor;
474
+ required: true;
475
+ };
476
+ filterName: {
477
+ type: StringConstructor;
478
+ required: true;
479
+ };
480
+ items: {
481
+ type: PropType<Item[]>;
482
+ required: true;
483
+ };
484
+ idAttribute: {
485
+ type: StringConstructor;
486
+ required: false;
487
+ default: string;
488
+ };
489
+ displayNameAttribute: {
490
+ type: StringConstructor;
491
+ required: false;
492
+ default: string;
493
+ };
494
+ }>> & Readonly<{
495
+ onSelectionChange?: (...args: any[]) => any;
496
+ }>, {
497
+ idAttribute: string;
498
+ displayNameAttribute: string;
499
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
500
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as MobileNav } from './MobileNav.vue';
@@ -1,7 +1,8 @@
1
1
  import { FillType } from '@opencloud-eu/design-system/helpers';
2
2
  type __VLS_Props = {
3
- icon: string;
3
+ icon?: string;
4
4
  iconFillType?: FillType;
5
+ imgSrc?: string;
5
6
  };
6
7
  declare function __VLS_template(): {
7
8
  attrs: Partial<{}>;
@@ -13,7 +14,7 @@ declare function __VLS_template(): {
13
14
  rootEl: HTMLDivElement;
14
15
  };
15
16
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
17
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
19
  export default _default;
19
20
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -57,7 +57,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
57
57
  };
58
58
  $forceUpdate: () => void;
59
59
  $nextTick: typeof import('vue').nextTick;
60
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
60
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (
61
+ /** @type { [typeof SpaceInfo, ] } */ ...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
61
62
  } & Readonly<{}> & Omit<Readonly<{
62
63
  loading: boolean;
63
64
  availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
@@ -4,6 +4,7 @@ export * from './ContextActions';
4
4
  export * from './FilesList';
5
5
  export * from './Filters';
6
6
  export * from './Modals';
7
+ export * from './Navigation';
7
8
  export * from './SideBar';
8
9
  export * from './Search';
9
10
  export * from './Spaces';
@@ -23,7 +24,6 @@ export { default as QuotaSelect } from './QuotaSelect.vue';
23
24
  export { default as SpaceQuota } from './SpaceQuota.vue';
24
25
  export { default as SearchBarFilter } from './SearchBarFilter.vue';
25
26
  export { default as ViewOptions } from './ViewOptions.vue';
26
- export { default as PortalTarget } from './PortalTarget.vue';
27
27
  export { default as CreateShortcutModal } from './CreateShortcutModal.vue';
28
28
  export { default as CreateLinkModal } from './CreateLinkModal.vue';
29
29
  export { default as VersionCheck } from './VersionCheck.vue';
@@ -10,3 +10,4 @@ export * from './useSpaceActionsShowMembers';
10
10
  export * from './useSpaceActionsNavigateToTrash';
11
11
  export * from './useSpaceActionsSetIcon';
12
12
  export * from './useSpaceActionsDeleteImage';
13
+ export * from './useSpaceActionsCreate';
@@ -0,0 +1,7 @@
1
+ import { SpaceAction } from '../types';
2
+ import { SpaceResource } from '@opencloud-eu/web-client';
3
+ export declare const useSpaceActionsCreate: ({ onSpaceCreated }?: {
4
+ onSpaceCreated?: (space: SpaceResource) => void;
5
+ }) => {
6
+ actions: import('vue').ComputedRef<SpaceAction[]>;
7
+ };
@@ -18,10 +18,10 @@ export * from './keyboardActions';
18
18
  export * from './links';
19
19
  export * from './loadingService';
20
20
  export * from './localStorage';
21
+ export * from './navItems';
21
22
  export * from './pagination';
22
23
  export * from './passwordPolicyService';
23
24
  export * from './piniaStores';
24
- export * from './portalTarget';
25
25
  export * from './previewService';
26
26
  export * from './requestHeaders';
27
27
  export * from './resources';
@@ -0,0 +1 @@
1
+ export * from './useNavItems';
@@ -0,0 +1,13 @@
1
+ import { ExtensionRegistry } from '../piniaStores';
2
+ import { AppNavigationItem } from '../../apps';
3
+ export interface NavItem extends Omit<AppNavigationItem, 'name'> {
4
+ name: string;
5
+ active: boolean;
6
+ }
7
+ export declare const getExtensionNavItems: ({ extensionRegistry, appId }: {
8
+ extensionRegistry: ExtensionRegistry;
9
+ appId: string;
10
+ }) => AppNavigationItem[];
11
+ export declare const useNavItems: () => {
12
+ navItems: import('vue').ComputedRef<NavItem[]>;
13
+ };