@schmitech/chatbot-widget 0.4.10 → 0.4.12
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/README.md +1 -1
- package/dist/__vite-browser-external-DArZCl34.js +5 -0
- package/dist/chatbot-widget.bundle.js +168 -176
- package/dist/chatbot-widget.css +1 -1
- package/dist/chatbot-widget.es.js +4959 -5166
- package/dist/chatbot-widget.umd.js +167 -175
- package/dist/shared/MarkdownComponents.d.ts +3 -2
- package/dist/store/chatStore.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import 'katex/dist/katex.min.css';
|
|
3
|
+
import '../MarkdownStyles.css';
|
|
3
4
|
/**
|
|
4
|
-
*
|
|
5
|
+
* Simplified markdown preprocessing that only handles essential conversions
|
|
5
6
|
*/
|
|
6
7
|
export declare const preprocessMarkdown: (content: string) => string;
|
|
7
8
|
/**
|
|
@@ -13,6 +14,6 @@ export interface MarkdownRendererProps {
|
|
|
13
14
|
className?: string;
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
16
|
-
* Enhanced Markdown renderer with
|
|
17
|
+
* Enhanced Markdown renderer with CSS-based styling
|
|
17
18
|
*/
|
|
18
19
|
export declare const MarkdownRenderer: React.FC<MarkdownRendererProps>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schmitech/chatbot-widget",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.12",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/chatbot-widget.umd.js",
|
|
7
7
|
"module": "./dist/chatbot-widget.es.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"preview": "vite preview"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@schmitech/chatbot-api": "^0.
|
|
30
|
+
"@schmitech/chatbot-api": "^0.5.1",
|
|
31
31
|
"clsx": "^2.1.0",
|
|
32
32
|
"katex": "^0.16.8",
|
|
33
33
|
"lucide-react": "^0.344.0",
|