ados-rcm 1.1.810 → 1.1.812
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
import { IATooltipProps } from '../ATooltip/ATooltip';
|
|
2
3
|
import { Resources } from '../AResource/AResource';
|
|
3
|
-
export interface IAProgressBarProps {
|
|
4
|
+
export interface IAProgressBarProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'color' | 'height' | 'style' | 'className'> {
|
|
4
5
|
/**
|
|
5
6
|
* backgroundColor? : string
|
|
6
7
|
*
|
|
@@ -61,12 +62,24 @@ export interface IAProgressBarProps {
|
|
|
61
62
|
* Description : 진행 상황 레이블 리소스
|
|
62
63
|
*/
|
|
63
64
|
resources?: Partial<typeof Resources.AProgressBar>;
|
|
65
|
+
/**
|
|
66
|
+
* showPercentageTooltip? : boolean
|
|
67
|
+
*
|
|
68
|
+
* Description : 진행률 툴팁 표시 여부
|
|
69
|
+
*/
|
|
70
|
+
showPercentageTooltip?: boolean;
|
|
64
71
|
/**
|
|
65
72
|
* style? : React.CSSProperties
|
|
66
73
|
*
|
|
67
74
|
* Description : 사용자 정의 스타일
|
|
68
75
|
*/
|
|
69
76
|
style?: React.CSSProperties;
|
|
77
|
+
/**
|
|
78
|
+
* tooltipProps? : Omit<IATooltipProps, 'targetRef' | 'tooltip'>
|
|
79
|
+
*
|
|
80
|
+
* Description : 툴팁 설정 Props
|
|
81
|
+
*/
|
|
82
|
+
tooltipProps?: Omit<IATooltipProps, 'targetRef' | 'tooltip'>;
|
|
70
83
|
}
|
|
71
84
|
/**
|
|
72
85
|
* AComponent : AProgressBar
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EDir4 } from '../ATypes/ATypes';
|
|
2
|
-
interface IATooltipProps {
|
|
2
|
+
export interface IATooltipProps {
|
|
3
3
|
/**
|
|
4
4
|
* delay? : number = 0
|
|
5
5
|
*
|
|
@@ -18,6 +18,12 @@ interface IATooltipProps {
|
|
|
18
18
|
* Description : distance of ATooltip
|
|
19
19
|
*/
|
|
20
20
|
distance?: number;
|
|
21
|
+
/**
|
|
22
|
+
* positionRef? : React.RefObject<HTMLElement | null>
|
|
23
|
+
*
|
|
24
|
+
* Description : Optional reference for positioning the tooltip.
|
|
25
|
+
*/
|
|
26
|
+
positionRef?: React.RefObject<HTMLElement | null>;
|
|
21
27
|
/**
|
|
22
28
|
* targetRef : React.RefObject<HTMLElement | null>
|
|
23
29
|
*
|
|
@@ -56,4 +62,3 @@ interface IATooltipProps {
|
|
|
56
62
|
*
|
|
57
63
|
*/
|
|
58
64
|
export declare const ATooltip: (props: IATooltipProps) => import('react').ReactPortal | null;
|
|
59
|
-
export {};
|