All Versions
38
Latest Version
Avg Release Cycle
10 days
Latest Release
863 days ago
Changelog History
Page 4
Changelog History
Page 4
-
v6.2.0 Changes
January 05, 2020๐ Features
- #358 - Improved Accessibility. You can now tab through all the component buttons, expanders, native selects and also the column titles. You can use the Enter key on a column to sort. There will be more accessibility improvements to come but if anything was missed please open an issue.
- ๐
#394 You can now use
expandableInheritConditionalStyles
to allowconditionalRowStyles
inherit to the ExpanderRow. You will still need to handle your own style inheritance in your Expander Component - #326 There is now an option to highlight a row when it is selected using
selectableRowsHighlight
- ๐ New kitchen sink style story added.
Minor changes to themes
๐ This only affects you if you are using certain properties with
createTheme
,defaultThemes
, or customStyles A couple of things have changed with themes. Theaction
prop is nownamed
button.theme
action
is nowbutton
button: { default: string; focus: string; hover: string; disabled: string; };
๐
headCells
styles were renamed fromactiveStyle
toactiveSortStyle
to better reflect the intention
๐ฑ Apologies if either of these causes any headaches ๐
-
v6.1.2 Changes
January 05, 2020๐ Fixes
- 0๏ธโฃ #417 - fixes/create typings for createTheme and defaultTheme imports
-
v6.1.1 Changes
January 03, 2020 -
v6.1.0 Changes
January 03, 2020๐ Features
๐ This release is mainly around the context menu when using
selectableRows
allowing for better customization/localization.Selectable Rows Context Menu #406
- 0๏ธโฃ A new prop
contextMessage
now allows you to override the default message parts. For example, for localization in SpanishcontextMessage={{ singular: 'artรญculo', plural: 'artรญculos', message: 'seleccionada' }}
results in 1 artรญculo seleccionada or 2 artรญculos seleccionada- RTL is supported if you have the
dir=rtl
attribute defined on thehtml
orbody
element.
- RTL is supported if you have the
- A new prop
noContextMenu
can now be used to hide the context menu permanently - A new prop
contextComponent
can now be used if you want to pass in your own custom component to the context menu. Should you need access to the number of items selected the custom component will have access toselectedCount
via its props. Note thatcontextMessage
andcontextActions
will be ignored when usingcontextComponent
๐ Fixes
- #344 Pagination buttons will now be in the correct orientation when using RTL layouts
- 0๏ธโฃ A new prop
-
v6.0.4 Changes
December 27, 2019๐ Fixes
- #395 - thanks @kokutaro for adding missing typescript properties
- 0๏ธโฃ #399
createTheme
anddefaultThemes
can now be imported when using typescript - ๐ fixed typescript definition for column selector. It now correctly accepts a function
row => row.field
- ๐ #388 when using a selector function and format together in a column definition format would be ignored - this is now fixed
โจ Enhancements
- #397 - reduce bundle size
- โ add typescript config to eslint
-
v6.0.3 Changes
December 20, 2019๐ Fixes
- 0๏ธโฃ
striped
andhighlightOnHover
rows were setting incorrect default color
- 0๏ธโฃ
-
v6.0.2 Changes
December 19, 2019Minor Fix
- ๐
#385 Move background style from
headCells
toheadRow
- ๐
#385 Move background style from
-
v6.0.1 Changes
December 19, 2019๐ Fixes
- #383 Padding will no longer be applied to your component when using the
noDataComponent
prop
- #383 Padding will no longer be applied to your component when using the