diff --git a/dev/docker/ocis.web.config.json b/dev/docker/ocis.web.config.json index 6550b9532f0..0858abc2d5c 100644 --- a/dev/docker/ocis.web.config.json +++ b/dev/docker/ocis.web.config.json @@ -37,8 +37,7 @@ "admin-settings", "ocm", "webfinger", - "epub-reader", - "progress-bars" + "epub-reader" ], "external_apps": [ { diff --git a/packages/web-app-progress-bars/package.json b/packages/web-app-progress-bars/package.json deleted file mode 100644 index 4831c761466..00000000000 --- a/packages/web-app-progress-bars/package.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "web-app-progress-bars", - "version": "0.0.0", - "description": "Progress Bars", - "license": "AGPL-3.0", - "peerDependencies": { - "@ownclouders/web-pkg": "workspace:*" - } -} diff --git a/packages/web-app-progress-bars/src/NyanCat.vue b/packages/web-app-progress-bars/src/NyanCat.vue deleted file mode 100644 index 67524522c8c..00000000000 --- a/packages/web-app-progress-bars/src/NyanCat.vue +++ /dev/null @@ -1,858 +0,0 @@ - - - - - diff --git a/packages/web-app-progress-bars/src/index.ts b/packages/web-app-progress-bars/src/index.ts deleted file mode 100644 index 7835a9016ad..00000000000 --- a/packages/web-app-progress-bars/src/index.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { defineWebApplication, Extension } from '@ownclouders/web-pkg' -import { useGettext } from 'vue3-gettext' -import NyanCat from './NyanCat.vue' -import { computed, h } from 'vue' - -export default defineWebApplication({ - setup() { - const { $gettext } = useGettext() - - const appInfo = { - name: $gettext('Progress bars'), - id: 'progress-bars' - } - - const nyanCatId = 'com.github.owncloud.web.app.progress-bars.nyan-cat' - const extensions = computed(() => [ - { - id: nyanCatId, - type: 'customComponent', - extensionPointIds: ['app.runtime.global-progress-bar'], - content: (slots) => [h(NyanCat, slots)], - userPreference: { - optionLabel: $gettext('Nyan Cat progress bar') - } - } - ]) - - return { - appInfo, - extensions - } - } -})