@opencloud-eu/web-pkg 4.2.0 → 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-DjjOAW4z.js → TextEditor-Cn7QTWpj.js} +43 -40
- package/dist/assets/worker-B8_1fnv6.js +40 -0
- package/dist/assets/worker-CexULVXL.js +40 -0
- package/dist/assets/{worker-CvdOYtKy.js → worker-DW5HxaGD.js} +20 -30
- package/dist/{index-R7qeOPe_.js → index-BAXp6cDe.js} +17735 -18054
- 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/ContextActions/ContextMenuQuickAction.vue.d.ts +32 -38
- package/dist/src/components/CreateLinkModal.vue.d.ts +19 -159
- package/dist/src/components/FilesList/ContextActions.vue.d.ts +1 -0
- package/dist/src/components/FilesList/ResourceTable.vue.d.ts +480 -1481
- package/dist/src/components/FilesList/ResourceTile.vue.d.ts +4 -2
- package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +5 -5
- 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/clipboard/useClipboard.d.ts +3 -0
- package/dist/src/composables/filesList/useResourceRouteResolver.d.ts +3 -1
- package/dist/src/composables/links/index.d.ts +1 -0
- package/dist/src/composables/links/useCopyLink.d.ts +14 -0
- package/dist/src/composables/piniaStores/capabilities.d.ts +40 -1
- 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/useGetResourceContext.d.ts +1 -1
- 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/helpers/resource/index.d.ts +1 -0
- package/dist/src/helpers/resource/isItemInCurrentFolder.d.ts +5 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/src/services/archiver.d.ts +1 -0
- package/dist/src/services/cache.d.ts +1 -0
- package/dist/web-pkg.js +348 -334
- package/dist/web-pkg.umd.cjs +46 -66
- package/package.json +4 -4
- package/src/index.ts +0 -3
- package/dist/assets/worker-CGWVcik_.js +0 -50
- package/dist/assets/worker-DLek5ZML.js +0 -50
- 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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './useGroupingSettings';
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { IncomingShareResource } from '@opencloud-eu/web-client';
|
|
2
|
-
import { Ref } from 'vue';
|
|
3
|
-
export declare const useGroupingSettings: ({ sortBy, sortDir }: {
|
|
4
|
-
sortBy: Ref<string>;
|
|
5
|
-
sortDir: Ref<string>;
|
|
6
|
-
}) => {
|
|
7
|
-
groupingSettings: import('vue').ComputedRef<{
|
|
8
|
-
groupingBy: string;
|
|
9
|
-
showGroupingOptions: boolean;
|
|
10
|
-
groupingFunctions: {
|
|
11
|
-
'Name alphabetically': (row: IncomingShareResource) => string;
|
|
12
|
-
'Shared on': (row: IncomingShareResource) => "Older" | "Recently" | "Last month";
|
|
13
|
-
'Share owner': (row: IncomingShareResource) => string;
|
|
14
|
-
None: () => void;
|
|
15
|
-
};
|
|
16
|
-
sortGroups: {
|
|
17
|
-
'Name alphabetically': (groups: {
|
|
18
|
-
name: string;
|
|
19
|
-
}[]) => {
|
|
20
|
-
name: string;
|
|
21
|
-
}[];
|
|
22
|
-
'Shared on': (groups: {
|
|
23
|
-
name: string;
|
|
24
|
-
}[]) => {
|
|
25
|
-
name: string;
|
|
26
|
-
}[];
|
|
27
|
-
'Share owner': (groups: {
|
|
28
|
-
name: string;
|
|
29
|
-
}[]) => {
|
|
30
|
-
name: string;
|
|
31
|
-
}[];
|
|
32
|
-
};
|
|
33
|
-
}>;
|
|
34
|
-
};
|
package/dist/src/cern/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './composables';
|