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.
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "cometchat-visual-builder-no-code",
3
- "version": "1.0.7-test",
3
+ "version": "1.0.10-test1",
4
4
  "description": "CometChat Visual Builder No-Code Integration",
5
5
  "author": "CometChat",
6
6
  "dependencies": {
@@ -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;