bibot 1.0.55 → 1.0.56
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 +12 -6
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +12 -6
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4231,8 +4231,8 @@ var ChatBubbleBiBot = function ChatBubbleBiBot(bibotProps) {
|
|
|
4231
4231
|
position: 'absolute',
|
|
4232
4232
|
bottom: '60px',
|
|
4233
4233
|
right: '25px',
|
|
4234
|
-
width:
|
|
4235
|
-
height:
|
|
4234
|
+
width: 370,
|
|
4235
|
+
height: 550,
|
|
4236
4236
|
borderRadius: 10,
|
|
4237
4237
|
display: 'flex',
|
|
4238
4238
|
flexDirection: 'column',
|
|
@@ -4360,8 +4360,8 @@ var ChatBubbleBiBot = function ChatBubbleBiBot(bibotProps) {
|
|
|
4360
4360
|
alignItems: 'center',
|
|
4361
4361
|
borderTop: '1px solid #d7d7d7',
|
|
4362
4362
|
padding: 10,
|
|
4363
|
-
borderBottomLeftRadius:
|
|
4364
|
-
borderBottomRightRadius:
|
|
4363
|
+
borderBottomLeftRadius: 10,
|
|
4364
|
+
borderBottomRightRadius: 10,
|
|
4365
4365
|
backgroundColor: '#fff'
|
|
4366
4366
|
}
|
|
4367
4367
|
}, React.createElement("input", {
|
|
@@ -4404,8 +4404,14 @@ var ChatBubbleBiBot = function ChatBubbleBiBot(bibotProps) {
|
|
|
4404
4404
|
fontSize: '12px',
|
|
4405
4405
|
color: chatBubbleConfig === null || chatBubbleConfig === void 0 ? void 0 : chatBubbleConfig.color,
|
|
4406
4406
|
textAlign: 'left',
|
|
4407
|
-
marginRight: '
|
|
4408
|
-
whiteSpace: 'nowrap'
|
|
4407
|
+
marginRight: '5px',
|
|
4408
|
+
whiteSpace: 'nowrap',
|
|
4409
|
+
backgroundColor: '#fff',
|
|
4410
|
+
padding: 15,
|
|
4411
|
+
borderTopRightRadius: 30,
|
|
4412
|
+
borderTopLeftRadius: 10,
|
|
4413
|
+
borderBottomLeftRadius: 10,
|
|
4414
|
+
marginBottom: 50
|
|
4409
4415
|
}
|
|
4410
4416
|
}, greeting), React.createElement("button", {
|
|
4411
4417
|
onClick: toggleChat,
|