@uniai-fe/uds-templates 0.4.0 → 0.4.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-templates",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -12,7 +12,7 @@
12
12
  "publishConfig": {
13
13
  "access": "public"
14
14
  },
15
- "packageManager": "pnpm@10.32.0",
15
+ "packageManager": "pnpm@10.32.1",
16
16
  "engines": {
17
17
  "node": ">=24",
18
18
  "pnpm": ">=10"
@@ -66,11 +66,11 @@
66
66
  },
67
67
  "dependencies": {
68
68
  "clsx": "^2.1.1",
69
- "dayjs": "^1.11.19"
69
+ "dayjs": "^1.11.20"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@svgr/webpack": "^8.1.0",
73
- "@tanstack/react-query": "^5.90.21",
73
+ "@tanstack/react-query": "^5.91.2",
74
74
  "@types/node": "^24.10.2",
75
75
  "@types/react": "^19.2.14",
76
76
  "@types/react-dom": "^19.2.3",
@@ -90,7 +90,7 @@
90
90
  "next": "^15.5.11",
91
91
  "prettier": "^3.8.1",
92
92
  "react-hook-form": "^7.71.2",
93
- "sass": "^1.97.3",
93
+ "sass": "^1.98.0",
94
94
  "typescript": "~5.9.3"
95
95
  }
96
96
  }
@@ -91,7 +91,8 @@ export function AuthFindAccountInfoStep({
91
91
  <div className="auth-find-account-fields">
92
92
  <AuthFindAccountFieldBase
93
93
  className={clsx("auth-find-field-name", nameField.className)}
94
- label="이름"
94
+ // 첫 번째 필드 라벨도 서비스 앱이 주입한 값을 우선 따르도록 preset 하드코딩을 제거한다.
95
+ label={nameField.label ?? "이름"}
95
96
  templateProps={nameField.templateProps}
96
97
  inputProps={{
97
98
  name: nameFieldName,
@@ -81,7 +81,10 @@ export default function AuthLoginFormField({
81
81
  register={register.id}
82
82
  helper={idHelper}
83
83
  label={idField?.label ?? "아이디"}
84
- placeholder={idField?.placeholder ?? "아이디를 입력해 주세요"}
84
+ placeholder={
85
+ idField?.placeholder ??
86
+ `${idField?.label ?? "아이디"}를 입력해 주세요`
87
+ }
85
88
  inputProps={idField?.inputProps}
86
89
  templateProps={idField?.templateProps}
87
90
  />