@botpress/webchat 2.4.0-beta.7 → 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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @botpress/webchat@2.4.0-beta.7 build /home/runner/work/genisys/genisys/packages/webchat-components
2
+ > @botpress/webchat@2.4.1 build /home/runner/work/genisys/genisys/packages/webchat-components
3
3
  > vite build
4
4
 
5
5
  vite v5.4.8 building for production...
@@ -10,10 +10,10 @@ rendering chunks...
10
10
 
11
11
  [vite:dts] Start generate declaration files...
12
12
  computing gzip size...
13
- dist/style.css  32.69 kB │ gzip: 6.26 kB
14
- dist/index.js 1,031.97 kB │ gzip: 269.89 kB
15
- [vite:dts] Declaration files built in 12547ms.
13
+ dist/style.css  32.82 kB │ gzip: 6.28 kB
14
+ dist/index.js 1,037.66 kB │ gzip: 271.03 kB
15
+ [vite:dts] Declaration files built in 11800ms.
16
16
 
17
- dist/style.css  32.69 kB │ gzip: 6.26 kB
18
- dist/index.umd.cjs 707.48 kB │ gzip: 224.86 kB
19
- ✓ built in 21.64s
17
+ dist/style.css  32.82 kB │ gzip: 6.28 kB
18
+ dist/index.umd.cjs 711.41 kB │ gzip: 225.64 kB
19
+ ✓ built in 20.82s
@@ -3,7 +3,7 @@ export * from './Block';
3
3
  export * from './Composer';
4
4
  export * from './Container';
5
5
  export * from './Fab';
6
- export * from './Header/Header';
6
+ export * from './Header';
7
7
  export * from './TypingIndicator';
8
8
  export * from './Message';
9
9
  export * from './MessageList';
@@ -1,5 +1,5 @@
1
1
  import { DropdownBlock, type CommonBlockProps } from '../../../types';
2
2
  import { ComponentProps } from 'react';
3
3
  type Props = DropdownBlock & ComponentProps<'div'> & CommonBlockProps;
4
- export declare const Dropdown: ({ options, label, reusable, sendMessage, isReadOnly }: Props) => import("react/jsx-runtime").JSX.Element;
4
+ export declare const Dropdown: ({ options, reusable, sendMessage, isReadOnly }: Props) => import("react/jsx-runtime").JSX.Element;
5
5
  export {};