@opencloud-eu/web-pkg 5.0.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.
- package/dist/{TextEditor-CJgYG8Kl.js → TextEditor-D-HQDUkm.js} +3 -5
- package/dist/assets/worker-CVwKToFD.js +21 -0
- package/dist/assets/worker-DJbU-qfq.js +21 -0
- package/dist/assets/worker-DyU7W9CZ.js +21 -0
- package/dist/index-OU30YA6H.js +25032 -0
- package/dist/src/apps/types.d.ts +0 -3
- package/dist/src/components/AppBar/AppBar.vue.d.ts +2 -9
- package/dist/src/components/AppBar/index.d.ts +0 -1
- package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +1 -1
- package/dist/src/components/AppTopBar.vue.d.ts +1 -1
- package/dist/src/components/ContextActions/ContextMenuQuickAction.vue.d.ts +409 -11
- package/dist/src/components/CreateShortcutModal.vue.d.ts +222 -0
- package/dist/src/components/CustomComponentTarget.vue.d.ts +4 -14
- package/dist/src/components/FilesList/ResourceStatusIndicators.vue.d.ts +1 -1
- package/dist/src/components/FilesList/ResourceTable.vue.d.ts +0 -1
- package/dist/src/components/Filters/DateFilter.vue.d.ts +500 -0
- package/dist/src/components/Navigation/MobileNav.vue.d.ts +2 -0
- package/dist/src/components/Navigation/index.d.ts +1 -0
- package/dist/src/components/NoContentMessage.vue.d.ts +3 -2
- package/dist/src/components/SideBar/FileSideBar.vue.d.ts +4 -13
- package/dist/src/components/SideBar/SideBar.vue.d.ts +3 -9
- package/dist/src/components/SideBar/SideBarPanels.vue.d.ts +38 -0
- package/dist/src/components/SideBar/index.d.ts +1 -0
- package/dist/src/components/index.d.ts +1 -1
- package/dist/src/composables/actions/files/index.d.ts +1 -0
- package/dist/src/composables/actions/files/useFileActionFallbackToDownload.d.ts +4 -0
- package/dist/src/composables/actions/spaces/index.d.ts +1 -0
- package/dist/src/composables/actions/spaces/useSpaceActionsCreate.d.ts +7 -0
- package/dist/src/composables/folderLink/useFolderLink.d.ts +1 -1
- package/dist/src/composables/index.d.ts +1 -2
- package/dist/src/composables/navItems/index.d.ts +1 -0
- package/dist/src/composables/navItems/useNavItems.d.ts +13 -0
- package/dist/src/composables/piniaStores/auth.d.ts +8 -2
- package/dist/src/composables/piniaStores/avatars.d.ts +1 -1
- package/dist/src/composables/piniaStores/extensionRegistry/types.d.ts +14 -1
- package/dist/src/composables/piniaStores/index.d.ts +4 -3
- package/dist/src/composables/piniaStores/sideBar.d.ts +32 -0
- package/dist/src/composables/piniaStores/user.d.ts +1 -1
- package/dist/src/composables/resources/index.d.ts +1 -0
- package/dist/src/composables/resources/useResourceIndicators.d.ts +19 -0
- package/dist/src/composables/resources/useResourceViewContextMenu.d.ts +4 -3
- package/dist/src/composables/resources/useResourceViewHelpers.d.ts +2 -2
- package/dist/src/composables/spaces/useCreateSpace.d.ts +1 -0
- package/dist/src/constants.d.ts +0 -6
- package/dist/src/extensionPoints.d.ts +3 -0
- package/dist/src/helpers/filesize.d.ts +0 -7
- package/dist/src/helpers/index.d.ts +1 -2
- package/dist/src/helpers/versions.d.ts +5 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/web-pkg.js +301 -300
- package/dist/web-pkg.umd.cjs +14 -66
- package/package.json +5 -7
- package/src/index.ts +1 -0
- package/dist/assets/worker-Bc2UmjVr.js +0 -40
- package/dist/assets/worker-BeDmEhWu.js +0 -40
- package/dist/assets/worker-DWoO7i6z.js +0 -40
- package/dist/index-D-EuklHo.js +0 -33782
- package/dist/src/components/AppBar/CreateSpace.vue.d.ts +0 -18
- package/dist/src/components/PortalTarget.vue.d.ts +0 -41
- package/dist/src/components/TextEditor/TextEditor.vue.d.ts +0 -165
- package/dist/src/components/TextEditor/index.d.ts +0 -161
- package/dist/src/composables/portalTarget/eventTopics.d.ts +0 -3
- package/dist/src/composables/portalTarget/index.d.ts +0 -2
- package/dist/src/composables/portalTarget/usePortalTarget.d.ts +0 -4
- package/dist/src/composables/sideBar/eventTopics.d.ts +0 -7
- package/dist/src/composables/sideBar/index.d.ts +0 -2
- package/dist/src/composables/sideBar/useSideBar.d.ts +0 -12
- package/dist/src/helpers/contextMenuDropdown.d.ts +0 -7
- package/dist/src/helpers/statusIndicators.d.ts +0 -23
- package/dist/src/services/passwordPolicy/rules.d.ts +0 -69
|
@@ -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,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
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
|
|
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,
|
|
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 & {
|
|
@@ -1,20 +1,16 @@
|
|
|
1
1
|
import { SideBarPanelContext } from '../SideBar/types';
|
|
2
2
|
import { SpaceResource } from '@opencloud-eu/web-client';
|
|
3
3
|
type __VLS_Props = {
|
|
4
|
-
isOpen: boolean;
|
|
5
|
-
activePanel?: string;
|
|
6
4
|
space?: SpaceResource;
|
|
7
5
|
};
|
|
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,
|
|
6
|
+
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, true, {
|
|
9
7
|
sidebar: {
|
|
10
8
|
$: import('vue').ComponentInternalInstance;
|
|
11
9
|
$data: {};
|
|
12
10
|
$props: {
|
|
13
|
-
readonly isOpen: boolean;
|
|
14
11
|
readonly loading: boolean;
|
|
15
12
|
readonly availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
|
|
16
13
|
readonly panelContext: SideBarPanelContext<unknown, unknown, unknown>;
|
|
17
|
-
readonly activePanel?: string;
|
|
18
14
|
readonly onClose?: () => any;
|
|
19
15
|
readonly onSelectPanel?: (panel: string) => any;
|
|
20
16
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
@@ -23,8 +19,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
23
19
|
};
|
|
24
20
|
$refs: {
|
|
25
21
|
[x: string]: unknown;
|
|
26
|
-
} & {
|
|
27
|
-
appSideBar: HTMLDivElement;
|
|
28
22
|
};
|
|
29
23
|
$slots: Readonly<{
|
|
30
24
|
[name: string]: import('vue').Slot<any>;
|
|
@@ -33,13 +27,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
33
27
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
34
28
|
$host: Element | null;
|
|
35
29
|
$emit: ((event: "close") => void) & ((event: "selectPanel", panel: string) => void);
|
|
36
|
-
$el:
|
|
30
|
+
$el: any;
|
|
37
31
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
38
|
-
isOpen: boolean;
|
|
39
32
|
loading: boolean;
|
|
40
33
|
availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
|
|
41
34
|
panelContext: SideBarPanelContext<unknown, unknown, unknown>;
|
|
42
|
-
activePanel?: string;
|
|
43
35
|
}> & Readonly<{
|
|
44
36
|
onClose?: () => any;
|
|
45
37
|
onSelectPanel?: (panel: string) => any;
|
|
@@ -65,13 +57,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
65
57
|
};
|
|
66
58
|
$forceUpdate: () => void;
|
|
67
59
|
$nextTick: typeof import('vue').nextTick;
|
|
68
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (
|
|
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;
|
|
69
62
|
} & Readonly<{}> & Omit<Readonly<{
|
|
70
|
-
isOpen: boolean;
|
|
71
63
|
loading: boolean;
|
|
72
64
|
availablePanels: import('.').SideBarPanel<unknown, unknown, unknown>[];
|
|
73
65
|
panelContext: SideBarPanelContext<unknown, unknown, unknown>;
|
|
74
|
-
activePanel?: string;
|
|
75
66
|
}> & Readonly<{
|
|
76
67
|
onClose?: () => any;
|
|
77
68
|
onSelectPanel?: (panel: string) => any;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { SideBarPanel, SideBarPanelContext } from './types';
|
|
2
2
|
type __VLS_Props = {
|
|
3
|
-
isOpen: boolean;
|
|
4
3
|
loading: boolean;
|
|
5
4
|
availablePanels: SideBarPanel<unknown, unknown, unknown>[];
|
|
6
5
|
panelContext: SideBarPanelContext<unknown, unknown, unknown>;
|
|
7
|
-
activePanel?: string;
|
|
8
6
|
};
|
|
9
7
|
declare function __VLS_template(): {
|
|
10
8
|
attrs: Partial<{}>;
|
|
@@ -17,10 +15,8 @@ declare function __VLS_template(): {
|
|
|
17
15
|
rootHeader: () => unknown;
|
|
18
16
|
subHeader: () => unknown;
|
|
19
17
|
};
|
|
20
|
-
refs: {
|
|
21
|
-
|
|
22
|
-
};
|
|
23
|
-
rootEl: HTMLDivElement;
|
|
18
|
+
refs: {};
|
|
19
|
+
rootEl: any;
|
|
24
20
|
};
|
|
25
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
22
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -29,9 +25,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
29
25
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
30
26
|
onClose?: () => any;
|
|
31
27
|
onSelectPanel?: (panel: string) => any;
|
|
32
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
33
|
-
appSideBar: HTMLDivElement;
|
|
34
|
-
}, HTMLDivElement>;
|
|
28
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
35
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
30
|
export default _default;
|
|
37
31
|
type __VLS_WithTemplateSlots<T, S> = T & {
|