@vira-ui/cli 9.1.0 → 11.0.0

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.
@@ -25,7 +25,7 @@ export function KanbanCard({ card, boardId }: KanbanCardProps) {
25
25
  // Open card details (future: modal)
26
26
  }}
27
27
  >
28
- <Text design={{ fontWeight: 600, fontSize: '14px', }}>
28
+ <Text design={{ fontSize: '14px', }}>
29
29
  {card.title}
30
30
  </Text>
31
31
  {card.description && (
@@ -27,7 +27,7 @@ export function KanbanColumn({ column, boardId }: KanbanColumnProps) {
27
27
  <Box
28
28
  design={{
29
29
  background: '#f5f5f5',
30
- borderRadius: 2,
30
+ borderRadius: 'var(--radius-sm)',
31
31
  padding: 4,
32
32
  minWidth: '280px',
33
33
  maxHeight: 'calc(100vh - 100px)',
@@ -35,7 +35,7 @@ export function KanbanColumn({ column, boardId }: KanbanColumnProps) {
35
35
  flexDirection: 'column',
36
36
  }}
37
37
  >
38
- <Text design={{ fontWeight: 600, fontSize: '16px', }}>
38
+ <Text design={{ fontSize: '16px', }}>
39
39
  {column.title}
40
40
  </Text>
41
41
  <ScrollArea
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vira-ui/cli",
3
- "version": "9.1.0",
3
+ "version": "11.0.0",
4
4
  "description": "CLI tool for ViraJS project generation",
5
5
  "author": "Vira Team",
6
6
  "license": "MIT",