@informedai/react 0.4.17 → 0.4.19
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/index.js +5 -3
- package/dist/index.mjs +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2089,8 +2089,8 @@ function WebsiteChatbot({ className, ...config }) {
|
|
|
2089
2089
|
style: {
|
|
2090
2090
|
...cssVars,
|
|
2091
2091
|
...positionStyles,
|
|
2092
|
-
width: config.position === "inline" ? "100%" : "
|
|
2093
|
-
maxHeight: config.position === "inline" ? "600px" : "
|
|
2092
|
+
width: config.position === "inline" ? "100%" : "380px",
|
|
2093
|
+
maxHeight: config.position === "inline" ? "600px" : "500px",
|
|
2094
2094
|
backgroundColor: "var(--wc-bg)",
|
|
2095
2095
|
borderRadius: "var(--wc-radius)",
|
|
2096
2096
|
border: "1px solid #e5e5e5",
|
|
@@ -2263,7 +2263,9 @@ function WebsiteChatbot({ className, ...config }) {
|
|
|
2263
2263
|
border: "1px solid #d1d5db",
|
|
2264
2264
|
fontSize: "14px",
|
|
2265
2265
|
fontFamily: "var(--wc-font)",
|
|
2266
|
-
outline: "none"
|
|
2266
|
+
outline: "none",
|
|
2267
|
+
color: "#1f2937",
|
|
2268
|
+
backgroundColor: "#ffffff"
|
|
2267
2269
|
}
|
|
2268
2270
|
}
|
|
2269
2271
|
),
|
package/dist/index.mjs
CHANGED
|
@@ -2057,8 +2057,8 @@ function WebsiteChatbot({ className, ...config }) {
|
|
|
2057
2057
|
style: {
|
|
2058
2058
|
...cssVars,
|
|
2059
2059
|
...positionStyles,
|
|
2060
|
-
width: config.position === "inline" ? "100%" : "
|
|
2061
|
-
maxHeight: config.position === "inline" ? "600px" : "
|
|
2060
|
+
width: config.position === "inline" ? "100%" : "380px",
|
|
2061
|
+
maxHeight: config.position === "inline" ? "600px" : "500px",
|
|
2062
2062
|
backgroundColor: "var(--wc-bg)",
|
|
2063
2063
|
borderRadius: "var(--wc-radius)",
|
|
2064
2064
|
border: "1px solid #e5e5e5",
|
|
@@ -2231,7 +2231,9 @@ function WebsiteChatbot({ className, ...config }) {
|
|
|
2231
2231
|
border: "1px solid #d1d5db",
|
|
2232
2232
|
fontSize: "14px",
|
|
2233
2233
|
fontFamily: "var(--wc-font)",
|
|
2234
|
-
outline: "none"
|
|
2234
|
+
outline: "none",
|
|
2235
|
+
color: "#1f2937",
|
|
2236
|
+
backgroundColor: "#ffffff"
|
|
2235
2237
|
}
|
|
2236
2238
|
}
|
|
2237
2239
|
),
|