@windrun-huaiin/third-ui 5.11.2 → 5.11.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/dist/main/index.mjs
CHANGED
|
@@ -6264,7 +6264,11 @@ function AIPromptTextarea({
|
|
|
6264
6264
|
onPaste: handlePaste,
|
|
6265
6265
|
placeholder,
|
|
6266
6266
|
disabled,
|
|
6267
|
-
className:
|
|
6267
|
+
className: cn(
|
|
6268
|
+
"w-full p-4 bg-transparent transition-colors text-foreground placeholder-muted-foreground placeholder:text-base disabled:bg-muted disabled:cursor-not-allowed resize-none",
|
|
6269
|
+
isEmbedded ? "border-0 hover:border-2 hover:border-purple-500 focus:border-2 focus:border-purple-500" : "border-2 border-border rounded-lg hover:border-purple-500 focus:border-purple-500",
|
|
6270
|
+
className
|
|
6271
|
+
),
|
|
6268
6272
|
style: { minHeight: `${minHeight}px` }
|
|
6269
6273
|
}
|
|
6270
6274
|
);
|