@opencloud-eu/web-pkg 5.0.0 → 5.1.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 (35) hide show
  1. package/dist/{TextEditor-CJgYG8Kl.js → TextEditor-CXSedGM4.js} +1 -1
  2. package/dist/assets/worker-22sDKzz_.js +21 -0
  3. package/dist/assets/worker-BSCY2vwA.js +21 -0
  4. package/dist/assets/worker-DH8D29Kr.js +21 -0
  5. package/dist/index-CEJcEmbf.js +25419 -0
  6. package/dist/src/components/AppBar/AppBar.vue.d.ts +1 -9
  7. package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +1 -1
  8. package/dist/src/components/FilesList/ResourceStatusIndicators.vue.d.ts +1 -1
  9. package/dist/src/components/FilesList/ResourceTable.vue.d.ts +0 -1
  10. package/dist/src/components/PortalTarget.vue.d.ts +1 -40
  11. package/dist/src/components/SideBar/FileSideBar.vue.d.ts +2 -12
  12. package/dist/src/components/SideBar/SideBar.vue.d.ts +3 -9
  13. package/dist/src/components/SideBar/SideBarPanels.vue.d.ts +38 -0
  14. package/dist/src/components/SideBar/index.d.ts +1 -0
  15. package/dist/src/composables/actions/files/index.d.ts +1 -0
  16. package/dist/src/composables/actions/files/useFileActionFallbackToDownload.d.ts +4 -0
  17. package/dist/src/composables/folderLink/useFolderLink.d.ts +1 -1
  18. package/dist/src/composables/index.d.ts +0 -1
  19. package/dist/src/composables/piniaStores/avatars.d.ts +1 -1
  20. package/dist/src/composables/piniaStores/index.d.ts +4 -3
  21. package/dist/src/composables/piniaStores/sideBar.d.ts +46 -0
  22. package/dist/src/composables/piniaStores/user.d.ts +1 -1
  23. package/dist/src/composables/resources/index.d.ts +1 -0
  24. package/dist/src/composables/resources/useResourceIndicators.d.ts +19 -0
  25. package/dist/src/helpers/statusIndicators.d.ts +3 -14
  26. package/dist/web-pkg.js +254 -251
  27. package/dist/web-pkg.umd.cjs +19 -51
  28. package/package.json +4 -5
  29. package/dist/assets/worker-Bc2UmjVr.js +0 -40
  30. package/dist/assets/worker-BeDmEhWu.js +0 -40
  31. package/dist/assets/worker-DWoO7i6z.js +0 -40
  32. package/dist/index-D-EuklHo.js +0 -33782
  33. package/dist/src/composables/sideBar/eventTopics.d.ts +0 -7
  34. package/dist/src/composables/sideBar/index.d.ts +0 -2
  35. package/dist/src/composables/sideBar/useSideBar.d.ts +0 -12
@@ -1,7 +0,0 @@
1
- export declare enum SideBarEventTopics {
2
- open = "sidebar.open",
3
- close = "sidebar.close",
4
- toggle = "sidebar.toggle",
5
- openWithPanel = "sidebar.openWithPanel",
6
- setActivePanel = "sidebar.setActivePanel"
7
- }
@@ -1,2 +0,0 @@
1
- export * from './eventTopics';
2
- export * from './useSideBar';
@@ -1,12 +0,0 @@
1
- import { Ref } from 'vue';
2
- import { EventBus } from '../../services/eventBus';
3
- interface SideBarResult {
4
- isSideBarOpen: Ref<boolean>;
5
- sideBarActivePanel: Ref<string>;
6
- onPanelActive: (name: string, callback: (string: any) => void) => void;
7
- }
8
- interface SideBarOptions {
9
- bus?: EventBus;
10
- }
11
- export declare const useSideBar: (options?: SideBarOptions) => SideBarResult;
12
- export {};