@opencloud-eu/web-pkg 6.1.0 → 6.2.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 (56) hide show
  1. package/dist/{TextEditor-B0ZZfO_w.js → TextEditor-CTRIgoeG.js} +1 -1
  2. package/dist/assets/worker-Bv-mZ-VL.js +25 -0
  3. package/dist/assets/worker-Dx2ttEp-.js +25 -0
  4. package/dist/assets/worker-nUcRt7qV.js +25 -0
  5. package/dist/{composables-TkULFBg4.js → composables-CAlEpA5b.js} +2457 -2450
  6. package/dist/src/components/AppBar/AppBar.vue.d.ts +34 -91
  7. package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +1 -9
  8. package/dist/src/components/AppTopBar.vue.d.ts +3 -11
  9. package/dist/src/components/Avatars/UserAvatar.vue.d.ts +1 -9
  10. package/dist/src/components/ContextActions/ActionMenuDropItem.vue.d.ts +1 -9
  11. package/dist/src/components/ContextActions/ContextActionMenu.vue.d.ts +9 -27
  12. package/dist/src/components/ContextActions/ContextMenuQuickAction.vue.d.ts +15 -125
  13. package/dist/src/components/CreateLinkModal.vue.d.ts +6 -14
  14. package/dist/src/components/CreateShortcutModal.vue.d.ts +19 -133
  15. package/dist/src/components/CustomComponentTarget.vue.d.ts +1 -9
  16. package/dist/src/components/FilesList/ContextActions.vue.d.ts +9 -27
  17. package/dist/src/components/FilesList/ResourceGhostElement.vue.d.ts +7 -17
  18. package/dist/src/components/FilesList/ResourceIcon.vue.d.ts +1 -9
  19. package/dist/src/components/FilesList/ResourceListItem.vue.d.ts +5 -12
  20. package/dist/src/components/FilesList/ResourceName.vue.d.ts +3 -9
  21. package/dist/src/components/FilesList/ResourceStatusIndicators.vue.d.ts +1 -9
  22. package/dist/src/components/FilesList/ResourceTable.vue.d.ts +8 -16
  23. package/dist/src/components/FilesList/ResourceTile.vue.d.ts +6 -14
  24. package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +7 -15
  25. package/dist/src/components/Filters/DateFilter.vue.d.ts +5 -13
  26. package/dist/src/components/ItemFilter.vue.d.ts +5 -13
  27. package/dist/src/components/NoContentMessage.vue.d.ts +1 -9
  28. package/dist/src/components/Search/ResourcePreview.vue.d.ts +1 -9
  29. package/dist/src/components/SideBar/CompareSaveDialog.vue.d.ts +1 -1
  30. package/dist/src/components/SideBar/FileSideBar.vue.d.ts +1 -9
  31. package/dist/src/components/SideBar/Files/FileInfo.vue.d.ts +1 -9
  32. package/dist/src/components/SideBar/SideBar.vue.d.ts +5 -13
  33. package/dist/src/components/SideBar/SideBarPanels.vue.d.ts +6 -14
  34. package/dist/src/components/SideBar/Spaces/Details/SpaceDetails.vue.d.ts +1 -9
  35. package/dist/src/components/SideBar/Spaces/Details/SpaceDetailsMultiple.vue.d.ts +1 -9
  36. package/dist/src/components/SideBar/Spaces/SpaceInfo.vue.d.ts +5 -1
  37. package/dist/src/components/SpaceQuota.vue.d.ts +1 -9
  38. package/dist/src/components/Spaces/QuotaModal.vue.d.ts +3 -11
  39. package/dist/src/components/Spaces/SpaceImageModal.vue.d.ts +2 -10
  40. package/dist/src/components/TextEditor/TextEditor.vue.d.ts +4 -12
  41. package/dist/src/components/TextEditor/index.d.ts +16 -38
  42. package/dist/src/components/ViewOptions.vue.d.ts +1 -9
  43. package/dist/src/components/index.d.ts +0 -1
  44. package/dist/src/composables/actions/types.d.ts +92 -2
  45. package/dist/src/composables/keyboardActions/useKeyboardActions.d.ts +1 -0
  46. package/dist/src/composables/piniaStores/avatars.d.ts +3 -3
  47. package/dist/src/composables/piniaStores/messages.d.ts +6 -588
  48. package/dist/src/composables/resources/useResourceViewDrag.d.ts +7 -17
  49. package/dist/src/composables/resources/useResourceViewHelpers.d.ts +7 -17
  50. package/dist/web-pkg.js +1225 -1295
  51. package/package.json +4 -4
  52. package/dist/assets/worker-C-Nrpmiq.js +0 -24
  53. package/dist/assets/worker-CzI1mBNb.js +0 -24
  54. package/dist/assets/worker-DDmV-och.js +0 -24
  55. package/dist/src/components/Navigation/MobileNav.vue.d.ts +0 -3
  56. package/dist/src/components/Navigation/index.d.ts +0 -1
