@botpress/webchat 2.3.5 → 2.3.6

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @botpress/webchat@2.3.5 build /home/runner/work/genisys/genisys/packages/webchat-components
2
+ > @botpress/webchat@2.3.6 build /home/runner/work/genisys/genisys/packages/webchat-components
3
3
  > vite build
4
4
 
5
5
  vite v5.4.8 building for production...
@@ -17,9 +17,9 @@ rendering chunks...
17
17
  [vite:dts] Start generate declaration files...
18
18
  computing gzip size...
19
19
  dist/style.css  31.15 kB │ gzip: 5.80 kB
20
- dist/index.js 1,051.76 kB │ gzip: 275.27 kB
21
- [vite:dts] Declaration files built in 10500ms.
20
+ dist/index.js 1,052.77 kB │ gzip: 275.50 kB
21
+ [vite:dts] Declaration files built in 10911ms.
22
22
 
23
23
  dist/style.css  31.15 kB │ gzip: 5.80 kB
24
- dist/index.umd.cjs 722.46 kB │ gzip: 230.32 kB
25
- ✓ built in 19.06s
24
+ dist/index.umd.cjs 722.92 kB │ gzip: 230.47 kB
25
+ ✓ built in 19.88s
@@ -1 +1,6 @@
1
- export declare const Composer: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>>;
1
+ import { ComponentProps, type Ref } from 'react';
2
+ type Props = ComponentProps<'div'> & {
3
+ inputRef?: Ref<HTMLTextAreaElement>;
4
+ };
5
+ export declare const Composer: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLDivElement>>>;
6
+ export {};
@@ -6,5 +6,5 @@ type MessageListProps = {
6
6
  icon?: FC<StyleOptions>;
7
7
  };
8
8
  };
9
- export declare const MessageList: import("react").MemoExoticComponent<({ scrollDownButton, ...props }: ComponentProps<"ul"> & MessageListProps) => import("react/jsx-runtime").JSX.Element>;
9
+ export declare const MessageList: import("react").MemoExoticComponent<({ scrollDownButton, className, ...props }: ComponentProps<"ul"> & MessageListProps) => import("react/jsx-runtime").JSX.Element>;
10
10
  export {};