@botpress/webchat 1.0.29 → 1.0.31
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/dist/App.d.ts +1 -0
- package/dist/client/types.d.ts +1 -0
- package/dist/contexts/WebchatContext.d.ts +1 -0
- package/dist/index.js +63288 -21932
- package/dist/index.umd.cjs +159 -121
- package/dist/themes/base.d.ts +1 -0
- package/package.json +3 -3
package/dist/themes/base.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { Theme } from '../schemas';
|
|
2
|
+
export declare const DEFAULT_ICON_CLASSNAME = "h-full w-full bg-center bg-no-repeat bg-[url(\"data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.583 14.894l-3.256 3.78c-.7.813-1.26.598-1.25-.46a10689.413 10689.413 0 0 1 .035-4.775V4.816a3.89 3.89 0 0 1 3.88-3.89h12.064a3.885 3.885 0 0 1 3.882 3.89v6.185a3.89 3.89 0 0 1-3.882 3.89H4.583z' fill='%23FFF' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E\")]";
|
|
2
3
|
export declare const baseTheme: Theme;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/webchat",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"bundle": "vite build",
|
|
21
21
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
22
22
|
"preview": "vite preview",
|
|
23
|
-
"test": "vitest"
|
|
23
|
+
"test": "vitest run"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@botpress/chat": "^0.
|
|
26
|
+
"@botpress/chat": "^0.2.2",
|
|
27
27
|
"@botpress/messaging-socket": "^1.2.0",
|
|
28
28
|
"@floating-ui/react": "^0.25.4",
|
|
29
29
|
"@headlessui/react": "1.7.11",
|