@@ -17,41 +17,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
17
17
  inputUrl: Ref<string, string>;
18
18
  inputFilename: Ref<string, string>;
19
19
  dropRef: Readonly<import("vue").ShallowRef<ComponentPublicInstance<{
20
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
21
- title: {
22
- type: PropType<string>;
23
- };
24
- closeOnClick: {
25
- type: PropType<boolean>;
26
- };
27
- dropId: {
28
- type: PropType<string>;
29
- };
30
- mode: {
31
- type: PropType<"manual" | "click" | "hover">;
32
- };
33
- offset: {
34
- type: PropType<number>;
35
- };
36
- paddingSize: {
37
- type: PropType<import("@opencloud-eu/design-system/helpers").SizeType | "remove">;
38
- };
39
- position: {
40
- type: PropType<import("@floating-ui/dom").Placement>;
41
- };
42
- toggle: {
43
- type: PropType<string>;
44
- };
45
- enforceDropOnMobile: {
46
- type: PropType<boolean>;
47
- };
48
- teleport: {
49
- type: PropType<string>;
50
- };
51
- isMenu: {
52
- type: PropType<boolean>;
53
- };
54
- }>> & Readonly<{
20
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("@opencloud-eu/design-system/components").OcDropProps> & Readonly<{
55
21
  onHideDrop?: () => any;
56
22
  onShowDrop?: () => any;
57
23
  }>, {
@@ -61,9 +27,9 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
61
27
  noFocus?: boolean;
62
28
  }) => Promise<void>;
63
29
  hide: () => void;
64
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
65
- hideDrop: () => void;
66
- showDrop: () => void;
30
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
31
+ hideDrop: () => any;
32
+ showDrop: () => any;
67
33
  }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
68
34
  P: {};
69
35
  B: {};
@@ -71,41 +37,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
71
37
  C: {};
72
38
  M: {};
73
39
  Defaults: {};
