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

# July 15 2024

## Versions

* Latest React SDK: [2.0.5](https://www.npmjs.com/package/@veltdev/react)
* Latest Non-React SDK: [2.0.5](https://www.npmjs.com/package/@veltdev/client)
* Latest Types: [2.0.5](https://www.npmjs.com/package/@veltdev/types)

## Added the Option to Enable or Disable Area Comments

We have added the option to enable or disable area comment in the comment element. By default area comments are enabled.

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltComments areaComment={false} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-comments area-comment="false"></velt-comments>
    ```
  </Tab>
</Tabs>

API Methods:

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    const commentElement = client.getCommentElement();
    commentElement.enableAreaComment();
    commentElement.disableAreaComment();
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    const commentElement = Velt.getCommentElement();
    commentElement.enableAreaComment();
    commentElement.disableAreaComment();
    ```
  </Tab>
</Tabs>
