@cometchat/skills-cli 2.3.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3863 -781
- package/dist/registry/v6/experiences/1-conversation-list/templates/astro/CometChatSelector.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/1-conversation-list/templates/nextjs/CometChatSelector.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/1-conversation-list/templates/nextjs-pages/CometChatSelector.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/1-conversation-list/templates/react-router/CometChatSelector.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/1-conversation-list/templates/reactjs/CometChatSelector.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/1-conversation-list/templates/reactjs-dedicated-route/CometChatSelector.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/2-one-to-one/templates/astro/ChatApp.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/2-one-to-one/templates/nextjs/CometChatNoSSR.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/2-one-to-one/templates/react-router/CometChatNoSSR.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/2-one-to-one/templates/reactjs/App.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/2-one-to-one/templates/reactjs-dedicated-route/CometChatMessenger.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/3-tab-based/templates/astro/CometChatTabs.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/3-tab-based/templates/nextjs/CometChatTabs.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/3-tab-based/templates/react-router/CometChatTabs.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/3-tab-based/templates/reactjs/CometChatTabs.tsx.tpl +1 -1
- package/dist/registry/v6/experiences/3-tab-based/templates/reactjs-dedicated-route/CometChatTabs.tsx.tpl +1 -1
- package/dist/registry/v6/features/catalog.json +711 -81
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
CometChatUIKit,
|
|
7
7
|
UIKitSettingsBuilder,
|
|
8
8
|
} from "@cometchat/chat-uikit-react";
|
|
9
|
-
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
9
|
+
import type { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
10
10
|
// IMPORTANT: css-variables.css MUST be imported here (inside the React island)
|
|
11
11
|
// — global stylesheets imported in .astro files do not apply to client:only islands.
|
|
12
12
|
import "@cometchat/chat-uikit-react/css-variables.css";
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
CometChatUIKit,
|
|
8
8
|
UIKitSettingsBuilder,
|
|
9
9
|
} from "@cometchat/chat-uikit-react";
|
|
10
|
-
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
10
|
+
import type { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
11
11
|
// css-variables.css is imported in app/globals.css — do NOT import it here
|
|
12
12
|
import "./CometChatNoSSR.css";
|
|
13
13
|
|
package/dist/registry/v6/experiences/2-one-to-one/templates/react-router/CometChatNoSSR.tsx.tpl
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
CometChatUIKit,
|
|
7
7
|
UIKitSettingsBuilder,
|
|
8
8
|
} from "@cometchat/chat-uikit-react";
|
|
9
|
-
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
9
|
+
import type { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
10
10
|
// css-variables.css is imported in app/app.css — do NOT import it here
|
|
11
11
|
import "./CometChatNoSSR.css";
|
|
12
12
|
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
CometChatMessageHeader,
|
|
5
5
|
CometChatMessageList,
|
|
6
6
|
} from "@cometchat/chat-uikit-react";
|
|
7
|
-
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
7
|
+
import type { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
8
8
|
import "./App.css";
|
|
9
9
|
|
|
10
10
|
// The hardcoded user this chat connects to. Change to point at any
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
CometChatMessageHeader,
|
|
5
5
|
CometChatMessageList,
|
|
6
6
|
} from "@cometchat/chat-uikit-react";
|
|
7
|
-
import { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
7
|
+
import type { CometChat } from "@cometchat/chat-sdk-javascript";
|
|
8
8
|
import "./CometChatMessenger.css";
|
|
9
9
|
|
|
10
10
|
// The hardcoded user this chat connects to. Change to point at any
|