Memory Leak in TAdvKanbanBoard

Good day,

I was busy with the TMS VLC AdvKanbanBoard and I noticed 2 small memory leaks.
Too distinguish these from my own ;-) I'd like to present you a solution below.
see file: AdvKanbanBoard.pas in directory TMS VCL UI Pack (I use latest version downloaded today)
Then destructor procedure below at line 4654

Thank you.
Kind Regards

destructor TAdvKanbanBoardColumnsAppearance.Destroy;
begin
FMargins.Free;
FHeaderFont.Free;
FHeaderFill.Free;
FFill.Free; // <== Add this
FStroke.Free; // <== Add this
FHeaderStroke.Free;
FFooterFont.Free;
FFooterFill.Free;
FFooterStroke.Free;
inherited;
end;

Thanks for reporting.
This isn't a feature request, so it does not belong here. The responsible engineer will check this problem report and do the necessary.

This feature will not be implemented.