@uniai-fe/uds-primitives 0.5.2 → 0.5.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-primitives",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "description": "UNIAI Design System; Primitives Components Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -102,9 +102,9 @@
102
102
  "@uniai-fe/uds-foundation": "workspace:*",
103
103
  "@uniai-fe/util-functions": "workspace:*",
104
104
  "eslint": "^9.39.2",
105
- "prettier": "^3.8.1",
106
- "react-hook-form": "^7.72.0",
107
- "sass": "^1.98.0",
105
+ "prettier": "^3.8.2",
106
+ "react-hook-form": "^7.72.1",
107
+ "sass": "^1.99.0",
108
108
  "typescript": "~5.9.3"
109
109
  }
110
110
  }
@@ -33,7 +33,7 @@ export default function AlternateLoadingIcon({
33
33
  >
34
34
  {size === "small" && (
35
35
  <SpinnerSmallIcon
36
- alt="불러오는 중"
36
+ // alt="불러오는 중"
37
37
  width={24}
38
38
  height={24}
39
39
  viewBox="0 0 24 24"
@@ -42,7 +42,7 @@ export default function AlternateLoadingIcon({
42
42
  )}
43
43
  {size === "medium" && (
44
44
  <SpinnerMediumIcon
45
- alt="불러오는 중"
45
+ // alt="불러오는 중"
46
46
  width={36}
47
47
  height={36}
48
48
  viewBox="0 0 36 36"
@@ -51,7 +51,7 @@ export default function AlternateLoadingIcon({
51
51
  )}
52
52
  {size === "large" && (
53
53
  <SpinnerLargeIcon
54
- alt="불러오는 중"
54
+ // alt="불러오는 중"
55
55
  width={52}
56
56
  height={52}
57
57
  viewBox="0 0 52 52"
@@ -266,7 +266,7 @@ export function SelectDefault<OptionData = unknown>({
266
266
  const labelInputValue = isCustomInputActive
267
267
  ? typeof inputProps?.value === "string" ||
268
268
  typeof inputProps?.value === "number"
269
- ? String(inputProps.value)
269
+ ? String(inputProps.value) || customLabelValue
270
270
  : customLabelValue
271
271
  : toSelectInputText(resolvedDisplayLabel);
272
272