@tanstack/cta-framework-react-cra 0.32.1 → 0.32.2

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.
@@ -60,9 +60,8 @@ function Messages({ messages }: { messages: Array<UIMessage> }) {
60
60
  Y
61
61
  </div>
62
62
  )}
63
- <div className="flex-1 min-w-0">
63
+ <div className="flex-1 min-w-0 text-white prose dark:prose-invert max-w-none prose-sm">
64
64
  <ReactMarkdown
65
- className="prose dark:prose-invert max-w-none prose-sm"
66
65
  rehypePlugins={[
67
66
  rehypeRaw,
68
67
  rehypeSanitize,
@@ -80,9 +80,11 @@ function Messages({ messages }: { messages: Array<UIMessage> }) {
80
80
  {parts.map((part, index) => {
81
81
  if (part.type === 'text') {
82
82
  return (
83
- <div className="flex-1 min-w-0" key={index}>
83
+ <div
84
+ className="flex-1 min-w-0 prose dark:prose-invert max-w-none prose-sm"
85
+ key={index}
86
+ >
84
87
  <ReactMarkdown
85
- className="prose dark:prose-invert max-w-none"
86
88
  rehypePlugins={[
87
89
  rehypeRaw,
88
90
  rehypeSanitize,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-framework-react-cra",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "description": "CTA Framework for React (Create React App)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23,7 +23,7 @@
23
23
  "author": "Jack Herrington <jherr@pobox.com>",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@tanstack/cta-engine": "0.32.1"
26
+ "@tanstack/cta-engine": "0.32.2"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^24.6.0",