@natoe/colab 0.1.22 → 0.1.24

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.mjs CHANGED
@@ -5266,7 +5266,7 @@ function CollabInline({
5266
5266
  participantIds,
5267
5267
  onExpand,
5268
5268
  messageLimit = 1,
5269
- placeholder = "Type a message about this case...",
5269
+ placeholder = "Discuss this case\u2026",
5270
5270
  mode = "light",
5271
5271
  className,
5272
5272
  style
@@ -5553,7 +5553,7 @@ var styles14 = {
5553
5553
  },
5554
5554
  messageRow: {
5555
5555
  display: "flex",
5556
- alignItems: "center",
5556
+ alignItems: "flex-start",
5557
5557
  gap: SPACE.S2,
5558
5558
  fontSize: FONT_SIZE.xs,
5559
5559
  lineHeight: LINE_HEIGHT.normal,
@@ -5563,7 +5563,8 @@ var styles14 = {
5563
5563
  flexShrink: 0,
5564
5564
  width: "6px",
5565
5565
  height: "6px",
5566
- borderRadius: RADIUS.full
5566
+ borderRadius: RADIUS.full,
5567
+ marginTop: "7px"
5567
5568
  },
5568
5569
  senderName: {
5569
5570
  flexShrink: 0,
@@ -5572,9 +5573,11 @@ var styles14 = {
5572
5573
  },
5573
5574
  messageText: {
5574
5575
  color: COLOR.neutral600,
5576
+ display: "-webkit-box",
5577
+ WebkitLineClamp: 2,
5578
+ WebkitBoxOrient: "vertical",
5575
5579
  overflow: "hidden",
5576
- textOverflow: "ellipsis",
5577
- whiteSpace: "nowrap",
5580
+ wordBreak: "break-word",
5578
5581
  minWidth: 0,
5579
5582
  flex: 1
5580
5583
  },