74
- }, Readonly<import("vue").ExtractPropTypes<{
75
- title: {
76
- type: PropType<string>;
77
- };
78
- closeOnClick: {
79
- type: PropType<boolean>;
80
- };
81
- dropId: {
82
- type: PropType<string>;
83
- };
84
- mode: {
85
- type: PropType<"manual" | "click" | "hover">;
86
- };
87
- offset: {
88
- type: PropType<number>;
89
- };
90
- paddingSize: {
91
- type: PropType<import("@opencloud-eu/design-system/helpers").SizeType | "remove">;
92
- };
93
- position: {
94
- type: PropType<import("@floating-ui/dom").Placement>;
95
- };
96
- toggle: {
97
- type: PropType<string>;
98
- };
99
- enforceDropOnMobile: {
100
- type: PropType<boolean>;
101
- };
102
- teleport: {
103
- type: PropType<string>;
104
- };
105
- isMenu: {
106
- type: PropType<boolean>;
107
- };
108
- }>> & Readonly<{
40
+ }, Readonly<import("@opencloud-eu/design-system/components").OcDropProps> & Readonly<{
109
41
  onHideDrop?: () => any;
110
42
  onShowDrop?: () => any;
111
43
  }>, {
@@ -119,41 +51,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
119
51
  __isFragment?: never;
120
52
  __isTeleport?: never;
121
53
  __isSuspense?: never;
122
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
123
- title: {
124
- type: PropType<string>;
125
- };
126
- closeOnClick: {
127
- type: PropType<boolean>;
128
- };
129
- dropId: {
130
- type: PropType<string>;
131
- };
132
- mode: {
133
- type: PropType<"manual" | "click" | "hover">;
134
- };
135
- offset: {
136
- type: PropType<number>;
137
- };
138
- paddingSize: {
139
- type: PropType<import("@opencloud-eu/design-system/helpers").SizeType | "remove">;
140
- };
141
- position: {
142
- type: PropType<import("@floating-ui/dom").Placement>;
143
- };
144
- toggle: {
145
- type: PropType<string>;
146
- };
147
- enforceDropOnMobile: {
148
- type: PropType<boolean>;
149
- };
150
- teleport: {
151
- type: PropType<string>;
152
- };
153
- isMenu: {
154
- type: PropType<boolean>;
155
- };
156
- }>> & Readonly<{
54
+ } & import("vue").ComponentOptionsBase<Readonly<import("@opencloud-eu/design-system/components").OcDropProps> & Readonly<{
157
55
  onHideDrop?: () => any;
158
56
  onShowDrop?: () => any;
159
57
  }>, {
@@ -163,11 +61,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
163
61
  noFocus?: boolean;
164
62
  }) => Promise<void>;
165
63
  hide: () => void;
166
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
167
- hideDrop: () => void;
168
- showDrop: () => void;
64
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
65
+ hideDrop: () => any;
66
+ showDrop: () => any;
169
67
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
170
- $slots: import("node_modules/@opencloud-eu/design-system/src/components/OcDrop/OcDrop.vue").Slots;
68
+ $slots: import("@opencloud-eu/design-system/components").OcDropSlots;
171
69
  })>>>;
172
70
  dropItemUrl: import("vue").ComputedRef<string>;
173
71
  searchResult: Ref<SearchResult, SearchResult>;
