diff --git a/docs.json b/docs.json
index 9200be98c..35ebd34c8 100644
--- a/docs.json
+++ b/docs.json
@@ -3575,13 +3575,6 @@
"sdk/react-native/rate-limits",
"sdk/react-native/connection-status",
"sdk/react-native/managing-web-sockets-connections-manually",
- {
- "group": "Push Notifications",
- "pages": [
- "notifications/react-native-push-notifications-android",
- "notifications/react-native-push-notifications-ios"
- ]
- },
"sdk/react-native/push-notification-html-stripping"
]
},
diff --git a/ui-kit/react-native/compact-message-composer.mdx b/ui-kit/react-native/compact-message-composer.mdx
index 08a42297b..80ed8603d 100644
--- a/ui-kit/react-native/compact-message-composer.mdx
+++ b/ui-kit/react-native/compact-message-composer.mdx
@@ -9,7 +9,7 @@ description: "Compact React Native message input with rich text, attachments, me
"component": "CometChatCompactMessageComposer",
"package": "@cometchat/chat-uikit-react-native",
"import": "import { CometChatCompactMessageComposer } from \"@cometchat/chat-uikit-react-native\";",
- "description": "Compact message input with optional rich text formatting (bold, italic, underline, strikethrough, code), auto-expanding input, attachments, mentions, voice recording, and message editing support.",
+ "description": "Compact message input with optional rich text formatting (bold, italic, underline, strikethrough, links, lists, blockquotes, inline code, code blocks), auto-expanding input, attachments, mentions, voice recording, and message editing support.",
"primaryOutput": {
"prop": "onSendButtonPress",
"type": "(message: CometChat.BaseMessage) => void"
@@ -122,7 +122,7 @@ description: "Compact React Native message input with rich text, attachments, me
## Where It Fits
-`CometChatCompactMessageComposer` is a [Component](/ui-kit/react-native/components-overview#components) that provides a compact, streamlined message input with optional rich text formatting capabilities. It supports bold, italic, underline, strikethrough, and code formatting, along with auto-expanding input, attachments, mentions, voice recording, and message editing.
+`CometChatCompactMessageComposer` is a [Component](/ui-kit/react-native/components-overview#components) that provides a compact, streamlined message input with optional rich text formatting capabilities. Its formatting toolbar supports bold, italic, underline, strikethrough, links, lists, blockquotes, inline code, and code blocks, along with auto-expanding input, attachments, mentions, voice recording, and message editing.
This is a compact variant of [CometChatMessageComposer](/ui-kit/react-native/message-composer). It shares the same props API but adds rich text formatting controls, auto-expanding input configuration, and additional callbacks.
@@ -305,7 +305,12 @@ The toolbar provides the following formatting tools:
| Italic | Italic text |
| Underline | Underline text |
| Strikethrough | Strikethrough text |
+| Link | Wrap the selected text in a link — opens a prompt for the URL |
+| Numbered List | Convert the current line/block to an ordered list |
+| Bulleted List | Convert the current line/block to an unordered list |
+| Blockquote | Convert the current line/block to a blockquote |
| Code | Inline code |
+| Code Block | Multi-line fenced code block |
### Toolbar Visibility Modes
diff --git a/ui-kit/react-native/core-features.mdx b/ui-kit/react-native/core-features.mdx
index a569f3696..9683a6304 100644
--- a/ui-kit/react-native/core-features.mdx
+++ b/ui-kit/react-native/core-features.mdx
@@ -135,7 +135,7 @@ Mentions is a feature that enhances the interactivity and clarity of group or 1-
## Rich Text Formatting
-Rich Text Formatting allows users to style their messages with bold, italic, underline, strikethrough, and inline code formatting. This brings richer expression to conversations and helps users emphasize key points, making communication clearer and more engaging.
+Rich Text Formatting allows users to style their messages with bold, italic, underline, strikethrough, code, links, lists, blockquotes, and code blocks. This brings richer expression to conversations and helps users emphasize key points.
@@ -143,8 +143,8 @@ Rich Text Formatting allows users to style their messages with bold, italic, und
| Components | Functionality |
| --------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| [CompactMessageComposer](/ui-kit/react-native/compact-message-composer) | [CompactMessageComposer](/ui-kit/react-native/compact-message-composer) provides a built-in rich text editor with formatting toolbar and native text selection menu items for bold, italic, underline, strikethrough, and code formatting. |
-| [MessageList](/ui-kit/react-native/message-list) | [MessageList](/ui-kit/react-native/message-list) renders formatted messages with the appropriate styling applied, displaying bold, italic, underline, strikethrough, and code formatting as intended by the sender. |
+| [CompactMessageComposer](/ui-kit/react-native/compact-message-composer#rich-text-formatting) | [CompactMessageComposer](/ui-kit/react-native/compact-message-composer#rich-text-formatting) provides a built-in rich text editor. Its formatting toolbar covers bold, italic, underline, strikethrough, links, lists, blockquotes, inline code, and code blocks; the native text selection menu offers bold, italic, underline, and strikethrough. |
+| [MessageList](/ui-kit/react-native/message-list) | [MessageList](/ui-kit/react-native/message-list) renders formatted messages with the appropriate styling automatically applied, ensuring that rich text formatting is displayed exactly as intended by the sender. |
## Quoted Reply