@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.
Files changed (40) hide show
  1. package/dist/{TextEditor-BEOcGAsh.js → TextEditor-Cn7QTWpj.js} +42 -40
  2. package/dist/assets/{worker-DkMHRpBn.js → worker-B8_1fnv6.js} +20 -30
  3. package/dist/assets/{worker-CQqhh0uK.js → worker-CexULVXL.js} +19 -29
  4. package/dist/assets/{worker-C2IPj8GP.js → worker-DW5HxaGD.js} +20 -30
  5. package/dist/{index-C-VmIu2P.js → index-BAXp6cDe.js} +16984 -17334
  6. package/dist/src/components/AppBar/AppBar.vue.d.ts +2 -0
  7. package/dist/src/components/BatchActions.vue.d.ts +1 -0
  8. package/dist/src/components/ContextActions/ActionMenuItem.vue.d.ts +1 -0
  9. package/dist/src/components/ContextActions/ContextActionMenu.vue.d.ts +1 -0
  10. package/dist/src/components/CreateLinkModal.vue.d.ts +17 -141
  11. package/dist/src/components/FilesList/ContextActions.vue.d.ts +1 -0
  12. package/dist/src/components/FilesList/ResourceTable.vue.d.ts +457 -1475
  13. package/dist/src/components/FilesList/ResourceTile.vue.d.ts +4 -2
  14. package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +5 -3
  15. package/dist/src/components/ItemFilter.vue.d.ts +4 -0
  16. package/dist/src/components/SideBar/FileSideBar.vue.d.ts +60 -85
  17. package/dist/src/composables/actions/types.d.ts +1 -1
  18. package/dist/src/composables/filesList/useResourceRouteResolver.d.ts +3 -1
  19. package/dist/src/composables/piniaStores/capabilities.d.ts +27 -0
  20. package/dist/src/composables/piniaStores/config/config.d.ts +4 -1
  21. package/dist/src/composables/piniaStores/groupwareConfig/groupwareConfig.d.ts +297 -0
  22. package/dist/src/composables/piniaStores/groupwareConfig/index.d.ts +2 -0
  23. package/dist/src/composables/piniaStores/groupwareConfig/types.d.ts +140 -0
  24. package/dist/src/composables/piniaStores/index.d.ts +1 -0
  25. package/dist/src/composables/piniaStores/messages.d.ts +6 -6
  26. package/dist/src/composables/resources/index.d.ts +2 -0
  27. package/dist/src/composables/resources/useResourceViewDrag.d.ts +58 -0
  28. package/dist/src/composables/resources/useResourceViewHelpers.d.ts +77 -0
  29. package/dist/src/composables/selection/index.d.ts +0 -1
  30. package/dist/src/helpers/index.d.ts +1 -0
  31. package/dist/src/helpers/promise.d.ts +2 -0
  32. package/dist/src/index.d.ts +0 -1
  33. package/dist/web-pkg.js +348 -336
  34. package/dist/web-pkg.umd.cjs +44 -64
  35. package/package.json +4 -4
  36. package/src/index.ts +0 -3
  37. package/dist/src/cern/composables/index.d.ts +0 -1
  38. package/dist/src/cern/composables/useGroupingSettings.d.ts +0 -34
  39. package/dist/src/cern/index.d.ts +0 -1
  40. package/dist/src/composables/selection/useToggleTile.d.ts +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencloud-eu/web-pkg",
3
- "version": "4.2.1",
3
+ "version": "4.3.0",
4
4
  "description": "OpenCloud web pkg",
5
5
  "license": "AGPL-3.0",
6
6
  "main": "src/index.ts",
@@ -46,7 +46,7 @@
46
46
  "md-editor-v3": "^6.0.1",
47
47
  "oidc-client-ts": "^2.4.0 || ^3.0.0",
48
48
  "p-queue": "^9.0.0",
49
- "password-sheriff": "^1.1.1",
49
+ "password-sheriff": "^2.0.0",
50
50
  "pinia": "^3.0.0",
51
51
  "portal-vue": "^3.0.0",
52
52
  "prismjs": "^1.29.0",
@@ -57,8 +57,8 @@
57
57
  "vue-router": "^4.2.5",
58
58
  "vue3-gettext": "^2.4.0",
59
59
  "zod": "^4.0.0",
60
- "@opencloud-eu/web-client": "^4.2.1",
61
- "@opencloud-eu/design-system": "^4.2.1"
60
+ "@opencloud-eu/design-system": "^4.3.0",
61
+ "@opencloud-eu/web-client": "^4.3.0"
62
62
  },
63
63
  "exports": {
64
64
  ".": {
package/src/index.ts CHANGED
@@ -11,6 +11,3 @@ export * from './services'
11
11
  export * from './types'
12
12
  export * from './ui'
13
13
  export * from './utils'
14
-
15
- // FIXME: do we really want this?
16
- export * from './cern'
@@ -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
- };
@@ -1 +0,0 @@
1
- export * from './composables';
@@ -1,4 +0,0 @@
1
- import { Resource } from '@opencloud-eu/web-client';
2
- export declare function useToggleTile(): {
3
- toggleTile: (data: [Resource, MouseEvent | KeyboardEvent]) => void;
4
- };