@uniai-fe/uds-templates 0.1.3 → 0.1.4
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/package.json +1 -1
- package/src/auth/common/find/hooks/useFindAccountForm.ts +2 -0
- package/src/auth/common/find/markup/CodeStep.tsx +2 -0
- package/src/auth/common/find/markup/InfoStep.tsx +2 -0
- package/src/auth/common/password/hooks/useCheckPassword.ts +2 -0
- package/src/auth/common/password/markup/PasswordSetField.tsx +2 -0
- package/src/auth/find-id/markup/StepComplete.tsx +3 -1
- package/src/auth/find-id/markup/StepIdentify.tsx +2 -0
- package/src/auth/find-id/markup/StepVerifyCode.tsx +2 -0
- package/src/auth/find-password/markup/StepResetPassword.tsx +2 -0
- package/src/auth/login/hooks/useAuthLoginForm.ts +2 -0
- package/src/auth/login/markup/FormField.tsx +2 -0
- package/src/auth/signup/hooks/useSignupAccountForm.ts +2 -0
- package/src/auth/signup/hooks/useSignupUserInfoForm.ts +2 -0
- package/src/auth/signup/hooks/useSignupVerificationForm.ts +2 -0
- package/src/auth/signup/markup/AccountForm.tsx +2 -0
- package/src/auth/signup/markup/UserInfoForm.tsx +2 -0
- package/src/auth/signup/markup/VerificationForm.tsx +2 -0
package/package.json
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
1
3
|
import clsx from "clsx";
|
|
2
4
|
import type { FindAccountIdCompleteProps } from "../types";
|
|
3
5
|
import AuthCompleteTemplate from "../../common/complete/Template";
|
|
@@ -5,7 +7,7 @@ import AuthCompleteTemplate from "../../common/complete/Template";
|
|
|
5
7
|
const DEFAULT_TITLE = "아이디 찾기 완료";
|
|
6
8
|
const DEFAULT_ID_LABEL = "아이디";
|
|
7
9
|
const DEFAULT_REGISTERED_LABEL = "가입일";
|
|
8
|
-
const DEFAULT_DESCRIPTION = "
|
|
10
|
+
const DEFAULT_DESCRIPTION = "로그인 페이지로 이동하여 로그인합니다.";
|
|
9
11
|
const DEFAULT_CTA_LABEL = "로그인하기";
|
|
10
12
|
|
|
11
13
|
/**
|