@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.
- package/dist/copilotkit/index.cjs +7 -0
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +7 -0
- package/dist/copilotkit/index.js.map +1 -1
- package/dist/index.cjs +106 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +106 -30
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +37 -13
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.d.cts +3 -1
- package/dist/layout/index.d.ts +3 -1
- package/dist/layout/index.js +37 -13
- package/dist/layout/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -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`
|