> ## 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 19 2024

## Versions

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

## Added `velt-data` Support

Now you can render dynamic data from these Classes inside your Velt Components Wireframe:

1. User: This represents the current logged-in user. It is available across all components.

2. UserContact: This represents the user contact object (it has the same class like the User). It is available on the autocomplete component where the user contacts are rendered.

3. CommentAnnotation: This represents the comment thread. This is available within the comment feature components.

4. Comment: This represents the message inside the thread. This is available within the comment feature components.

Here is one way to use it:

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltData path="commentAnnotation.status.id"></VeltData>
    <VeltData path="comment.commentText"></VeltData>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-data path="commentAnnotation.status.id"></velt-data>
    <velt-data path="comment.commentText"></velt-data>
    ```
  </Tab>
</Tabs>
