Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ui-kit/angular/v5/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ yarn add @cometchat/chat-uikit-angular@5.0.0-beta.2 @cometchat/chat-sdk-javascri
</Tab>
</Tabs>

<Warning>
`@cometchat/chat-sdk-javascript` and `dompurify` are required peer dependencies. npm may install them automatically alongside the UIKit, but this is not guaranteed — it depends on your npm version and whether there are version conflicts. If you see errors related to missing `CometChat` or `DOMPurify` at runtime, install them explicitly:

```bash
npm install @cometchat/chat-sdk-javascript dompurify
```
</Warning>

If you want voice/video calling, also install:

```bash
Expand Down
8 changes: 8 additions & 0 deletions ui-kit/angular/v5/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ Follow these steps to integrate CometChat UIKit into your Angular application.
npm install @cometchat/chat-uikit-angular@5.0.0-beta.2
```

<Warning>
`@cometchat/chat-sdk-javascript` and `dompurify` are required peer dependencies. npm may install them automatically alongside the UIKit, but this is not guaranteed — it depends on your npm version and whether there are version conflicts. If you see errors related to missing `CometChat` or `DOMPurify` at runtime, install them explicitly:

```bash
npm install @cometchat/chat-sdk-javascript dompurify
```
</Warning>

## Step 2: Import Styles

Add the CSS variables to your `angular.json`:
Expand Down