@agentiffai/design 1.2.1 → 1.3.3
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 +8 -8
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +8 -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 +167 -66
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +167 -66
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +123 -47
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.d.cts +14 -9
- package/dist/layout/index.d.ts +14 -9
- package/dist/layout/index.js +123 -47
- 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;
|