Releases: owncloud/owncloud-design-system
7.4.2
Changelog for [7.4.2] (2021-06-21)
Summary
- Bugfix - 0.5px separator line between OcSidebarNav items: #1402
- Bugfix - OcIcon crashes if icon gets updated: #1407
- Bugfix - Pagination renders unnecessary ... skip label: #1406
Details
-
Bugfix - 0.5px separator line between OcSidebarNav items: #1402
The small line between OcSidebarNav items was displayed with different widths depending on
the used browser, since some can't handle half-pixel values. We've changed that to create the
same look across browsers. -
Bugfix - OcIcon crashes if icon gets updated: #1407
Before this bugfix, updating
oc-icon
name prop crashedvue-inline-svg
. We had to
overwritevue-inline-svg
download method and forgot to implement itsisPending
property on the returned promise.This is fixed now and tested
-
Bugfix - Pagination renders unnecessary ... skip label: #1406
In cases where the pagination should only render 4 pages at once and 4 are available, it rendered
a skip label< 1 2 ... 4 >
even if it's not required.Now this is fixed and it renders
< 1 2 3 4 >
instead.
7.4.1
Changelog for [7.4.1] (2021-06-17)
Summary
- Bugfix - Remove pagination list padding: #1398
- Bugfix - Visible separator between OcSidebarNav items: #1387
Details
-
Bugfix - Remove pagination list padding: #1398
The pagination list had a small left padding which caused it to be visually off from the desired
horizontal center. -
Bugfix - Visible separator between OcSidebarNav items: #1387
We have added a small line between OcSidebarNav items in the
active
andhover
state to
visually make them better differentiable.
7.4.0
Changelog for [7.4.0] (2021-06-17)
Summary
Details
-
Bugfix - Sticky OcAppSideBar Header: #1384
The OcAppSideBar Header is now sticky so the user always sees the filename and most important
info. UX is also improved since he now can always close the appsidebar on mobile without having
to scroll back to the top. -
Enhancement - Theme-able breakpoint variables: #5281
We've added custom CSS props for breakpoints a while ago but missed adding them to the theming
initialization, so they weren't theme-able until now.
7.3.0
7.2.0
Changelog for [7.2.0] (2021-06-11)
Summary
- Bugfix - Use correct selected background colour: #1368
- Enhancement - Add pagination component: #1055
- Enhancement - Table Row Mounted Event: #1371
Details
-
Bugfix - Use correct selected background colour: #1368
We've fixed the css custom property in
.oc-background-selected
helper class so that the
background highlighted colour is used there instead. -
Enhancement - Add pagination component: #1055
We've added
OcPagination
component. -
Enhancement - Table Row Mounted Event: #1371
The OcTable now emits an event if a row is mounted.
7.1.3
Merge pull request #1361 from owncloud/08062021_prepare-7.1.3-release Prepare 7.1.3 release
7.1.2
Merge pull request #1359 from owncloud/07062021_prepare-7.1.2-release Prepare 7.1.2 release
7.1.1
Merge pull request #1356 from owncloud/data-test-attributes Introduce dedicated `data-test` attributes for e2e tests
7.1.0
Changelog for [7.1.0] (2021-06-02)
Summary
- Enhancement - Accessible label for all landmarks in OcSidebarNav: #1345
- Enhancement - Add check icon without circle: #1341
Details
-
Enhancement - Accessible label for all landmarks in OcSidebarNav: #1345
The OcSidebarNav component now has properties for providing accessible labels for all
landmarks of the sidebar. -
Enhancement - Add check icon without circle: #1341
According to community requests, we've added a check/tick/approve icon without a background
shape.
7.0.1
Changelog for [7.0.1] (2021-06-01)
Summary
- Bugfix - OcStatusIndicator ID fixes: #1342
Details
-
Bugfix - OcStatusIndicator ID fixes: #1342
Inside the OcStatusIndicator, components were rendering the same IDs which resulted in
invalid HTML. Since the clickhandler on the OcStatusIndicator also was refering to these IDs
and they now are dynamically generated on the frontend, it has now been replaced with a computed
property which receives the click target.Also, the accessible description (only applicable to screen readers) has been changed from
<span>
to<p>
which sounds better to the listener.