@schmitech/chatbot-widget 0.4.11 → 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.
@@ -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
- * Preprocesses markdown content to handle common formatting issues
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 better formatting and spacing control
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.11",
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",