@uniai-fe/uds-primitives 0.2.5 → 0.2.6

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.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "UNIAI Design System; Primitives Components Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -77,6 +77,8 @@ export default function InputBaseUtil({
77
77
  <button
78
78
  type="button"
79
79
  className="input-affix input-affix-clear"
80
+ // Tab 이동 시 clear 버튼을 건너뛰고 다음 입력/액션으로 이동하도록 포커스를 제외한다.
81
+ tabIndex={-1}
80
82
  data-slot="clear"
81
83
  data-visible="true"
82
84
  onClick={onClear}
@@ -36,6 +36,8 @@ const PasswordInput = forwardRef<HTMLInputElement, InputPasswordProps>(
36
36
  <button
37
37
  type="button"
38
38
  className="input-password-toggle"
39
+ // Tab 이동 시 다음 입력 필드로 바로 넘어가도록 토글 버튼은 순서에서 제외한다.
40
+ tabIndex={-1}
39
41
  onClick={handleToggle}
40
42
  aria-pressed={visible}
41
43
  aria-label={visible ? toggleLabel.hide : toggleLabel.show}