create-bluecopa-react-app 1.0.11 → 1.0.13
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/bin/create-bluecopa-react-app.js +1 -1
- package/package.json +1 -1
- package/templates/latest/.dockerignore +5 -1
- package/templates/latest/Agent.md +621 -0
- package/templates/latest/Dockerfile +2 -2
- package/templates/latest/app/app.tsx +3 -1
- package/templates/latest/app/components/app-sidebar.tsx +14 -16
- package/templates/latest/app/components/nav-main.tsx +6 -22
- package/templates/latest/app/data/mock-payments.json +122 -0
- package/templates/latest/app/data/mock-transactions.json +128 -0
- package/templates/latest/app/routes/comments.tsx +552 -0
- package/templates/latest/app/routes/{home.tsx → dashboard.tsx} +1 -1
- package/templates/latest/app/routes/payments.tsx +342 -0
- package/templates/latest/app/routes/websocket.tsx +450 -0
- package/templates/latest/app/routes.tsx +8 -5
- package/templates/latest/dist/assets/{__federation_expose_App-C8_sl1dD.js → __federation_expose_App-BIH7hwj_.js} +12 -2
- package/templates/latest/dist/assets/{home-DhyEFlEc.js → client-CsvW46cT.js} +18530 -983
- package/templates/latest/dist/assets/{index-DkyIpbj3.js → index-CFECuPSy.js} +1 -1
- package/templates/latest/dist/assets/remoteEntry.css +155 -23
- package/templates/latest/dist/assets/remoteEntry.js +1 -1
- package/templates/latest/dist/favicon.ico +0 -0
- package/templates/latest/dist/index.html +2 -2
- package/templates/latest/package-lock.json +203 -203
- package/templates/latest/package.json +1 -1
- package/templates/latest/public/favicon.ico +0 -0
- package/templates/latest/dist/assets/client-Hh38T4k9.js +0 -12660
- package/templates/latest/dist/avatars/shadcn.svg +0 -6
- package/templates/latest/public/avatars/shadcn.svg +0 -6
- /package/templates/latest/app/{dashboard → data}/data.json +0 -0
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="100" height="100" fill="#e5e7eb"/>
|
|
3
|
-
<circle cx="50" cy="40" r="20" fill="#9ca3af"/>
|
|
4
|
-
<path d="M20 80 Q50 60 80 80 L80 100 L20 100 Z" fill="#9ca3af"/>
|
|
5
|
-
<text x="50" y="95" text-anchor="middle" font-family="Arial, sans-serif" font-size="12" fill="#6b7280">shadcn</text>
|
|
6
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="100" height="100" fill="#e5e7eb"/>
|
|
3
|
-
<circle cx="50" cy="40" r="20" fill="#9ca3af"/>
|
|
4
|
-
<path d="M20 80 Q50 60 80 80 L80 100 L20 100 Z" fill="#9ca3af"/>
|
|
5
|
-
<text x="50" y="95" text-anchor="middle" font-family="Arial, sans-serif" font-size="12" fill="#6b7280">shadcn</text>
|
|
6
|
-
</svg>
|
|
File without changes
|