Skip to content

Commit 8082304

Browse files
committed
feat: add modal with stepper prosess payment transaction events, with detail
1 parent 88fc532 commit 8082304

File tree

12 files changed

+846
-39
lines changed

12 files changed

+846
-39
lines changed

components.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@
1010
"cssVariables": true,
1111
"prefix": ""
1212
},
13+
"iconLibrary": "lucide",
1314
"aliases": {
1415
"components": "@/components",
1516
"utils": "@/lib/utils",
1617
"ui": "@/components/ui",
1718
"lib": "@/lib",
1819
"hooks": "@/hooks"
1920
},
20-
"iconLibrary": "lucide"
21+
"registries": {
22+
"@reui": "https://reui.io/r/{name}.json"
23+
}
2124
}

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export default defineConfig([
4848
"react/no-unescaped-entities": "off",
4949
"@next/next/no-page-custom-font": "off",
5050
"react-hooks/exhaustive-deps": "off",
51+
"react-compiler/react-compiler": "off",
5152
},
5253
},
5354
// for all test file

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/types/routes.d.ts";
3+
import "./.next/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

next.config.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,8 @@ const nextConfig = {
2727
port: "8000",
2828
},
2929
],
30-
// // Disable private IP check for development (allows localhost)
31-
// dangerouslyAllowSVG: true,
32-
// unoptimized: process.env.NODE_ENV === "development",
3330
},
3431
trailingSlash: true,
35-
// Disable hostname resolution to private IPs check in development
36-
// experimental: {
37-
// allowedHostsForFetch: process.env.NODE_ENV === "development"
38-
// ? ["localhost", "127.0.0.1", "::1"]
39-
// : undefined,
40-
// },
4132
};
4233

4334
export default withNextIntl(nextConfig);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"remark-gfm": "^4.0.1",
8080
"shiki": "^3.7.0",
8181
"sonner": "^2.0.6",
82-
"tailwind-merge": "^3.3.0",
82+
"tailwind-merge": "^3.3.1",
8383
"tailwindcss-animate": "^1.0.7",
8484
"turndown": "^7.2.1",
8585
"zod": "^3.24.4"

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/globals.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,14 @@
267267
max-width: 1400px;
268268
}
269269
}
270+
271+
@layer utilities {
272+
.scrollbar-hide {
273+
scrollbar-width: none;
274+
-ms-overflow-style: none;
275+
}
276+
277+
.scrollbar-hide::-webkit-scrollbar {
278+
display: none;
279+
}
280+
}

0 commit comments

Comments
 (0)