ka-table v6.1.0 Release Notes
Release Date: 2020-11-28 // almost 4 years ago-
#104
customization can be easily done using sass variables only:
Demo: https://komarovalexander.github.io/ka-table/#/custom-theme
๐ป Docs: http://ka-table.com/docs_ui.html#themes
Previous changes from v6.0.0
-
๐ฆ after compilation modification package size decreased 25% less
before:
๐ version increased to 6.0.0 because of small breaking change:
- dataRow row content was a content of td element (cell)
now it is content of tr (row)
before
childComponents={{ dataRow: { content: (props) => <div>Content</div>, } }}
after
childComponents={{ dataRow: { content: ({columns}) => <td className='ka-cell' colSpan={columns.length}><div>Content</div></td>, } }}
- dataRow row content was a content of td element (cell)