@coze-arch/cli 0.0.1-alpha.49a2d9 → 0.0.1-alpha.4c5c53
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/lib/__templates__/expo/.coze +1 -1
- package/lib/__templates__/expo/.cozeproj/scripts/dev_build.sh +19 -82
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +65 -84
- package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +2 -2
- package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +2 -2
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +45 -0
- package/lib/__templates__/expo/README.md +24 -14
- package/lib/__templates__/expo/client/app/_layout.tsx +14 -14
- package/lib/__templates__/expo/client/app/index.tsx +1 -0
- package/lib/__templates__/expo/client/app.config.ts +65 -60
- package/lib/__templates__/expo/client/constants/theme.ts +22 -18
- package/lib/__templates__/expo/client/declarations.d.ts +5 -0
- package/lib/__templates__/expo/client/eslint.config.mjs +13 -10
- package/lib/__templates__/expo/client/hooks/useColorScheme.ts +34 -1
- package/lib/__templates__/expo/client/hooks/useTheme.ts +26 -6
- package/lib/__templates__/expo/client/package.json +1 -0
- package/lib/__templates__/expo/client/screens/demo/index.tsx +25 -0
- package/lib/__templates__/expo/client/screens/demo/styles.ts +28 -0
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +1 -0
- package/lib/__templates__/expo/client/utils/index.ts +22 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +2486 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +155 -0
- package/lib/__templates__/expo/pnpm-lock.yaml +57 -5
- package/lib/__templates__/expo/server/build.js +21 -0
- package/lib/__templates__/expo/server/package.json +5 -3
- package/lib/__templates__/expo/server/src/index.ts +9 -2
- package/lib/__templates__/expo/template.config.js +1 -0
- package/lib/__templates__/nextjs/.coze +1 -0
- package/lib/__templates__/nextjs/_npmrc +1 -0
- package/lib/__templates__/nextjs/next.config.ts +11 -0
- package/lib/__templates__/nextjs/package.json +3 -2
- package/lib/__templates__/nextjs/pnpm-lock.yaml +13 -5
- package/lib/__templates__/nextjs/scripts/prepare.sh +9 -0
- package/lib/__templates__/nextjs/src/app/globals.css +10 -2
- package/lib/__templates__/nextjs/src/app/layout.tsx +1 -12
- package/lib/__templates__/nextjs/src/app/page.tsx +35 -23
- package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +29 -22
- package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +228 -230
- package/lib/__templates__/nextjs/template.config.js +30 -0
- package/lib/__templates__/templates.json +61 -43
- package/lib/__templates__/vite/.coze +1 -0
- package/lib/__templates__/vite/_npmrc +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +9 -0
- package/lib/__templates__/vite/package.json +5 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +3481 -14
- package/lib/__templates__/vite/scripts/prepare.sh +9 -0
- package/lib/__templates__/vite/src/main.ts +1 -2
- package/lib/__templates__/vite/template.config.js +28 -4
- package/lib/cli.js +58 -27
- package/package.json +1 -1
- package/lib/__templates__/expo/client/app/index.ts +0 -1
- package/lib/__templates__/expo/client/screens/home/index.tsx +0 -50
- package/lib/__templates__/expo/client/screens/home/styles.ts +0 -60
- package/lib/__templates__/nextjs/.vscode/settings.json +0 -121
- package/lib/__templates__/vite/.vscode/settings.json +0 -7
|
@@ -1,46 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
'use client';
|
|
2
2
|
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
|
|
3
|
+
import { GripVerticalIcon } from 'lucide-react';
|
|
4
|
+
import {
|
|
5
|
+
Group,
|
|
6
|
+
Panel,
|
|
7
|
+
Separator,
|
|
8
|
+
type GroupProps,
|
|
9
|
+
type PanelProps,
|
|
10
|
+
type SeparatorProps,
|
|
11
|
+
} from 'react-resizable-panels';
|
|
6
12
|
|
|
7
|
-
import { cn } from
|
|
13
|
+
import { cn } from '@/lib/utils';
|
|
8
14
|
|
|
9
15
|
function ResizablePanelGroup({
|
|
10
16
|
className,
|
|
17
|
+
orientation = 'horizontal',
|
|
11
18
|
...props
|
|
12
|
-
}:
|
|
19
|
+
}: GroupProps) {
|
|
13
20
|
return (
|
|
14
|
-
<
|
|
21
|
+
<Group
|
|
15
22
|
data-slot="resizable-panel-group"
|
|
23
|
+
data-panel-group-direction={orientation}
|
|
24
|
+
orientation={orientation}
|
|
16
25
|
className={cn(
|
|
17
|
-
|
|
18
|
-
className
|
|
26
|
+
'flex h-full w-full data-[panel-group-direction=vertical]:flex-col',
|
|
27
|
+
className,
|
|
19
28
|
)}
|
|
20
29
|
{...props}
|
|
21
30
|
/>
|
|
22
|
-
)
|
|
31
|
+
);
|
|
23
32
|
}
|
|
24
33
|
|
|
25
|
-
function ResizablePanel({
|
|
26
|
-
...props
|
|
27
|
-
}: React.ComponentProps<typeof ResizablePrimitive.Panel>) {
|
|
28
|
-
return <ResizablePrimitive.Panel data-slot="resizable-panel" {...props} />
|
|
34
|
+
function ResizablePanel({ ...props }: PanelProps) {
|
|
35
|
+
return <Panel data-slot="resizable-panel" {...props} />;
|
|
29
36
|
}
|
|
30
37
|
|
|
31
38
|
function ResizableHandle({
|
|
32
39
|
withHandle,
|
|
33
40
|
className,
|
|
34
41
|
...props
|
|
35
|
-
}:
|
|
36
|
-
withHandle?: boolean
|
|
42
|
+
}: SeparatorProps & {
|
|
43
|
+
withHandle?: boolean;
|
|
37
44
|
}) {
|
|
38
45
|
return (
|
|
39
|
-
<
|
|
46
|
+
<Separator
|
|
40
47
|
data-slot="resizable-handle"
|
|
41
48
|
className={cn(
|
|
42
|
-
|
|
43
|
-
className
|
|
49
|
+
'bg-border focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-hidden data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:translate-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90',
|
|
50
|
+
className,
|
|
44
51
|
)}
|
|
45
52
|
{...props}
|
|
46
53
|
>
|
|
@@ -49,8 +56,8 @@ function ResizableHandle({
|
|
|
49
56
|
<GripVerticalIcon className="size-2.5" />
|
|
50
57
|
</div>
|
|
51
58
|
)}
|
|
52
|
-
</
|
|
53
|
-
)
|
|
59
|
+
</Separator>
|
|
60
|
+
);
|
|
54
61
|
}
|
|
55
62
|
|
|
56
|
-
export { ResizablePanelGroup, ResizablePanel, ResizableHandle }
|
|
63
|
+
export { ResizablePanelGroup, ResizablePanel, ResizableHandle };
|