ka-table v5.0.1 Release Notes

Release Date: 2020-08-23 // over 3 years ago
  • ๐Ÿ†• new props:

    const tableProps = {
      ...
      columnReordering: boolean; 
      height: string | number;
      width: string | number;
    }
    

    ๐Ÿ†• new items of childComponents:

      public headCellContent?: ChildComponent<IHeadCellProps>;
      public tableWrapper?: ChildComponent<ITableProps>;
    

    ๐Ÿ’ฅ Breaking change:
    to set the max-height use

    .ka-table-wrapper{
      max-height: 400px;
    }
    

    instead of

    .ka-tbody{
      max-height: 400px;
    }