@team-monolith/cds 1.105.0 → 1.105.2
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.
|
@@ -7,8 +7,8 @@ export declare const bookClasses: {
|
|
|
7
7
|
readonly progressBar: "Book-progressBar";
|
|
8
8
|
};
|
|
9
9
|
export interface ProgressInfo {
|
|
10
|
-
/** 프로그레스 바 상단에 표시되는
|
|
11
|
-
title:
|
|
10
|
+
/** 프로그레스 바 상단에 표시되는 내용. */
|
|
11
|
+
title: React.ReactNode;
|
|
12
12
|
/** 프로그레스 바 진행도 (0 ~ 1 사이 숫자) */
|
|
13
13
|
value: number;
|
|
14
14
|
}
|
package/dist/components/Tag.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export type TagColor = "default" | "red" | "teal" | "orange" | "blue" | "green"
|
|
|
3
3
|
export interface TagProps {
|
|
4
4
|
className?: string;
|
|
5
5
|
component?: React.ElementType;
|
|
6
|
-
/** 컴포넌트 내 표기될
|
|
6
|
+
/** 컴포넌트 내 표기될 메인으로 노출될 내용 */
|
|
7
7
|
label: React.ReactNode;
|
|
8
8
|
/** 컴포넌트 좌측에 표기될 아이콘 */
|
|
9
9
|
icon?: React.ReactNode;
|