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

## Versions

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

## Added Shadow Dom Support in Notification and Video Component

We have now added Shadow DOM support in both the notification (for notification panel and notification tool) and video components.

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltNotificationsTool shadowDom={false} panelShadowDom={false} />

    <VeltNotificationsPanel shadowDom={false} />

    <VeltVideoPlayer shadowDom={false} />

    <VeltCommentPlayerTimeline shadowDom={false} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-video-player shadow-dom="false"></velt-video-player>

    <velt-comment-player-timeline shadow-dom="false"></velt-comment-player-timeline>

    <velt-notifications-tool shadow-dom="false" panel-shadow-dom="false"></velt-notifications-tool>

    <velt-notifications-panel shadow-dom="false"></velt-notifications-panel>
    ```
  </Tab>
</Tabs>
