@vira-ui/cli 8.0.0 → 9.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.
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.envExample = void 0;
4
4
  exports.envExample = `# Frontend environment example
5
- VITE_API_URL=http://localhost:8080
5
+ VITE_API_URL=http://45.90.35.155
6
6
  VITE_AUTH_TOKEN=
7
7
  `;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.envLocal = void 0;
4
- exports.envLocal = `VITE_API_URL=http://localhost:8080
4
+ exports.envLocal = `VITE_API_URL=http://45.90.35.155
5
5
  `;
@@ -23,7 +23,7 @@ export function KanbanBoard({ boardId }: KanbanBoardProps) {
23
23
 
24
24
  return (
25
25
  <Container design={{ padding: 6, height: '100vh', display: 'flex', flexDirection: 'column' }}>
26
- <Box design={{ marginBottom: 6 }}>
26
+ <Box>
27
27
  <Input
28
28
  model={\`kanban.\${boardId}.title\`}
29
29
  value={board.board.title}
@@ -17,7 +17,7 @@ export function KanbanCard({ card, boardId }: KanbanCardProps) {
17
17
  return (
18
18
  <Card
19
19
  design={{
20
- marginBottom: 2,
20
+
21
21
  cursor: 'pointer',
22
22
  padding: 3,
23
23
  }}
@@ -25,11 +25,11 @@ export function KanbanCard({ card, boardId }: KanbanCardProps) {
25
25
  // Open card details (future: modal)
26
26
  }}
27
27
  >
28
- <Text design={{ fontWeight: 600, fontSize: '14px', marginBottom: 1 }}>
28
+ <Text design={{ fontWeight: 600, fontSize: '14px', }}>
29
29
  {card.title}
30
30
  </Text>
31
31
  {card.description && (
32
- <Text design={{ fontSize: '12px', color: '#666', marginBottom: 2 }}>
32
+ <Text design={{ fontSize: '12px', color: '#666', }}>
33
33
  {card.description}
34
34
  </Text>
35
35
  )}
@@ -35,13 +35,13 @@ export function KanbanColumn({ column, boardId }: KanbanColumnProps) {
35
35
  flexDirection: 'column',
36
36
  }}
37
37
  >
38
- <Text design={{ fontWeight: 600, fontSize: '16px', marginBottom: 4 }}>
38
+ <Text design={{ fontWeight: 600, fontSize: '16px', }}>
39
39
  {column.title}
40
40
  </Text>
41
41
  <ScrollArea
42
42
  design={{
43
43
  flex: 1,
44
- marginBottom: 3,
44
+
45
45
  }}
46
46
  >
47
47
  <Flex direction="column" gap={2}>
@@ -6,7 +6,7 @@ import react from '@vitejs/plugin-react';
6
6
 
7
7
  export default defineConfig(({ mode }) => {
8
8
  const env = loadEnv(mode, process.cwd(), '');
9
- const API_URL = env.VITE_API_URL || 'http://localhost:8080';
9
+ const API_URL = env.VITE_API_URL || 'http://45.90.35.155';
10
10
 
11
11
  return {
12
12
  plugins: [react()],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vira-ui/cli",
3
- "version": "8.0.0",
3
+ "version": "9.0.0",
4
4
  "description": "CLI tool for ViraJS project generation",
5
5
  "author": "Vira Team",
6
6
  "license": "MIT",