@agentiffai/design 1.3.1 → 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 +15 -8
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +15 -8
- package/dist/copilotkit/index.js.map +1 -1
- package/dist/icons/index.cjs.map +1 -1
- package/dist/icons/index.js.map +1 -1
- package/dist/index.cjs +264 -87
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +264 -87
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +152 -52
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.d.cts +17 -10
- package/dist/layout/index.d.ts +17 -10
- package/dist/layout/index.js +152 -52
- package/dist/layout/index.js.map +1 -1
- package/dist/theme/index.cjs +12 -11
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.d.cts +12 -9
- package/dist/theme/index.d.ts +12 -9
- package/dist/theme/index.js +12 -11
- package/dist/theme/index.js.map +1 -1
- package/dist/workflow/index.cjs +21 -6
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +21 -6
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/icon-set/Icon-arrow-up-fill.svg +1 -0
- package/public/assets/icon-set/Icon-box-3-fill.svg +1 -0
- package/public/assets/icon-set/Icon-briefcase-fill.svg +1 -0
- package/public/assets/icon-set/Icon-clipboard-fill.svg +1 -0
- package/public/assets/icon-set/Icon-edit-fill.svg +1 -0
- package/public/assets/icon-set/Icon-emotion-happy-fill.svg +1 -0
- package/public/assets/icon-set/Icon-external-link-fill.svg +1 -0
- package/public/assets/icon-set/Icon-flow-chart.svg +1 -0
- package/public/assets/icon-set/Icon-git-branch-fill.svg +1 -0
- package/public/assets/icon-set/Icon-lightbulb-fill.svg +1 -0
- package/public/assets/icon-set/Icon-logout-circle-r-fill.svg +1 -0
- package/public/assets/icon-set/Icon-logout-circle-r-line.svg +1 -0
- package/public/assets/icon-set/Icon-map-pin-fill.svg +1 -0
- package/public/assets/icon-set/Icon-refresh-fill.svg +1 -0
- package/public/assets/icon-set/Icon-settings-3-line.svg +1 -0
- package/public/assets/icon-set/Icon-side-bar-fill.svg +1 -0
- package/public/assets/icon-set/Icon-skip-forward-fill.svg +1 -0
- package/public/assets/icon-set/Icon-time-fill.svg +1 -0
package/dist/copilotkit/index.js
CHANGED
|
@@ -91,14 +91,14 @@ var tokens = {
|
|
|
91
91
|
monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace"
|
|
92
92
|
},
|
|
93
93
|
fontSize: {
|
|
94
|
-
xs: "0.
|
|
95
|
-
// 12px
|
|
96
|
-
sm: "
|
|
97
|
-
// 14px
|
|
98
|
-
base: "
|
|
99
|
-
// 16px
|
|
94
|
+
xs: "0.875rem",
|
|
95
|
+
// 14px (was 12px, increased for better readability)
|
|
96
|
+
sm: "1rem",
|
|
97
|
+
// 16px (was 14px, increased for better readability)
|
|
98
|
+
base: "1.125rem",
|
|
99
|
+
// 18px (was 16px, increased for better readability)
|
|
100
100
|
lg: "1.125rem",
|
|
101
|
-
// 20px
|
|
101
|
+
// 20px (heading size, unchanged)
|
|
102
102
|
"2xl": "1.5rem"},
|
|
103
103
|
fontWeight: {
|
|
104
104
|
regular: 400,
|
|
@@ -1608,7 +1608,7 @@ var StyledUserMessage = styled4.button`
|
|
|
1608
1608
|
font-family: ${tokens.typography.fontFamily.primary};
|
|
1609
1609
|
font-size: ${tokens.typography.fontSize.sm};
|
|
1610
1610
|
font-weight: ${tokens.typography.fontWeight.regular};
|
|
1611
|
-
line-height:
|
|
1611
|
+
line-height: ${tokens.typography.lineHeight.normal};
|
|
1612
1612
|
border: none;
|
|
1613
1613
|
cursor: default;
|
|
1614
1614
|
user-select: none;
|
|
@@ -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`
|