@@ -209,25 +107,13 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
209
107
  }>> & Readonly<{
210
108
  "onUpdate:confirmDisabled"?: (...args: any[]) => any;
211
109
  }>, {}, {}, {
212
- ResourcePreview: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
213
- searchResult: {
214
- type: PropType<SearchResultValue>;
215
- };
216
- isClickable: {
217
- type: PropType<boolean>;
218
- };
219
- term: {
220
- type: PropType<string>;
221
- };
222
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
223
- searchResult: {
224
- type: PropType<SearchResultValue>;
225
- };
226
- isClickable: {
227
- type: PropType<boolean>;
228
- };
229
- term: {
230
- type: PropType<string>;
231
- };
232
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
110
+ ResourcePreview: import("vue").DefineComponent<{
111
+ searchResult?: SearchResultValue;
112
+ isClickable?: boolean;
113
+ term?: string;
114
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
115
+ searchResult?: SearchResultValue;
116
+ isClickable?: boolean;
117
+ term?: string;
118
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
233
119
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -2,14 +2,6 @@ import { CustomComponentExtension, ExtensionPoint } from '../composables';
2
2
  type __VLS_Props = {
3
3
  extensionPoint: ExtensionPoint<CustomComponentExtension>;
4
4
  };
5
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
6
  declare const _default: typeof __VLS_export;
7
7
  export default _default;
8
- type __VLS_TypePropsToOption<T> = {
9
- [K in keyof T]-?: {} extends Pick<T, K> ? {
10
- type: import('vue').PropType<Required<T>[K]>;
11
- } : {
12
- type: import('vue').PropType<T[K]>;
13
- required: true;
14
- };
15
- };
@@ -47,33 +47,15 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
47
47
  }>> & Readonly<{}>, {
48
48
  appearance: import("@opencloud-eu/design-system/helpers").AppearanceType;
49
49
  }, {}, {
50
- ActionMenuDropItem: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
51
- menuSectionDrop: {
52
- type: PropType<import("../ContextActions").MenuSectionDrop>;
53
- required: true;
54
- };
55
- appearance: {
56
- type: PropType<import("@opencloud-eu/design-system/helpers").AppearanceType>;
57
- required: true;
58
- };
59
- actionOptions: {
60
- type: PropType<import("../../composables").ActionOptions>;
61
- required: true;
62
- };
63
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
64
- menuSectionDrop: {
65
- type: PropType<import("../ContextActions").MenuSectionDrop>;
66
- required: true;
67
- };
68
- appearance: {
69
- type: PropType<import("@opencloud-eu/design-system/helpers").AppearanceType>;
70
- required: true;
71
- };
72
- actionOptions: {
73
- type: PropType<import("../../composables").ActionOptions>;
74
- required: true;
75
- };
76
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
50
+ ActionMenuDropItem: import("vue").DefineComponent<{
51
+ menuSectionDrop: import("../ContextActions").MenuSectionDrop;
52
+ appearance: import("@opencloud-eu/design-system/helpers").AppearanceType;
53
+ actionOptions: import("../../composables").ActionOptions;
54
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
55
+ menuSectionDrop: import("../ContextActions").MenuSectionDrop;
56
+ appearance: import("@opencloud-eu/design-system/helpers").AppearanceType;
57
+ actionOptions: import("../../composables").ActionOptions;
58
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
77
59
  ActionMenuItem: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
78
60
  action: {
79
61
  type: PropType<import("../../composables").Action>;
@@ -21,21 +21,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
21
21
  required: true;
22
22
  };
23
23
  }>> & Readonly<{}>, {}, {}, {
24
- ResourceIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
25
- resource: {
26
- type: PropType<Resource | import("@opencloud-eu/web-client").SpaceResource>;
27
- required: true;
28
- };
29
- size: {
30
- type: PropType<import("@opencloud-eu/design-system/helpers").SizeType>;
31
- };
32
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
- resource: {
34
- type: PropType<Resource | import("@opencloud-eu/web-client").SpaceResource>;
35
- required: true;
36
- };
37
- size: {
38
- type: PropType<import("@opencloud-eu/design-system/helpers").SizeType>;
39
- };
40
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
24
+ ResourceIcon: import("vue").DefineComponent<{
25
+ resource: Resource | import("@opencloud-eu/web-client").SpaceResource;
26
+ size?: import("@opencloud-eu/design-system/helpers").SizeType;
27
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
28
+ resource: Resource | import("@opencloud-eu/web-client").SpaceResource;
29
+ size?: import("@opencloud-eu/design-system/helpers").SizeType;
30
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
41
31
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -4,14 +4,6 @@ type __VLS_Props = {
4
4
  resource: Resource | SpaceResource;
5
5
  size?: SizeType;
6
6
  };
7
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
8
  declare const _default: typeof __VLS_export;
9
9
  export default _default;
10
- type __VLS_TypePropsToOption<T> = {
11
- [K in keyof T]-?: {} extends Pick<T, K> ? {
12
- type: import('vue').PropType<Required<T>[K]>;
13
- } : {
14
- type: import('vue').PropType<T[K]>;
15
- required: true;
16
- };
17
- };
@@ -12,19 +12,12 @@ type __VLS_Props = {
12
12
  isThumbnailDisplayed?: boolean;
13
13
  isIconDisplayed?: boolean;
14
14
  isResourceClickable?: boolean;
15
+ isFavoriteDisplayed?: boolean;
15
16
  };
16
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
- click: (event: MouseEvent) => void;
18
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{
17
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
18
+ click: (event: MouseEvent) => any;
19
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
19
20
  onClick?: (event: MouseEvent) => any;
20
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
21
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
22
  declare const _default: typeof __VLS_export;
22
23
  export default _default;
23
- type __VLS_TypePropsToOption<T> = {
24
- [K in keyof T]-?: {} extends Pick<T, K> ? {
25
- type: import('vue').PropType<Required<T>[K]>;
26
- } : {
27
- type: import('vue').PropType<T[K]>;
28
- required: true;
29
- };
30
- };
@@ -6,16 +6,10 @@ type __VLS_Props = {
6
6
  extension?: string;
7
7
  isPathDisplayed?: boolean;
8
8
  isExtensionDisplayed?: boolean;
9
+ isFavoriteDisplayed?: boolean;
9
10
  truncateName?: boolean;
11
+ isFavorite?: boolean;
10
12
  };
11
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
13
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
14
  declare const _default: typeof __VLS_export;
13
15
  export default _default;
14
- type __VLS_TypePropsToOption<T> = {
15
- [K in keyof T]-?: {} extends Pick<T, K> ? {
16
- type: import('vue').PropType<Required<T>[K]>;
17
- } : {
18
- type: import('vue').PropType<T[K]>;
19
- required: true;
20
- };
21
- };
@@ -5,14 +5,6 @@ type __VLS_Props = {
5
5
  space?: SpaceResource;
6
6
  filter?: (indicator: ResourceIndicator) => boolean;
7
7
  };
8
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
9
  declare const _default: typeof __VLS_export;
10
10
  export default _default;
11
- type __VLS_TypePropsToOption<T> = {
12
- [K in keyof T]-?: {} extends Pick<T, K> ? {
13
- type: import('vue').PropType<Required<T>[K]>;
14
- } : {
15
- type: import('vue').PropType<T[K]>;
16
- required: true;
17
- };
18
- };
@@ -55,16 +55,16 @@ type __VLS_Slots = {
55
55
  }) => unknown;
56
56
  footer?: () => unknown;
57
57
  };
58
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
59
- fileClick: (options: FileActionOptions) => void;
58
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
60
59
  sort: (options: {
61
60
  sortBy: string;
62
61
  sortDir: SortDir;
63
- }) => void;
64
- fileDropped: (id: string) => void;
65
- "update:selectedIds": (selectedIds: string[]) => void;
66
- "update:modelValue": (value: Resource[]) => void;
67
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{
62
+ }) => any;
63
+ fileDropped: (id: string) => any;
64
+ "update:modelValue": (value: Resource[]) => any;
65
+ fileClick: (options: FileActionOptions) => any;
66
+ "update:selectedIds": (selectedIds: string[]) => any;
67
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
68
68
  onSort?: (options: {
69
69
  sortBy: string;
70
70
  sortDir: SortDir;
@@ -73,18 +73,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
73
73
  "onUpdate:modelValue"?: (value: Resource[]) => any;
74
74
  onFileClick?: (options: FileActionOptions) => any;
75
75
  "onUpdate:selectedIds"?: (selectedIds: string[]) => any;
76
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
76
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
77
77
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
78
78
  declare const _default: typeof __VLS_export;
79
79
  export default _default;
80
- type __VLS_TypePropsToOption<T> = {
81
- [K in keyof T]-?: {} extends Pick<T, K> ? {
82
- type: import('vue').PropType<Required<T>[K]>;
83
- } : {
84
- type: import('vue').PropType<T[K]>;
85
- required: true;
86
- };
87
- };
88
80
  type __VLS_WithSlots<T, S> = T & {
89
81
  new (): {
90
82
  $slots: S;
@@ -34,12 +34,12 @@ type __VLS_Slots = {
34
34
  item: Resource;
35
35
  }) => unknown;
36
36
  };
37
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
38
- fileNameClicked: (event: MouseEvent | KeyboardEvent) => void;
39
- contextmenu: (event: MouseEvent | KeyboardEvent) => void;
40
- itemVisible: () => void;
41
- tileClicked: (event: [Resource, MouseEvent | KeyboardEvent]) => void;
42
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{
37
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
38
+ contextmenu: (event: MouseEvent | KeyboardEvent) => any;
39
+ itemVisible: () => any;
40
+ fileNameClicked: (event: MouseEvent | KeyboardEvent) => any;
41
+ tileClicked: (event: [Resource, MouseEvent | KeyboardEvent]) => any;
42
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
43
43
  onContextmenu?: (event: MouseEvent | KeyboardEvent) => any;
44
44
  onItemVisible?: () => any;
45
45
  onFileNameClicked?: (event: MouseEvent | KeyboardEvent) => any;
@@ -48,14 +48,6 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
48
48
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
49
49
  declare const _default: typeof __VLS_export;
50
50
  export default _default;
51
- type __VLS_TypePropsToOption<T> = {
52
- [K in keyof T]-?: {} extends Pick<T, K> ? {
53
- type: import('vue').PropType<Required<T>[K]>;
54
- } : {
55
- type: import('vue').PropType<T[K]>;
56
- required: true;
57
- };
58
- };
59
51
  type __VLS_WithSlots<T, S> = T & {
60
52
  new (): {
61
53
  $slots: S;
@@ -30,16 +30,16 @@ type __VLS_Slots = {
30
30
  resource: Resource;
31
31
  }) => unknown;
32
32
  };
33
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
- fileClick: (options: FileActionOptions) => void;
35
- fileDropped: (id: string) => void;
33
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
36
34
  sort: (value: {
37
35
  sortBy: string;
38
36
  sortDir: SortDir;
39
- }) => void;
40
- itemVisible: (resource: Resource) => void;
41
- "update:selectedIds": (ids: string[]) => void;
42
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{
37
+ }) => any;
38
+ fileDropped: (id: string) => any;
39
+ itemVisible: (resource: Resource) => any;
40
+ fileClick: (options: FileActionOptions) => any;
41
+ "update:selectedIds": (ids: string[]) => any;
42
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
43
43
  onSort?: (value: {
44
44
  sortBy: string;
45
45
  sortDir: SortDir;
@@ -52,14 +52,6 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
52
52
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
53
53
  declare const _default: typeof __VLS_export;
54
54
  export default _default;
55
- type __VLS_TypePropsToOption<T> = {
56
- [K in keyof T]-?: {} extends Pick<T, K> ? {
57
- type: import('vue').PropType<Required<T>[K]>;
58
- } : {
59
- type: import('vue').PropType<T[K]>;
60
- required: true;
61
- };
62
- };
63
55
  type __VLS_WithSlots<T, S> = T & {
64
56
  new (): {
65
57
  $slots: S;
@@ -12,24 +12,16 @@ declare var __VLS_28: {
12
12
  type __VLS_Slots = {} & {
13
13
  item?: (props: typeof __VLS_28) => any;
14
14
  };
15
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {
15
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
16
16
  setSelectedItemsBasedOnQuery: () => void;
17
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
- selectionChange: (value: Item) => void;
19
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{
17
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
18
+ selectionChange: (value: Item) => any;
19
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
20
20
  onSelectionChange?: (value: Item) => any;
21
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
21
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
22
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
23
23
  declare const _default: typeof __VLS_export;
24
24
  export default _default;
25
- type __VLS_TypePropsToOption<T> = {
26
- [K in keyof T]-?: {} extends Pick<T, K> ? {
27
- type: import('vue').PropType<Required<T>[K]>;
28
- } : {
29
- type: import('vue').PropType<T[K]>;
30
- required: true;
31
- };
32
- };
33
25
  type __VLS_WithSlots<T, S> = T & {
34
26
  new (): {
35
27
  $slots: S;
@@ -16,24 +16,16 @@ type __VLS_Slots = {
16
16
  image?: (item: Item) => unknown;
17
17
  item?: (item: Item) => unknown;
18
18
  };
19
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {
19
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
20
20
  setSelectedItemsBasedOnQuery: () => void;
21
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
- selectionChange: (selectedItems: any[]) => void;
23
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{
21
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
22
+ selectionChange: (selectedItems: any[]) => any;
23
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
24
24
  onSelectionChange?: (selectedItems: any[]) => any;
25
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
25
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
26
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
27
  declare const _default: typeof __VLS_export;
28
28
  export default _default;
29
- type __VLS_TypePropsToOption<T> = {
30
- [K in keyof T]-?: {} extends Pick<T, K> ? {
31
- type: import('vue').PropType<Required<T>[K]>;
32
- } : {
33
- type: import('vue').PropType<T[K]>;
34
- required: true;
35
- };
36
- };
37
29
  type __VLS_WithSlots<T, S> = T & {
38
30
  new (): {
39
31
  $slots: S;
@@ -10,18 +10,10 @@ type __VLS_Slots = {} & {
10
10
  } & {
11
11
  callToAction?: (props: typeof __VLS_13) => any;
12
12
  };
13
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
14
14
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
15
  declare const _default: typeof __VLS_export;
16
16
  export default _default;
17
- type __VLS_TypePropsToOption<T> = {
18
- [K in keyof T]-?: {} extends Pick<T, K> ? {
19
- type: import('vue').PropType<Required<T>[K]>;
20
- } : {
21
- type: import('vue').PropType<T[K]>;
22
- required: true;
23
- };
24
- };
25
17
  type __VLS_WithSlots<T, S> = T & {
26
18
  new (): {
27
19
  $slots: S;
@@ -4,14 +4,6 @@ type __VLS_Props = {
4
4
  isClickable?: boolean;
5
5
  term?: string;
6
6
  };
7
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
8
  declare const _default: typeof __VLS_export;
9
9
  export default _default;
10
- type __VLS_TypePropsToOption<T> = {
11
- [K in keyof T]-?: {} extends Pick<T, K> ? {
12
- type: import('vue').PropType<Required<T>[K]>;
13
- } : {
14
- type: import('vue').PropType<T[K]>;
15
- required: true;
16
- };
17
- };
@@ -18,7 +18,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
18
18
  }, {}, {
19
19
  unsavedChanges(): boolean;
20
20
  unsavedChangesText(): string;
21
- }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("confirm" | "revert")[], "confirm" | "revert", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("revert" | "confirm")[], "revert" | "confirm", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
22
22
  originalObject: {
23
23
  type: ObjectConstructor;
24
24
  required: true;
@@ -2,14 +2,6 @@ import { SpaceResource } from '@opencloud-eu/web-client';
2
2
  type __VLS_Props = {
3
3
  space?: SpaceResource;
4
4
  };
5
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
6
  declare const _default: typeof __VLS_export;
7
7
  export default _default;
8
- type __VLS_TypePropsToOption<T> = {
9
- [K in keyof T]-?: {} extends Pick<T, K> ? {
10
- type: import('vue').PropType<Required<T>[K]>;
11
- } : {
12
- type: import('vue').PropType<T[K]>;
13
- required: true;
14
- };
15
- };
@@ -1,14 +1,6 @@
1
1
  type __VLS_Props = {
2
2
  isSubPanelActive?: boolean;
3
3
  };
4
- declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
5
  declare const _default: typeof __VLS_export;
6
6
  export default _default;
7
- type __VLS_TypePropsToOption<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<Required<T>[K]>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };