@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
|
@@ -97,14 +97,14 @@ var tokens = {
|
|
|
97
97
|
monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace"
|
|
98
98
|
},
|
|
99
99
|
fontSize: {
|
|
100
|
-
xs: "0.
|
|
101
|
-
// 12px
|
|
102
|
-
sm: "
|
|
103
|
-
// 14px
|
|
104
|
-
base: "
|
|
105
|
-
// 16px
|
|
100
|
+
xs: "0.875rem",
|
|
101
|
+
// 14px (was 12px, increased for better readability)
|
|
102
|
+
sm: "1rem",
|
|
103
|
+
// 16px (was 14px, increased for better readability)
|
|
104
|
+
base: "1.125rem",
|
|
105
|
+
// 18px (was 16px, increased for better readability)
|
|
106
106
|
lg: "1.125rem",
|
|
107
|
-
// 20px
|
|
107
|
+
// 20px (heading size, unchanged)
|
|
108
108
|
"2xl": "1.5rem"},
|
|
109
109
|
fontWeight: {
|
|
110
110
|
regular: 400,
|
|
@@ -1614,7 +1614,7 @@ var StyledUserMessage = styled4__default.default.button`
|
|
|
1614
1614
|
font-family: ${tokens.typography.fontFamily.primary};
|
|
1615
1615
|
font-size: ${tokens.typography.fontSize.sm};
|
|
1616
1616
|
font-weight: ${tokens.typography.fontWeight.regular};
|
|
1617
|
-
line-height:
|
|
1617
|
+
line-height: ${tokens.typography.lineHeight.normal};
|
|
1618
1618
|
border: none;
|
|
1619
1619
|
cursor: default;
|
|
1620
1620
|
user-select: none;
|
|
@@ -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`
|