diff --git a/changelog/unreleased/enhancement-reposition-notifications b/changelog/unreleased/enhancement-reposition-notifications new file mode 100644 index 00000000000..429422c8a61 --- /dev/null +++ b/changelog/unreleased/enhancement-reposition-notifications @@ -0,0 +1,7 @@ +Enhancement: Reposition notifications + +We've repositioned the notifications to no longer block the searchbar - they are now in the bottom right corner, above the (possibly visible) upload information. +It has also been redesigned to better fit the overall design. + +https://github.com/owncloud/web/pull/7139 +https://github.com/owncloud/web/issues/7082 diff --git a/changelog/unreleased/enhancement-update-ods b/changelog/unreleased/enhancement-update-ods new file mode 100644 index 00000000000..b3aec065efa --- /dev/null +++ b/changelog/unreleased/enhancement-update-ods @@ -0,0 +1,13 @@ +Enhancement: Update ODS to v14.0.0-alpha.2 + +We updated the ownCloud Design System to version 14.0.0-alpha.2. Please refer to the full changelog in the ODS release (linked) for more details. Summary: + +- Change - Remove OcAlert component: https://github.com/owncloud/owncloud-design-system/pull/2210 +- Change - Remove transition animations: https://github.com/owncloud/owncloud-design-system/pull/2210 +- Change - Revamp animations: https://github.com/owncloud/owncloud-design-system/pull/2210 +- Enhancement - Progress bar indeterminate state: https://github.com/owncloud/owncloud-design-system/pull/2200 +- Enhancement - Redesign notifications: https://github.com/owncloud/owncloud-design-system/pull/2210 +- Bugfix - Remove click event on OcIcon: https://github.com/owncloud/owncloud-design-system/pull/2216 + +https://github.com/owncloud/web/pull/7139 +https://github.com/owncloud/owncloud-design-system/releases/tag/14.0.0-alpha.2 diff --git a/dev/docker/oc10.web.config.json b/dev/docker/oc10.web.config.json index 606f2ba2436..679cd74b35d 100644 --- a/dev/docker/oc10.web.config.json +++ b/dev/docker/oc10.web.config.json @@ -14,6 +14,7 @@ "search" ], "options": { + "topCenterNotifications": true, "disablePreviews": true, "displayResourcesLazy": false, "sidebar": { diff --git a/dev/docker/ocis.web.config.json b/dev/docker/ocis.web.config.json index e179ed93237..d564335f617 100644 --- a/dev/docker/ocis.web.config.json +++ b/dev/docker/ocis.web.config.json @@ -9,6 +9,7 @@ "scope": "openid profile email" }, "options": { + "topCenterNotifications": true, "disablePreviews": true, "displayResourcesLazy": false, "sidebar": { diff --git a/packages/web-app-draw-io/src/App.vue b/packages/web-app-draw-io/src/App.vue index c0cf0b0c0f9..5267b47a4f1 100644 --- a/packages/web-app-draw-io/src/App.vue +++ b/packages/web-app-draw-io/src/App.vue @@ -1,13 +1,5 @@ diff --git a/packages/web-runtime/package.json b/packages/web-runtime/package.json index 55117ab563e..387153d2418 100644 --- a/packages/web-runtime/package.json +++ b/packages/web-runtime/package.json @@ -16,7 +16,7 @@ "axios": "^0.26.1", "cross-fetch": "^3.0.6", "easygettext": "https://github.com/owncloud/easygettext/archive/refs/tags/v2.18.1-oc.tar.gz", - "filesize": "^8.0.7", + "filesize": "^9.0.11", "focus-trap": "^6.4.0", "focus-trap-vue": "^1.1.1", "fuse.js": "^6.5.3", @@ -24,7 +24,7 @@ "luxon": "^2.4.0", "marked": "^4.0.12", "oidc-client": "1.11.5", - "owncloud-design-system": "^13.2.0-rc.1", + "owncloud-design-system": "^14.0.0-alpha.2", "owncloud-sdk": "~3.0.0-alpha.14", "p-queue": "^6.6.2", "popper-max-size-modifier": "^0.2.0", diff --git a/packages/web-runtime/src/components/MessageBar.vue b/packages/web-runtime/src/components/MessageBar.vue index 0238ffcf656..66a80b3e67f 100644 --- a/packages/web-runtime/src/components/MessageBar.vue +++ b/packages/web-runtime/src/components/MessageBar.vue @@ -1,18 +1,19 @@