ka-table v6.1.0 Release Notes

Release Date: 2020-11-28 // over 3 years ago

Previous changes from v6.0.0

  • ๐Ÿ“ฆ after compilation modification package size decreased 25% less
    before:
    image

    after:
    image

    ๐Ÿ”– version increased to 6.0.0 because of small breaking change:

    1. 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>,
            }
          }}