@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
package/dist/copilotkit/index.js
CHANGED
|
@@ -3246,6 +3246,11 @@ var MessageBubble = styled4.div`
|
|
|
3246
3246
|
/* Smooth transitions */
|
|
3247
3247
|
transition: all ${tokens.transitions.fast};
|
|
3248
3248
|
|
|
3249
|
+
/* Ensure long strings don't overflow */
|
|
3250
|
+
overflow: hidden;
|
|
3251
|
+
overflow-wrap: break-word;
|
|
3252
|
+
word-break: break-word;
|
|
3253
|
+
|
|
3249
3254
|
/* Username styling */
|
|
3250
3255
|
strong {
|
|
3251
3256
|
font-size: ${tokens.typography.fontSize.xs};
|
|
@@ -3259,6 +3264,8 @@ var MessageContent2 = styled4.p`
|
|
|
3259
3264
|
font-size: ${tokens.typography.fontSize.sm};
|
|
3260
3265
|
line-height: ${tokens.typography.lineHeight.normal};
|
|
3261
3266
|
word-wrap: break-word;
|
|
3267
|
+
overflow-wrap: break-word;
|
|
3268
|
+
word-break: break-word;
|
|
3262
3269
|
white-space: pre-wrap;
|
|
3263
3270
|
`;
|
|
3264
3271
|
var MessageTime2 = styled4.time`
|