@agentiffai/design 1.3.3 → 1.3.4

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.
@@ -3252,6 +3252,11 @@ var MessageBubble = styled4__default.default.div`
3252
3252
  /* Smooth transitions */
3253
3253
  transition: all ${tokens.transitions.fast};
3254
3254
 
3255
+ /* Ensure long strings don't overflow */
3256
+ overflow: hidden;
3257
+ overflow-wrap: break-word;
3258
+ word-break: break-word;
3259
+
3255
3260
  /* Username styling */
3256
3261
  strong {
3257
3262
  font-size: ${tokens.typography.fontSize.xs};
@@ -3265,6 +3270,8 @@ var MessageContent2 = styled4__default.default.p`
3265
3270
  font-size: ${tokens.typography.fontSize.sm};
3266
3271
  line-height: ${tokens.typography.lineHeight.normal};
3267
3272
  word-wrap: break-word;
3273
+ overflow-wrap: break-word;
3274
+ word-break: break-word;
3268
3275
  white-space: pre-wrap;
3269
3276
  `;
3270
3277
  var MessageTime2 = styled4__default.default.time`