ui 1.8rc3 "ui-helper-hidden" Vs button()

ui 1.8rc3 "ui-helper-hidden" Vs button()

Hi there,

To report the non consideration of dom element state regarding the css framework "ui-helper-hidden" class :

  1. <html>
  2.         <a class="button ui-helper-hidden" href="#">Sample hidden  button</a>
  3.         <body>
  4.                <script type="text/javascript">
  5.                $(function() {
  6.                        
  7.                     // makes my initially hidden element appear
  8.                    $('a.button').button();
  9.                });
  10.        </script>
  11.         </body>
  12. </html>
Should it be reported as a bug ? I do think so since the button feature breaks element status

Thanks for UI and JQ by the way