TWebDbNavigator publish TabOrder and TabStop

Hello,

Returning to the TMSWeb_Dataset.dpr project of the demos
folders, I have seen that when you run this app in the browser, if you
have the focus in the button "Connect to DB" and press the tab key, the
focus stop in the WebDbNavigator1 control. If you go to the
WebDbNavigator1 properties in the Delphi inspector you can not find the
TabStop and TabOrder properties. TWebDbNavigator descended from
TWinControl, so it has by default TabStop to true, but now
TWebDbNavigator is not publishing TabStop and TabOrder. I do not know if I'm right, but I think that the rest of the events should also be published::


     property OnMouseDown;
     property OnMouseUp;
     property OnMouseMove;
     property OnMouseEnter;
     property OnMouseLeave;
     OnKeyUp property;
     property OnKeyDown;
     property OnKeyPress;
     property OnEnter;
     property OnExit;


Thank you.