Skip to content

Commit 17a5fb0

Browse files
committed
Merge branch 'dev' of https://github.com/FE9-2/workroot into feat/applicationStatus-change
2 parents 9fb6b61 + b7fa451 commit 17a5fb0

File tree

4 files changed

+21
-134
lines changed

4 files changed

+21
-134
lines changed

.storybook/preview.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
44
import React from "react";
55
import { Decorator } from "@storybook/react";
66
import { useRouter } from "next/navigation";
7+
import "./storybook.css";
78

89
const queryClient = new QueryClient();
910

.storybook/storybook.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
* {
2+
cursor: auto !important;
3+
}
4+
5+
html,
6+
body {
7+
cursor: auto !important;
8+
}
9+
10+
a,
11+
button,
12+
[role="button"],
13+
input,
14+
select,
15+
textarea {
16+
cursor: auto !important;
17+
}

src/app/components/input/file/ImageInput/ImageInput.tsx

Lines changed: 0 additions & 131 deletions
This file was deleted.

src/app/stories/design-system/components/input/picker/DatePicker.stories.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import DatePickerInput from "@/app/components/input/dateTimeDaypicker/DatePickerInput";
21
import "react-datepicker/dist/react-datepicker.css";
32
import { Meta, StoryObj } from "@storybook/react";
43
import { FormProvider, useForm } from "react-hook-form";
4+
import DatePickerInput from "@/app/components/input/dateTimeDaypicker/DatePickerInput";
55

66
const meta = {
77
title: "Design System/Components/Date-Time-Day Picker/DatePicker",
@@ -28,8 +28,8 @@ type Story = StoryObj<typeof DatePickerInput>;
2828
export const DatePicker: Story = {
2929
render: () => (
3030
<DatePickerInput
31-
startDate={undefined}
32-
endDate={undefined}
31+
startDate={new Date()}
32+
endDate={new Date()}
3333
displayValue="2024.01.02 ~ 2024.03.03"
3434
onChange={() => {}}
3535
/>

0 commit comments

Comments
 (0)