ados-rcm 1.1.797 → 1.1.799

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.
@@ -37,6 +37,18 @@ export interface IAProgressBarProps {
37
37
  * Description : 진행 상황 레이블
38
38
  */
39
39
  label?: string;
40
+ /**
41
+ * noHeader? : boolean = false
42
+ *
43
+ * Description : 프로그레스 바 헤더를 표시하지 않음
44
+ */
45
+ noHeader?: boolean;
46
+ /**
47
+ * noPercentage? : boolean
48
+ *
49
+ * Description : 진행률 퍼센트(%) 표시 안함 여부
50
+ */
51
+ noPercentage?: boolean;
40
52
  /**
41
53
  * progress : number
42
54
  *
@@ -49,12 +61,6 @@ export interface IAProgressBarProps {
49
61
  * Description : 진행 상황 레이블 리소스
50
62
  */
51
63
  resources?: Partial<typeof Resources.AProgressBar>;
52
- /**
53
- * showPercentage? : boolean = true
54
- *
55
- * Description : 진행률 퍼센트(%) 표시 여부
56
- */
57
- showPercentage?: boolean;
58
64
  /**
59
65
  * style? : React.CSSProperties
60
66
  *