@vira-ui/cli 8.0.0 → 9.1.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.
package/dist/react/envExample.js
CHANGED
package/dist/react/envLocal.js
CHANGED
|
@@ -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
|
|
26
|
+
<Box>
|
|
27
27
|
<Input
|
|
28
28
|
model={\`kanban.\${boardId}.title\`}
|
|
29
29
|
value={board.board.title}
|
package/dist/react/kanbanCard.js
CHANGED
|
@@ -17,7 +17,7 @@ export function KanbanCard({ card, boardId }: KanbanCardProps) {
|
|
|
17
17
|
return (
|
|
18
18
|
<Card
|
|
19
19
|
design={{
|
|
20
|
-
|
|
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',
|
|
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',
|
|
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',
|
|
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
|
-
|
|
44
|
+
|
|
45
45
|
}}
|
|
46
46
|
>
|
|
47
47
|
<Flex direction="column" gap={2}>
|
package/dist/react/viteConfig.js
CHANGED
|
@@ -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://
|
|
9
|
+
const API_URL = env.VITE_API_URL || 'http://45.90.35.155';
|
|
10
10
|
|
|
11
11
|
return {
|
|
12
12
|
plugins: [react()],
|