Skip to content

Commit

Permalink
Merge pull request #6749 from owncloud/redesign-sidebar-public-links
Browse files Browse the repository at this point in the history
[full-ci] Redesign "Create and manage sharing links"
  • Loading branch information
kulmann authored Apr 27, 2022
2 parents b874ce0 + e882806 commit 726b390
Show file tree
Hide file tree
Showing 41 changed files with 1,716 additions and 2,160 deletions.
2 changes: 1 addition & 1 deletion .drone.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# The version of OCIS to use in pipelines that test against OCIS
OCIS_COMMITID=726604951db1a1921697a6b493e661f451e67755
OCIS_COMMITID=4202a99600ef15bc7a6bd91b011074775c19a24a
OCIS_BRANCH=master
7 changes: 7 additions & 0 deletions changelog/unreleased/bugfix-public-link-password-enforcement
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Bugfix: Password enforcement for public links

Password enforcement for public links, which can be adjusted on a per-role basis, wasn't properly reflected in the UI.
We have made the necessary adjustments to only enforce passwords for public links with the permissions that require a password according to the backend settings.

https://github.com/owncloud/web/issues/6323
https://github.com/owncloud/web/pull/6749
5 changes: 0 additions & 5 deletions changelog/unreleased/enhancement-bump-ods-13.1.0-rc.5

This file was deleted.

5 changes: 5 additions & 0 deletions changelog/unreleased/enhancement-redesign-link-sharing
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: Redesign link sharing

We have redesigned the public link list in the right sidebar. Links now can be edited in-line and have a similiar look-and-feel to people and group shares.

https://github.com/owncloud/web/pull/6749
19 changes: 19 additions & 0 deletions changelog/unreleased/enhancement-update-ods
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Enhancement: Update ODS to v13.1.0-rc.5

We updated the ownCloud Design System to version 13.1.0-rc.5. Please refer to the full changelog in the ODS release (linked) for more details. Summary:

- Enhancement - Add isFileExtensionDisplayed property: https://github.com/owncloud/owncloud-design-system/pull/2087
- Enhancement - OcModal input type: https://github.com/owncloud/owncloud-design-system/pull/2077
- Enhancement - Add OcContextualHelper: https://github.com/owncloud/owncloud-design-system/pull/2064
- Enhancement - Add selection range for OcModal and OcTextInput: https://github.com/owncloud/owncloud-design-system/pull/2061
- Enhancement - Replace deprecated String.prototype.substr(): https://github.com/owncloud/owncloud-design-system/pull/2059
- Enhancement - Redesign OcGhostElement: https://github.com/owncloud/owncloud-design-system/pull/2049
- Enhancement - Export package members: https://github.com/owncloud/owncloud-design-system/pull/2048
- Enhancement - Make OcResource inline-flex: https://github.com/owncloud/owncloud-design-system/pull/2041
- Bugfix - Disabled textarea color contrast in darkmode: https://github.com/owncloud/owncloud-design-system/pull/2055
- Bugfix - OcTextInput: Fix event handlers in loops: https://github.com/owncloud/owncloud-design-system/pull/2054

https://github.com/owncloud/web/pull/6749
https://github.com/owncloud/web/pull/6750
https://github.com/owncloud/owncloud-design-system/releases/tag/v13.1.0-rc.5

2 changes: 1 addition & 1 deletion packages/web-app-files/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
id="files-sidebar"
ref="filesSidebar"
tabindex="-1"
class="oc-width-1-1 oc-width-1-3@m oc-width-1-4@xl"
class="oc-width-1-1 oc-width-2-5@m oc-width-1-4@xl"
:sidebar-active-panel="sidebarActivePanel"
@beforeDestroy="focusSideBar"
@mounted="focusSideBar"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
v-oc-tooltip="label"
:aria-label="label"
appearance="raw"
:variation="copied ? 'success' : 'passive'"
@click="copyValueToClipboard"
>
<span v-text="text" />
Expand Down Expand Up @@ -84,7 +85,7 @@ export default {
<style scoped>
._clipboard-success-animation {
animation-name: _clipboard-success-animation;
animation-duration: 0.5s;
animation-duration: 0.8s;
animation-timing-function: ease-out;
animation-fill-mode: both;
}
Expand Down
Loading

0 comments on commit 726b390

Please sign in to comment.