13.1.0-rc.2
Pre-releaseChangelog for [13.1.0] (2022-04-04)
Summary
- Bugfix - Disabled textarea color contrast in darkmode: #2055
- Bugfix - OcTextInput: Fix event handlers in loops: #2054
- Enhancement - Export package members: #2048
- Enhancement - Make OcResource inline-flex: #2041
- Enhancement - Redesign OcGhostElement: #2049
- Enhancement - Replace deprecated String.prototype.substr(): #2059
Details
-
Bugfix - Disabled textarea color contrast in darkmode: #2055
We fixed an issue that made text on disabled textarea fields unreadable since it was the same
color as the background. -
Bugfix - OcTextInput: Fix event handlers in loops: #2054
We pass all event handlers specified on
OcTextInput
to the underlyinginput
element
except forinput
,change
andfocus
event handlers. We fixed an issue in this exclusion
code that madechange
,input
andfocus
handlers be re-registered on rerenders,
particularly in loop rerenders, so they were called multiple times for a single event. -
Enhancement - Export package members: #2048
Add exports for
composables
,utils
,components
,directives
,helpers
and
mixins
. Start using them viaimport { composables, utils, ... } from 'owncloud-design-system'
. -
Enhancement - Make OcResource inline-flex: #2041
We've changed OcResource's display CSS attribute to inline-flex to prevent a line break
-
Enhancement - Redesign OcGhostElement: #2049
We've redesigned OcGhostElement to use OcResourceIcon and to display a better preview of the
items that have been dragged -
Enhancement - Replace deprecated String.prototype.substr(): #2059
We've replaced all occurrences of the deprecated String.prototype.substr() function with
String.prototype.slice() which works similarly but isn't deprecated.