Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ae446b2
chore: 아이콘 라이브러리 세팅
Catsmanager Jan 21, 2026
8ae167b
💄 STYLE: global.css update #1
OlMinJe Jan 21, 2026
9388884
💄 UI: Toast 컴포넌트 구현 #170
OlMinJe Jan 21, 2026
38c641a
💄 UI: 토스트 메시지에 노드 들어갈 수 있도록 수정 및 컬러 적용 #170
OlMinJe Jan 21, 2026
7b26b2b
Merge pull request #172 from CloudRogue/ui-kit-toast
OlMinJe Jan 21, 2026
a783218
feat : svg 컴포넌트 설정 및 아이콘 추가
Catsmanager Jan 21, 2026
067b646
fix: 빌드오류 해결
Catsmanager Jan 21, 2026
3087ce5
Merge pull request #175 from CloudRogue/ui-kit-icon
Catsmanager Jan 21, 2026
fd38cf6
💄 UI: 아코디언 디자인 시스템 적용 #173
OlMinJe Jan 21, 2026
0e16aea
Merge pull request #177 from CloudRogue/ui-kit-arccordion
OlMinJe Jan 21, 2026
2270b52
:lipstick: UI: 뱃지 컴포넌트 구현
Catsmanager Jan 21, 2026
7fcbf14
Merge pull request #179 from CloudRogue/ui-kit-badge
Catsmanager Jan 21, 2026
fcb3e8a
💄 UI: 버튼 컴포넌트 디자인 시스템 적용 #178
OlMinJe Jan 21, 2026
9f0801e
fix: 빌드 오류 수정 - 기존 버튼에 적용된 variant 제거
OlMinJe Jan 21, 2026
f5ecaa2
Merge pull request #181 from CloudRogue/ui-kit-button
OlMinJe Jan 21, 2026
9794bbf
💄 UI: 버튼 effect 추가 #182
OlMinJe Jan 21, 2026
f00f169
💄UI: 카드 컴포넌트 디자인 시스템 적용 #182
OlMinJe Jan 21, 2026
91e1d1b
🐛 FIX: lint props 오류 #182
OlMinJe Jan 21, 2026
e912d07
Merge pull request #183 from CloudRogue/ui-kit-card
OlMinJe Jan 21, 2026
5745c02
💄 UI: 체크박스 디자인 시스템 적용 #184
OlMinJe Jan 21, 2026
19e3bfd
Merge pull request #196 from CloudRogue/ui-kit-checkbox
OlMinJe Jan 21, 2026
b5b50d3
💄 UI: input 디자인 시스템 적용 #189
OlMinJe Jan 21, 2026
6708f38
Merge pull request #197 from CloudRogue/ui-kit-input
OlMinJe Jan 21, 2026
6af49fe
:lipstick: refactor: global.css 적용
Catsmanager Jan 21, 2026
eec3806
Merge pull request #198 from CloudRogue/ui-kit-badge
Catsmanager Jan 21, 2026
c04cc9f
💄 UI: progress 디자인 시스템 적용 #192
OlMinJe Jan 21, 2026
2c49c38
Merge pull request #199 from CloudRogue/ui-kit-progress
OlMinJe Jan 21, 2026
b813040
💄 UI: tab 디자인 시스템 적용 #193
OlMinJe Jan 21, 2026
918317e
Merge pull request #200 from CloudRogue/ui-kit-tabs
OlMinJe Jan 21, 2026
7edbe24
💄 UI: 토글 디자인 시스템 적용 #195
OlMinJe Jan 21, 2026
8e0f37f
💄 UI: 토글 관련 컴포넌트 디자인 일부 수정 #195
OlMinJe Jan 21, 2026
6ad714b
Merge pull request #203 from CloudRogue/ui-kit-toggle
OlMinJe Jan 21, 2026
f37d683
🐛 FIX: 스토리북 빌드 오류 수정 #1
OlMinJe Jan 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .storybook/preview.ts → .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
import type { Preview } from "@storybook/nextjs-vite";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import "../src/_app/styles/globals.css";

const queryClient = new QueryClient({
defaultOptions: {
queries: {
retry: false, // 테스트 환경이므로 재시도 방지
},
},
});

const preview: Preview = {
parameters: {
controls: {
Expand All @@ -21,6 +30,14 @@ const preview: Preview = {
test: "todo",
},
},

decorators: [
(Story) => (
<QueryClientProvider client={queryClient}>
<Story />
</QueryClientProvider>
),
],
};

export default preview;
4 changes: 3 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import QueryProviders from "@/app/_providers/query-providers";
import { ResponsiveLayout } from "@/src/shared/layout/responsive-layout";
import Toast from "@/src/shared/ui/toast";
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "../src/_app/styles/globals.css";
import { ResponsiveLayout } from "@/src/shared/layout/responsive-layout";

const geistSans = Geist({
variable: "--font-geist-sans",
Expand Down Expand Up @@ -31,6 +32,7 @@ export default function RootLayout({
>
<QueryProviders>
<ResponsiveLayout>{children}</ResponsiveLayout>
<Toast />
</QueryProviders>
</body>
</html>
Expand Down
10 changes: 10 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
turbopack: {},
async rewrites() {
return [
{
Expand All @@ -9,5 +10,14 @@ const nextConfig: NextConfig = {
},
];
},

webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
return config;
},
};

export default nextConfig;
Loading