Skip to content

Commit

Permalink
Redesign link list components to include inline edit & event driven a…
Browse files Browse the repository at this point in the history
…rchitecture
  • Loading branch information
pascalwengerter committed Apr 26, 2022
1 parent 92db03c commit d67147a
Show file tree
Hide file tree
Showing 34 changed files with 1,625 additions and 2,113 deletions.
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: 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
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 d67147a

Please sign in to comment.