@opencloud-eu/web-pkg 4.2.1 → 4.3.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.
- package/dist/{TextEditor-BEOcGAsh.js → TextEditor-Cn7QTWpj.js} +42 -40
- package/dist/assets/{worker-DkMHRpBn.js → worker-B8_1fnv6.js} +20 -30
- package/dist/assets/{worker-CQqhh0uK.js → worker-CexULVXL.js} +19 -29
- package/dist/assets/{worker-C2IPj8GP.js → worker-DW5HxaGD.js} +20 -30
- package/dist/{index-C-VmIu2P.js → index-BAXp6cDe.js} +16984 -17334
- package/dist/src/components/AppBar/AppBar.vue.d.ts +2 -0
- package/dist/src/components/BatchActions.vue.d.ts +1 -0
- package/dist/src/components/ContextActions/ActionMenuItem.vue.d.ts +1 -0
- package/dist/src/components/ContextActions/ContextActionMenu.vue.d.ts +1 -0
- package/dist/src/components/CreateLinkModal.vue.d.ts +17 -141
- package/dist/src/components/FilesList/ContextActions.vue.d.ts +1 -0
- package/dist/src/components/FilesList/ResourceTable.vue.d.ts +457 -1475
- package/dist/src/components/FilesList/ResourceTile.vue.d.ts +4 -2
- package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +5 -3
- package/dist/src/components/ItemFilter.vue.d.ts +4 -0
- package/dist/src/components/SideBar/FileSideBar.vue.d.ts +60 -85
- package/dist/src/composables/actions/types.d.ts +1 -1
- package/dist/src/composables/filesList/useResourceRouteResolver.d.ts +3 -1
- package/dist/src/composables/piniaStores/capabilities.d.ts +27 -0
- package/dist/src/composables/piniaStores/config/config.d.ts +4 -1
- package/dist/src/composables/piniaStores/groupwareConfig/groupwareConfig.d.ts +297 -0
- package/dist/src/composables/piniaStores/groupwareConfig/index.d.ts +2 -0
- package/dist/src/composables/piniaStores/groupwareConfig/types.d.ts +140 -0
- package/dist/src/composables/piniaStores/index.d.ts +1 -0
- package/dist/src/composables/piniaStores/messages.d.ts +6 -6
- package/dist/src/composables/resources/index.d.ts +2 -0
- package/dist/src/composables/resources/useResourceViewDrag.d.ts +58 -0
- package/dist/src/composables/resources/useResourceViewHelpers.d.ts +77 -0
- package/dist/src/composables/selection/index.d.ts +0 -1
- package/dist/src/helpers/index.d.ts +1 -0
- package/dist/src/helpers/promise.d.ts +2 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/web-pkg.js +348 -336
- package/dist/web-pkg.umd.cjs +44 -64
- package/package.json +4 -4
- package/src/index.ts +0 -3
- package/dist/src/cern/composables/index.d.ts +0 -1
- package/dist/src/cern/composables/useGroupingSettings.d.ts +0 -34
- package/dist/src/cern/index.d.ts +0 -1
- package/dist/src/composables/selection/useToggleTile.d.ts +0 -4
|
@@ -110,13 +110,15 @@ declare function __VLS_template(): {
|
|
|
110
110
|
};
|
|
111
111
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
112
112
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
113
|
-
click: (event: MouseEvent | KeyboardEvent) => any;
|
|
114
113
|
contextmenu: (event: MouseEvent | KeyboardEvent) => any;
|
|
115
114
|
itemVisible: () => any;
|
|
115
|
+
fileNameClicked: (event: MouseEvent | KeyboardEvent) => any;
|
|
116
|
+
tileClicked: (event: [Resource, MouseEvent | KeyboardEvent]) => any;
|
|
116
117
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
117
|
-
onClick?: (event: MouseEvent | KeyboardEvent) => any;
|
|
118
118
|
onContextmenu?: (event: MouseEvent | KeyboardEvent) => any;
|
|
119
119
|
onItemVisible?: () => any;
|
|
120
|
+
onFileNameClicked?: (event: MouseEvent | KeyboardEvent) => any;
|
|
121
|
+
onTileClicked?: (event: [Resource, MouseEvent | KeyboardEvent]) => any;
|
|
120
122
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
121
123
|
observerTarget: {
|
|
122
124
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -3,7 +3,7 @@ import { Resource, SpaceResource } from '@opencloud-eu/web-client';
|
|
|
3
3
|
import { CreateTargetRouteOptions } from '../../helpers';
|
|
4
4
|
import { ImageDimension } from '../../constants';
|
|
5
5
|
import { default as ResourceTile } from './ResourceTile.vue';
|
|
6
|
-
import { SortDir, SortField } from '../../composables';
|
|
6
|
+
import { SortDir, SortField, FileActionOptions } from '../../composables';
|
|
7
7
|
import { SizeType } from '@opencloud-eu/design-system/helpers';
|
|
8
8
|
type ResourceTileRef = ComponentPublicInstance<typeof ResourceTile>;
|
|
9
9
|
type __VLS_Props = {
|
|
@@ -53,7 +53,7 @@ declare function __VLS_template(): {
|
|
|
53
53
|
}) => unknown;
|
|
54
54
|
};
|
|
55
55
|
refs: {
|
|
56
|
-
|
|
56
|
+
ghostElement: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
57
57
|
previewItems: {
|
|
58
58
|
type: import('vue').PropType<Resource[]>;
|
|
59
59
|
required: true;
|
|
@@ -122,6 +122,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
122
122
|
rowMounted: (resource: Resource, compnent: ResourceTileRef, dimension: ImageDimension) => any;
|
|
123
123
|
fileDropped: (id: string) => any;
|
|
124
124
|
itemVisible: (resource: Resource) => any;
|
|
125
|
+
fileClick: (options: FileActionOptions) => any;
|
|
125
126
|
"update:selectedIds": (ids: string[]) => any;
|
|
126
127
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
127
128
|
onSort?: (value: {
|
|
@@ -131,9 +132,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
131
132
|
onRowMounted?: (resource: Resource, compnent: ResourceTileRef, dimension: ImageDimension) => any;
|
|
132
133
|
onFileDropped?: (id: string) => any;
|
|
133
134
|
onItemVisible?: (resource: Resource) => any;
|
|
135
|
+
onFileClick?: (options: FileActionOptions) => any;
|
|
134
136
|
"onUpdate:selectedIds"?: (ids: string[]) => any;
|
|
135
137
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
136
|
-
|
|
138
|
+
ghostElement: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
137
139
|
previewItems: {
|
|
138
140
|
type: import('vue').PropType<Resource[]>;
|
|
139
141
|
required: true;
|
|
@@ -37,6 +37,7 @@ declare function __VLS_template(): {
|
|
|
37
37
|
readonly defaultValue?: string;
|
|
38
38
|
readonly disabled?: boolean;
|
|
39
39
|
readonly label: string;
|
|
40
|
+
readonly inlineLabel?: boolean;
|
|
40
41
|
readonly errorMessage?: string;
|
|
41
42
|
readonly errorMessageDebouncedTime?: number;
|
|
42
43
|
readonly fixMessageLine?: boolean;
|
|
@@ -45,6 +46,7 @@ declare function __VLS_template(): {
|
|
|
45
46
|
readonly requiredMark?: boolean;
|
|
46
47
|
readonly passwordPolicy?: import('@opencloud-eu/design-system/helpers').PasswordPolicy;
|
|
47
48
|
readonly generatePasswordMethod?: (...args: unknown[]) => string;
|
|
49
|
+
readonly hasBorder?: boolean;
|
|
48
50
|
readonly onChange?: (value: string) => any;
|
|
49
51
|
readonly onFocus?: (value: string) => any;
|
|
50
52
|
readonly "onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -137,6 +139,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
137
139
|
readonly defaultValue?: string;
|
|
138
140
|
readonly disabled?: boolean;
|
|
139
141
|
readonly label: string;
|
|
142
|
+
readonly inlineLabel?: boolean;
|
|
140
143
|
readonly errorMessage?: string;
|
|
141
144
|
readonly errorMessageDebouncedTime?: number;
|
|
142
145
|
readonly fixMessageLine?: boolean;
|
|
@@ -145,6 +148,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
145
148
|
readonly requiredMark?: boolean;
|
|
146
149
|
readonly passwordPolicy?: import('@opencloud-eu/design-system/helpers').PasswordPolicy;
|
|
147
150
|
readonly generatePasswordMethod?: (...args: unknown[]) => string;
|
|
151
|
+
readonly hasBorder?: boolean;
|
|
148
152
|
readonly onChange?: (value: string) => any;
|
|
149
153
|
readonly onFocus?: (value: string) => any;
|
|
150
154
|
readonly "onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -1,60 +1,40 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
1
|
import { SideBarPanelContext } from '../SideBar/types';
|
|
3
|
-
import { SpaceResource
|
|
4
|
-
|
|
5
|
-
isOpen:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
space: {
|
|
40
|
-
type: PropType<SpaceResource>;
|
|
41
|
-
required: false;
|
|
42
|
-
default: any;
|
|
43
|
-
};
|
|
44
|
-
}>> & Readonly<{}>, {
|
|
45
|
-
space: SpaceResource;
|
|
46
|
-
activePanel: string;
|
|
47
|
-
}, {}, {
|
|
48
|
-
FileInfo: import('vue').DefineComponent<{
|
|
49
|
-
isSubPanelActive?: boolean;
|
|
50
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
51
|
-
isSubPanelActive?: boolean;
|
|
52
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
53
|
-
SpaceInfo: import('vue').DefineComponent<{}, {
|
|
54
|
-
resource: SpaceResource;
|
|
55
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
56
|
-
InnerSideBar: {
|
|
57
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2
|
+
import { SpaceResource } from '@opencloud-eu/web-client';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
activePanel?: string;
|
|
6
|
+
space?: SpaceResource;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
9
|
+
sidebar: {
|
|
10
|
+
$: import('vue').ComponentInternalInstance;
|
|
11
|
+
$data: {};
|
|
12
|
+
$props: {
|
|
13
|
+
readonly isOpen: boolean;
|
|
14
|
+
readonly loading: boolean;
|
|
15
|
+
readonly availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
|
|
16
|
+
readonly panelContext: SideBarPanelContext<unknown, unknown, unknown>;
|
|
17
|
+
readonly activePanel?: string;
|
|
18
|
+
readonly onClose?: () => any;
|
|
19
|
+
readonly onSelectPanel?: (panel: string) => any;
|
|
20
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
21
|
+
$attrs: {
|
|
22
|
+
[x: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
$refs: {
|
|
25
|
+
[x: string]: unknown;
|
|
26
|
+
} & {
|
|
27
|
+
appSideBar: HTMLDivElement;
|
|
28
|
+
};
|
|
29
|
+
$slots: Readonly<{
|
|
30
|
+
[name: string]: import('vue').Slot<any>;
|
|
31
|
+
}>;
|
|
32
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
33
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
34
|
+
$host: Element | null;
|
|
35
|
+
$emit: ((event: "close") => void) & ((event: "selectPanel", panel: string) => void);
|
|
36
|
+
$el: HTMLDivElement;
|
|
37
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
58
38
|
isOpen: boolean;
|
|
59
39
|
loading: boolean;
|
|
60
40
|
availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
|
|
@@ -66,29 +46,27 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
66
46
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
67
47
|
close: () => any;
|
|
68
48
|
selectPanel: (panel: string) => any;
|
|
69
|
-
},
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
__isSuspense?: never;
|
|
91
|
-
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
49
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
50
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
51
|
+
created?: (() => void) | (() => void)[];
|
|
52
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
53
|
+
mounted?: (() => void) | (() => void)[];
|
|
54
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
55
|
+
updated?: (() => void) | (() => void)[];
|
|
56
|
+
activated?: (() => void) | (() => void)[];
|
|
57
|
+
deactivated?: (() => void) | (() => void)[];
|
|
58
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
59
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
60
|
+
destroyed?: (() => void) | (() => void)[];
|
|
61
|
+
unmounted?: (() => void) | (() => void)[];
|
|
62
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
63
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
64
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
65
|
+
};
|
|
66
|
+
$forceUpdate: () => void;
|
|
67
|
+
$nextTick: typeof import('vue').nextTick;
|
|
68
|
+
$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;
|
|
69
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
92
70
|
isOpen: boolean;
|
|
93
71
|
loading: boolean;
|
|
94
72
|
availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
|
|
@@ -97,10 +75,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
97
75
|
}> & Readonly<{
|
|
98
76
|
onClose?: () => any;
|
|
99
77
|
onSelectPanel?: (panel: string) => any;
|
|
100
|
-
}>,
|
|
101
|
-
close: () => any;
|
|
102
|
-
selectPanel: (panel: string) => any;
|
|
103
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
78
|
+
}>, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
104
79
|
$slots: Readonly<{
|
|
105
80
|
body: () => unknown;
|
|
106
81
|
rootHeader: () => unknown;
|
|
@@ -110,6 +85,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
110
85
|
rootHeader: () => unknown;
|
|
111
86
|
subHeader: () => unknown;
|
|
112
87
|
};
|
|
113
|
-
}
|
|
114
|
-
},
|
|
88
|
+
};
|
|
89
|
+
}, any>;
|
|
115
90
|
export default _default;
|
|
@@ -8,7 +8,7 @@ export type ActionOptions = Record<string, unknown | unknown[]>;
|
|
|
8
8
|
export interface Action<T = ActionOptions> {
|
|
9
9
|
name: string;
|
|
10
10
|
category?: StringUnionOrAnyString<'context' | 'share' | 'actions' | 'sidebar'>;
|
|
11
|
-
icon: string;
|
|
11
|
+
icon: string | ((options?: ActionOptions) => string);
|
|
12
12
|
iconFillType?: IconFillType;
|
|
13
13
|
appearance?: AppearanceType;
|
|
14
14
|
id?: string;
|
|
@@ -7,7 +7,9 @@ export type ResourceRouteResolverOptions = {
|
|
|
7
7
|
targetRouteCallback?: Ref<(arg: CreateTargetRouteOptions) => unknown>;
|
|
8
8
|
space?: Ref<SpaceResource>;
|
|
9
9
|
};
|
|
10
|
-
export declare const useResourceRouteResolver: (options?: ResourceRouteResolverOptions,
|
|
10
|
+
export declare const useResourceRouteResolver: (options?: ResourceRouteResolverOptions,
|
|
11
|
+
/** @deprecated */
|
|
12
|
+
context?: any) => {
|
|
11
13
|
createFileAction: (resource: Resource) => void;
|
|
12
14
|
createFolderLink: (createTargetRouteOptions: CreateTargetRouteOptions) => unknown;
|
|
13
15
|
};
|
|
@@ -178,6 +178,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
178
178
|
edit_login_allowed_disabled?: boolean;
|
|
179
179
|
};
|
|
180
180
|
};
|
|
181
|
+
groupware?: {
|
|
182
|
+
enabled?: boolean;
|
|
183
|
+
};
|
|
181
184
|
}, {
|
|
182
185
|
checksums?: {
|
|
183
186
|
preferredUploadType?: string;
|
|
@@ -304,6 +307,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
304
307
|
edit_login_allowed_disabled?: boolean;
|
|
305
308
|
};
|
|
306
309
|
};
|
|
310
|
+
groupware?: {
|
|
311
|
+
enabled?: boolean;
|
|
312
|
+
};
|
|
307
313
|
} | {
|
|
308
314
|
checksums?: {
|
|
309
315
|
preferredUploadType?: string;
|
|
@@ -481,6 +487,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
481
487
|
edit_login_allowed_disabled?: boolean;
|
|
482
488
|
};
|
|
483
489
|
};
|
|
490
|
+
groupware?: {
|
|
491
|
+
enabled?: boolean;
|
|
492
|
+
};
|
|
484
493
|
}>;
|
|
485
494
|
setCapabilities: (data: Capabilities) => void;
|
|
486
495
|
status: import('vue').ComputedRef<{
|
|
@@ -755,6 +764,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
755
764
|
edit_login_allowed_disabled?: boolean;
|
|
756
765
|
};
|
|
757
766
|
};
|
|
767
|
+
groupware?: {
|
|
768
|
+
enabled?: boolean;
|
|
769
|
+
};
|
|
758
770
|
}, {
|
|
759
771
|
checksums?: {
|
|
760
772
|
preferredUploadType?: string;
|
|
@@ -881,6 +893,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
881
893
|
edit_login_allowed_disabled?: boolean;
|
|
882
894
|
};
|
|
883
895
|
};
|
|
896
|
+
groupware?: {
|
|
897
|
+
enabled?: boolean;
|
|
898
|
+
};
|
|
884
899
|
} | {
|
|
885
900
|
checksums?: {
|
|
886
901
|
preferredUploadType?: string;
|
|
@@ -1058,6 +1073,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
1058
1073
|
edit_login_allowed_disabled?: boolean;
|
|
1059
1074
|
};
|
|
1060
1075
|
};
|
|
1076
|
+
groupware?: {
|
|
1077
|
+
enabled?: boolean;
|
|
1078
|
+
};
|
|
1061
1079
|
}>;
|
|
1062
1080
|
setCapabilities: (data: Capabilities) => void;
|
|
1063
1081
|
status: import('vue').ComputedRef<{
|
|
@@ -1332,6 +1350,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
1332
1350
|
edit_login_allowed_disabled?: boolean;
|
|
1333
1351
|
};
|
|
1334
1352
|
};
|
|
1353
|
+
groupware?: {
|
|
1354
|
+
enabled?: boolean;
|
|
1355
|
+
};
|
|
1335
1356
|
}, {
|
|
1336
1357
|
checksums?: {
|
|
1337
1358
|
preferredUploadType?: string;
|
|
@@ -1458,6 +1479,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
1458
1479
|
edit_login_allowed_disabled?: boolean;
|
|
1459
1480
|
};
|
|
1460
1481
|
};
|
|
1482
|
+
groupware?: {
|
|
1483
|
+
enabled?: boolean;
|
|
1484
|
+
};
|
|
1461
1485
|
} | {
|
|
1462
1486
|
checksums?: {
|
|
1463
1487
|
preferredUploadType?: string;
|
|
@@ -1635,6 +1659,9 @@ export declare const useCapabilityStore: import('pinia').StoreDefinition<"capabi
|
|
|
1635
1659
|
edit_login_allowed_disabled?: boolean;
|
|
1636
1660
|
};
|
|
1637
1661
|
};
|
|
1662
|
+
groupware?: {
|
|
1663
|
+
enabled?: boolean;
|
|
1664
|
+
};
|
|
1638
1665
|
}>;
|
|
1639
1666
|
setCapabilities: (data: Capabilities) => void;
|
|
1640
1667
|
status: import('vue').ComputedRef<{
|
|
@@ -250,6 +250,7 @@ export declare const useConfigStore: import('pinia').StoreDefinition<"config", P
|
|
|
250
250
|
href?: string;
|
|
251
251
|
}[]>;
|
|
252
252
|
serverUrl: import('vue').ComputedRef<string>;
|
|
253
|
+
groupwareUrl: import('vue').ComputedRef<string>;
|
|
253
254
|
loadConfig: (data: RawConfig) => void;
|
|
254
255
|
}, "apps" | "options" | "theme" | "customTranslations" | "openIdConnect" | "sentry" | "scripts" | "styles" | "oAuth2" | "externalApps">, Pick<{
|
|
255
256
|
options: import('vue').Ref<{
|
|
@@ -502,8 +503,9 @@ export declare const useConfigStore: import('pinia').StoreDefinition<"config", P
|
|
|
502
503
|
href?: string;
|
|
503
504
|
}[]>;
|
|
504
505
|
serverUrl: import('vue').ComputedRef<string>;
|
|
506
|
+
groupwareUrl: import('vue').ComputedRef<string>;
|
|
505
507
|
loadConfig: (data: RawConfig) => void;
|
|
506
|
-
}, "serverUrl" | "isOAuth2" | "isOIDC">, Pick<{
|
|
508
|
+
}, "serverUrl" | "isOAuth2" | "isOIDC" | "groupwareUrl">, Pick<{
|
|
507
509
|
options: import('vue').Ref<{
|
|
508
510
|
cernFeatures?: boolean;
|
|
509
511
|
concurrentRequests?: {
|
|
@@ -754,6 +756,7 @@ export declare const useConfigStore: import('pinia').StoreDefinition<"config", P
|
|
|
754
756
|
href?: string;
|
|
755
757
|
}[]>;
|
|
756
758
|
serverUrl: import('vue').ComputedRef<string>;
|
|
759
|
+
groupwareUrl: import('vue').ComputedRef<string>;
|
|
757
760
|
loadConfig: (data: RawConfig) => void;
|
|
758
761
|
}, "loadConfig">>;
|
|
759
762
|
export type ConfigStore = ReturnType<typeof useConfigStore>;
|