@opencloud-eu/web-pkg 4.2.1 → 5.0.0-alpha.1
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-uEaAtt7z.js} +44 -42
- package/dist/assets/worker-Br2EoHIh.js +40 -0
- package/dist/assets/{worker-DkMHRpBn.js → worker-CL8AMTxB.js} +20 -30
- package/dist/assets/worker-SrzUf4Ns.js +40 -0
- package/dist/{index-C-VmIu2P.js → index-BwyOzVbn.js} +18618 -18873
- package/dist/src/apps/types.d.ts +1 -0
- 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 +2 -2
- 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/ResourceGhostElement.vue.d.ts +7 -28
- package/dist/src/components/FilesList/ResourceIcon.vue.d.ts +5 -44
- package/dist/src/components/FilesList/ResourceTable.vue.d.ts +174 -1533
- package/dist/src/components/FilesList/ResourceTile.vue.d.ts +4 -2
- package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +19 -67
- package/dist/src/components/ItemFilter.vue.d.ts +12 -9
- package/dist/src/components/SideBar/FileSideBar.vue.d.ts +60 -85
- package/dist/src/composables/actions/files/index.d.ts +12 -11
- package/dist/src/composables/actions/files/useFileActions.d.ts +2 -7
- package/dist/src/composables/actions/files/useFileActionsOpenWithDefault.d.ts +4 -0
- package/dist/src/composables/actions/types.d.ts +2 -2
- package/dist/src/composables/filesList/useResourceRouteResolver.d.ts +8 -4
- package/dist/src/composables/folderLink/useFolderLink.d.ts +2 -2
- package/dist/src/composables/keyboardActions/useInterceptModifierClick.d.ts +1 -1
- package/dist/src/composables/piniaStores/apps.d.ts +6 -0
- 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 +12 -12
- package/dist/src/composables/resources/index.d.ts +4 -0
- package/dist/src/composables/resources/useResourceViewContextMenu.d.ts +11 -0
- package/dist/src/composables/resources/useResourceViewDrag.d.ts +37 -0
- package/dist/src/composables/resources/useResourceViewHelpers.d.ts +67 -0
- package/dist/src/composables/resources/useResourceViewSelection.d.ts +13 -0
- package/dist/src/composables/selection/index.d.ts +0 -1
- package/dist/src/composables/sort/useSort.d.ts +2 -0
- package/dist/src/constants.d.ts +3 -0
- package/dist/src/helpers/contextMenuDropdown.d.ts +1 -1
- package/dist/src/helpers/index.d.ts +1 -1
- package/dist/src/helpers/promise.d.ts +2 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/web-pkg.js +345 -332
- package/dist/web-pkg.umd.cjs +47 -66
- package/package.json +4 -4
- package/src/index.ts +0 -3
- package/dist/assets/worker-C2IPj8GP.js +0 -50
- package/dist/assets/worker-CQqhh0uK.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
- package/dist/src/helpers/folderLink/index.d.ts +0 -1
- package/dist/src/helpers/folderLink/types.d.ts +0 -6
|
@@ -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';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './types';
|