@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.js
CHANGED
|
@@ -6307,7 +6307,11 @@ function AIPromptTextarea({
|
|
|
6307
6307
|
onPaste: handlePaste,
|
|
6308
6308
|
placeholder,
|
|
6309
6309
|
disabled,
|
|
6310
|
-
className:
|
|
6310
|
+
className: cn(
|
|
6311
|
+
"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",
|
|
6312
|
+
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",
|
|
6313
|
+
className
|
|
6314
|
+
),
|
|
6311
6315
|
style: { minHeight: `${minHeight}px` }
|
|
6312
6316
|
}
|
|
6313
6317
|
);
|