@robylon/web-react-sdk 1.1.46 → 1.1.47

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.
@@ -13,6 +13,7 @@ interface ChatbotFloatingButtonProps {
13
13
  launcher_type?: "TEXT" | "IMAGE" | "TEXTUAL_IMAGE";
14
14
  launcher_properties_text?: string;
15
15
  shouldFadeIn?: boolean;
16
+ launcher_size?: number;
16
17
  }
17
18
  declare const _default: React.NamedExoticComponent<ChatbotFloatingButtonProps>;
18
19
  export default _default;
@@ -22,6 +22,7 @@ interface ChatbotProps {
22
22
  launcher_type?: "TEXT" | "IMAGE" | "TEXTUAL_IMAGE";
23
23
  launcher_properties_text?: string;
24
24
  overrides?: Overrides;
25
+ launcher_size?: number;
25
26
  }
26
27
  declare const MemoizedRobylonChatbot: React.MemoExoticComponent<React.ForwardRefExoticComponent<ChatbotProps & React.RefAttributes<ChatbotRef>>>;
27
28
  export { MemoizedRobylonChatbot as Chatbot };
@@ -16,6 +16,7 @@ interface ChatbotFloatingButtonConfig {
16
16
  position?: "Left" | "Right";
17
17
  sideSpacing?: number;
18
18
  bottomSpacing?: number;
19
+ launcher_size?: number;
19
20
  }
20
21
  /**
21
22
  * Class representing the ChatbotFloatingButton component
@@ -17,6 +17,7 @@ export interface RobylonChatbotConfig {
17
17
  agent_avatar?: string | null;
18
18
  header_title?: string | null;
19
19
  };
20
+ launcher_size?: number;
20
21
  }
21
22
  /**
22
23
  * RobylonChatbot instance interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robylon/web-react-sdk",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "description": "React SDK for Robylon AI Chatbot",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -47,7 +47,7 @@
47
47
  "build:production:cloudfront": "npm run clean && cross-env NODE_ENV=production PUBLISH_TYPE=production TARGET=cloudfront rollup -c",
48
48
  "dev:watch": "cross-env NODE_ENV=development TARGET=npm rollup -c -w",
49
49
  "dev:watch:vanilla": "cross-env NODE_ENV=development TARGET=unpkg rollup -c -w",
50
- "dev:serve": "npx serve -s . -l 3002"
50
+ "dev:serve": "npx serve . -l 3002"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"