@uniai-fe/uds-templates 0.4.31 → 0.4.32

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.31",
3
+ "version": "0.4.32",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -42,13 +42,13 @@ export default function CCTVPaginationBaseButton({
42
42
  >
43
43
  {direction === "prev" && (
44
44
  <IconFigure className="cctv-prev-icon">
45
- <LeftIcon width={24} height={24} alt="Previous CCTV" />
45
+ <LeftIcon width={24} height={24} />
46
46
  </IconFigure>
47
47
  )}
48
48
  {children}
49
49
  {direction === "next" && (
50
50
  <IconFigure className="cctv-next-icon">
51
- <RightIcon width={24} height={24} alt="Next CCTV" />
51
+ <RightIcon width={24} height={24} />
52
52
  </IconFigure>
53
53
  )}
54
54
  </button>
@@ -8,7 +8,7 @@ export default function CCTVVideoError({
8
8
  return (
9
9
  <div className="cctv-video-error">
10
10
  <figure className="cctv-video-error-icon">
11
- <CCTVErrorIcon width={24} height={24} alt="CCTV 연결 오류" />
11
+ <CCTVErrorIcon width={24} height={24} />
12
12
  </figure>
13
13
  <p className="cctv-video-error-message">{children ?? "CCTV 연결 오류"}</p>
14
14
  </div>
@@ -19,7 +19,7 @@ export default function CCTVVideoOpenButton({
19
19
  className={clsx("cctv-video-open-button", { on: isLive === true })}
20
20
  onClick={onOpen}
21
21
  >
22
- <ViewerOpenIcon width={24} height={24} alt="크게 보기" />
22
+ <ViewerOpenIcon width={24} height={24} />
23
23
  </button>
24
24
  );
25
25
  }
@@ -12,7 +12,7 @@ export default function CCTVVideoCloseButton() {
12
12
 
13
13
  return (
14
14
  <button type="button" className="cctv-video-close-button" onClick={onClose}>
15
- <ViewerCloseIcon width={36} height={36} alt="닫기" />
15
+ <ViewerCloseIcon width={36} height={36} />
16
16
  </button>
17
17
  );
18
18
  }
@@ -30,7 +30,6 @@ export function ModalHeaderCloseButton({
30
30
  <CloseIcon
31
31
  width={20}
32
32
  height={20}
33
- alt={ariaLabel}
34
33
  viewBox="0 0 20 20"
35
34
  preserveAspectRatio="xMidYMid meet"
36
35
  />
@@ -36,9 +36,7 @@ export function MobileFrameHeader({
36
36
  aria-label="뒤로가기"
37
37
  >
38
38
  <span className="page-frame-mobile-header__back-icon">
39
- {backIcon ?? (
40
- <IconBackward width={24} height={24} alt="뒤로가기" />
41
- )}
39
+ {backIcon ?? <IconBackward width={24} height={24} />}
42
40
  </span>
43
41
  </button>
44
42
  ) : (