@2uinc/frontend-component-xpert-chatbot 1.40.6-beta.10 → 1.40.6-beta.11
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/lib/index.min.js +16 -2
- package/package.json +1 -1
package/dist/lib/index.min.js
CHANGED
|
@@ -4219,7 +4219,6 @@ function Ni({
|
|
|
4219
4219
|
/* @__PURE__ */ _.jsx(
|
|
4220
4220
|
"textarea",
|
|
4221
4221
|
{
|
|
4222
|
-
className: "xpert-chatbot-popup__input--textarea",
|
|
4223
4222
|
"data-testid": "ConversationInput",
|
|
4224
4223
|
disabled: W,
|
|
4225
4224
|
value: T,
|
|
@@ -4230,7 +4229,22 @@ function Ni({
|
|
|
4230
4229
|
cols: "5",
|
|
4231
4230
|
rows: "1",
|
|
4232
4231
|
maxLength: u?.input?.maxLength ?? 5e3,
|
|
4233
|
-
onKeyDown: j
|
|
4232
|
+
onKeyDown: j,
|
|
4233
|
+
style: {
|
|
4234
|
+
margin: "0",
|
|
4235
|
+
borderRadius: "1rem",
|
|
4236
|
+
boxSizing: "border-box",
|
|
4237
|
+
fontFamily: "inherit",
|
|
4238
|
+
fontSize: "1rem",
|
|
4239
|
+
// required to avoid IOS mobile scaling when input is focused
|
|
4240
|
+
fontWeight: "300",
|
|
4241
|
+
lineHeight: "1.56rem",
|
|
4242
|
+
minHeight: "3.25rem",
|
|
4243
|
+
padding: "12.5px 45px 12.5px 12.5px",
|
|
4244
|
+
resize: "none",
|
|
4245
|
+
width: "100%",
|
|
4246
|
+
outlineColor: "#000000"
|
|
4247
|
+
}
|
|
4234
4248
|
}
|
|
4235
4249
|
),
|
|
4236
4250
|
m && l || f || b ? /* @__PURE__ */ _.jsx(
|