@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
|
@@ -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}
|