ka-table v6.0.0 Release Notes

Release Date: 2020-11-07 // over 3 years ago
  • 📦 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>,
            }
          }}