cometchat-visual-builder-no-code 1.0.7-test → 1.0.10-test1
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/CometChat/CometChatSettings.d.ts +1 -0
- package/dist/CometChat/components/CometChatCreateGroup/CometChatCreateGroup.d.ts +1 -2
- package/dist/CometChat/components/CometChatJoinGroup/CometChatJoinGroup.d.ts +1 -2
- package/dist/CometChat/components/CometChatLogin/CometChatAppCredentials.d.ts +1 -1
- package/dist/CometChat/components/CometChatSelector/CometChatSelector.d.ts +5 -6
- package/dist/CometChat/context/CometChatContext.d.ts +14 -11
- package/dist/CometChatNoCode/CometChatApi.d.ts +17 -3
- package/dist/CometChatNoCode/components/docked/DockedChatView.d.ts +2 -1
- package/dist/CometChatNoCode/components/embedded/EmbeddedChatView.d.ts +4 -1
- package/dist/CometChatNoCode/useInjectNoCodeStyles.d.ts +8 -0
- package/dist/index.d.ts +2 -0
- package/dist/main.js +1 -1
- package/dist/noCodeConstants.d.ts +8 -0
- package/package.json +1 -1
- package/dist/CometChatNoCode/useCometChatWidgetStyles.d.ts +0 -8
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** Type definition for noCode constants. */
|
|
2
|
+
type NoCodeConstants = {
|
|
3
|
+
/** The domain URL for the dashboard. */
|
|
4
|
+
noCodeDomain: string;
|
|
5
|
+
};
|
|
6
|
+
/** Configuration constants for the noCode based on the environment. */
|
|
7
|
+
declare let noCodeConstants: NoCodeConstants;
|
|
8
|
+
export default noCodeConstants;
|
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Custom React hook to fetch and apply CometChat widget styles (CSS & JS) dynamically.
|
|
3
|
-
*
|
|
4
|
-
* @param widgetId - The unique widget ID provided by CometChat.
|
|
5
|
-
* @param region - The region for the widget (default is "us").
|
|
6
|
-
*/
|
|
7
|
-
declare const useCometChatWidgetStyles: (widgetId?: string, region?: string) => void;
|
|
8
|
-
export default useCometChatWidgetStyles;
|