@botpress/webchat 2.4.0-beta.2 → 2.4.0-beta.3
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/.turbo/turbo-build.log +6 -8
- package/dist/components/Webchat.d.ts +1 -1
- package/dist/index.js +332 -313
- package/dist/index.umd.cjs +19 -19
- package/package.json +2 -2
- package/dist/stories/index.d.ts +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
1
|
|
|
2
|
-
> @botpress/webchat@2.4.0-beta.
|
|
2
|
+
> @botpress/webchat@2.4.0-beta.3 build /home/runner/work/genisys/genisys/packages/webchat-components
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
5
|
[36mvite v5.4.8 [32mbuilding for production...[36m[39m
|
|
6
|
-
src/stories/utils.ts(4,14): error TS2742: The inferred type of 'mockBlockArgs' cannot be named without a reference to '.pnpm/@vitest+spy@2.0.5/node_modules/@vitest/spy'. This is likely not portable. A type annotation is necessary.
|
|
7
|
-
|
|
8
6
|
transforming...
|
|
9
7
|
[1m[33m[plugin:vite:resolve][39m[22m [33m[plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/home/runner/work/genisys/genisys/node_modules/.pnpm/@bpinternal+webchat-http-client@0.2.3/node_modules/@bpinternal/webchat-http-client/dist/index.mjs". See https://vitejs.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.[39m
|
|
10
|
-
[32m✓[39m
|
|
8
|
+
[32m✓[39m 3105 modules transformed.
|
|
11
9
|
rendering chunks...
|
|
12
10
|
|
|
13
11
|
[vite:dts] Start generate declaration files...
|
|
14
12
|
computing gzip size...
|
|
15
13
|
[2mdist/[22m[35mstyle.css [39m[1m[2m 32.56 kB[22m[1m[22m[2m │ gzip: 6.24 kB[22m
|
|
16
|
-
[2mdist/[22m[36mindex.js [39m[1m[33m1,
|
|
17
|
-
[vite:dts] Declaration files built in
|
|
14
|
+
[2mdist/[22m[36mindex.js [39m[1m[33m1,024.28 kB[39m[22m[2m │ gzip: 267.68 kB[22m
|
|
15
|
+
[vite:dts] Declaration files built in 10856ms.
|
|
18
16
|
|
|
19
17
|
[2mdist/[22m[35mstyle.css [39m[1m[2m 32.56 kB[22m[1m[22m[2m │ gzip: 6.24 kB[22m
|
|
20
|
-
[2mdist/[22m[36mindex.umd.cjs [39m[1m[
|
|
21
|
-
[32m✓ built in
|
|
18
|
+
[2mdist/[22m[36mindex.umd.cjs [39m[1m[33m702.08 kB[39m[22m[2m │ gzip: 223.03 kB[22m
|
|
19
|
+
[32m✓ built in 19.52s[39m
|
|
@@ -26,4 +26,4 @@ export type Props = {
|
|
|
26
26
|
type: FileType;
|
|
27
27
|
}>;
|
|
28
28
|
};
|
|
29
|
-
export declare const Webchat: ({ connected, configuration, closeWindow, isTyping, messages, user, sendMessage, uploadFile, isLoading, renderers, isReadOnly, disableComposer, restartConversation, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
export declare const Webchat: ({ connected, configuration, closeWindow, isTyping, messages, user, sendMessage, uploadFile, isLoading, renderers, isReadOnly, disableComposer, restartConversation, allowFileUpload, }: Props) => import("react/jsx-runtime").JSX.Element;
|