What's Changed
- Rating: new component by @bestmomo in #486
 - ImageLibrary: fix block on crop error by @ades4827 in #491
 - Form : Add 
no-separatorattribute by @Jipem in #489 - Table: remove 
@clickonactionsslot by @robsontenorio in #492 - Main: remove unnecessary classes by @robsontenorio in #462
 - Select : allow Enums by @ryanvelbon in #490
 - Tabs: to allow full external customisation by @SOG-web in #476
 - Misc: Set names and allow prefix routes by @prof-anderson-trindade in #457
 - Table: add 
$loopto@scopeby @robsontenorio in #467 - Bootcamp: fixed rollback migrations issue by @sayasuhendra in #470
 
Breaking changes
Table
BEFORE ($this->loop->index)
<x-table ...>
    @scope('cell_name', $user)
        ({{  $this->loop->index }}) {{ $user->name }}
    @endscope
</x-table>AFTER ($loop->index)
<x-table ...>
    @scope('cell_name', $user)
        ({{  $loop->index }}) {{ $user->name }}
    @endscope
</x-table>New Contributors
- @sayasuhendra made their first contribution in #470
 - @Jipem made their first contribution in #489
 - @ryanvelbon made their first contribution in #490
 - @SOG-web made their first contribution in #476
 - @prof-anderson-trindade made their first contribution in #457
 
Full Changelog: 1.32.1...1.33.0