> ## Documentation Index
> Fetch the complete documentation index at: https://docs.velt.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Aug 12 2024

# 2.0.30

### New Features

* \[**Comments**]: Added `resolvedByUserId` field on comment resolve. This allows tracking which user resolved a comment thread.

* \[**Comments**]: Added a configuration on sidebar to open the filter panel as a bottom sheet (default) or overlap on the filter button.
  * Prop: `filterPanelLayout`. Values: `'menu' | 'bottomSheet'` (default)
  * Usage:

    <Tabs>
      <Tab title="React / Next.js">
        ```jsx theme={null}
        <VeltCommentsSidebar filterPanelLayout="menu" />
        ```
      </Tab>

      <Tab title="Other Frameworks">
        ```html theme={null}
        <velt-comments-sidebar filter-panel-layout="menu"></velt-comments-sidebar>
        ```
      </Tab>
    </Tabs>
