ados-rcm 1.1.457 → 1.1.459
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/dist/AModule/AComponents/ABase/ABase.d.ts +21 -21
- package/dist/AModule/AComponents/AButton/AButton.d.ts +6 -6
- package/dist/AModule/AComponents/AButton/AIconButton.d.ts +6 -6
- package/dist/AModule/AComponents/ACheckBox/ACheckBox.d.ts +6 -6
- package/dist/AModule/AComponents/AChip/AChip.d.ts +24 -24
- package/dist/AModule/AComponents/AClock/AClock.d.ts +21 -21
- package/dist/AModule/AComponents/ADatePicker/ADatePicker.d.ts +36 -36
- package/dist/AModule/AComponents/ADatePicker/ADateRangePicker.d.ts +15 -15
- package/dist/AModule/AComponents/ADialog/ADialog.d.ts +93 -93
- package/dist/AModule/AComponents/AEditor/AEditor.d.ts +22 -14
- package/dist/AModule/AComponents/AEditor/modules/TableUI.d.ts +2 -2
- package/dist/AModule/AComponents/AFileBox/AFileBox.d.ts +24 -24
- package/dist/AModule/AComponents/AFileUploder/AFileUploader.d.ts +7 -7
- package/dist/AModule/AComponents/AFloatMenu/AFloatMenu.d.ts +35 -35
- package/dist/AModule/AComponents/AFrame/AFrame.d.ts +45 -45
- package/dist/AModule/AComponents/AIcon/AIcon.d.ts +1 -1
- package/dist/AModule/AComponents/AInput/AInput.d.ts +45 -45
- package/dist/AModule/AComponents/AInput/ANumInput.d.ts +3 -3
- package/dist/AModule/AComponents/AListView/AListView.d.ts +26 -26
- package/dist/AModule/AComponents/AProgressBar/AProgressBar.d.ts +27 -27
- package/dist/AModule/AComponents/ARadioSelect/ARadioSelect.d.ts +5 -5
- package/dist/AModule/AComponents/ASelect/AMultiSelect.d.ts +39 -39
- package/dist/AModule/AComponents/ASelect/ASelect.d.ts +39 -39
- package/dist/AModule/AComponents/AStepper/AStepper.d.ts +12 -12
- package/dist/AModule/AComponents/ATab/ATab.d.ts +36 -36
- package/dist/AModule/AComponents/ATable/ATable.d.ts +281 -281
- package/dist/AModule/AComponents/ATable/ATableBody.d.ts +19 -19
- package/dist/AModule/AComponents/ATable/ATableFilter.d.ts +5 -5
- package/dist/AModule/AComponents/ATable/ATableFooter.d.ts +4 -4
- package/dist/AModule/AComponents/ATable/ATableHeader.d.ts +12 -12
- package/dist/AModule/AComponents/AText/AText.d.ts +6 -6
- package/dist/AModule/AComponents/ATextArea/ATextArea.d.ts +36 -36
- package/dist/AModule/AComponents/ATheme/ATheme.d.ts +10 -10
- package/dist/AModule/AComponents/ATooltip/ATooltip.d.ts +15 -15
- package/dist/AModule/AComponents/ATree/ATree.d.ts +111 -111
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +25 -25
- package/dist/AModule/AComponents/ATree/ATreeSearch.d.ts +7 -7
- package/dist/AModule/AComponents/ATypes/ATypes.d.ts +8 -8
- package/dist/AModule/AComponents/AWrap/AWrap.d.ts +21 -21
- package/dist/AModule/AHooks/useDB.d.ts +1 -1
- package/dist/AModule/ANetwork/APIContext.d.ts +6 -6
- package/dist/AModule/AUtils/bound.d.ts +3 -3
- package/dist/AModule/AUtils/dbF.d.ts +1 -1
- package/dist/index.cjs.js +119 -119
- package/dist/index.es.js +9478 -9388
- package/package.json +12 -10
@@ -53,37 +53,23 @@ interface IAOverflowFrameProps extends IABaseProps {
|
|
53
53
|
*/
|
54
54
|
export declare const AOverflowFrame: (props: IAOverflowFrameProps) => import("react/jsx-runtime").JSX.Element;
|
55
55
|
interface IASplitterProps<T extends string | number> {
|
56
|
-
value: T;
|
57
56
|
map: Partial<Record<T | 'fallback', React.ReactNode>>;
|
57
|
+
value: T;
|
58
58
|
}
|
59
59
|
export declare const ASwitchFrame: <T extends string | number>(props: IASplitterProps<T>) => import("react/jsx-runtime").JSX.Element | Record<"fallback" | T, React.ReactNode>["fallback"] | undefined;
|
60
60
|
export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
61
61
|
/**
|
62
|
-
*
|
63
|
-
*
|
64
|
-
* Description : the primary key of the frame. lengths will be saved localy with the pk
|
65
|
-
* frames can be confused if you use same pks in different frames.
|
66
|
-
* if you don't use pk, the lengths willd not be saved.
|
67
|
-
*/
|
68
|
-
pk?: string | number;
|
69
|
-
/**
|
70
|
-
* direction? : 'Row' | 'Col'
|
71
|
-
*
|
72
|
-
* Description : decides whether to display as row or column
|
73
|
-
*/
|
74
|
-
direction?: 'Row' | 'Col';
|
75
|
-
/**
|
76
|
-
* lefts : number[]
|
62
|
+
* childClassName? : string
|
77
63
|
*
|
78
|
-
* Description : the
|
64
|
+
* Description : the className of the child frame
|
79
65
|
*/
|
80
|
-
|
66
|
+
childClassName?: string;
|
81
67
|
/**
|
82
|
-
*
|
68
|
+
* childStyle? : React.CSSProperties
|
83
69
|
*
|
84
|
-
* Description :
|
70
|
+
* Description : the style of the child frame
|
85
71
|
*/
|
86
|
-
|
72
|
+
childStyle?: React.CSSProperties;
|
87
73
|
/**
|
88
74
|
* children : React.ReactNode | React.ReactNode[]
|
89
75
|
*
|
@@ -91,29 +77,29 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
91
77
|
*/
|
92
78
|
children: React.ReactNode | React.ReactNode[];
|
93
79
|
/**
|
94
|
-
*
|
80
|
+
* direction? : 'Row' | 'Col'
|
95
81
|
*
|
96
|
-
* Description :
|
82
|
+
* Description : decides whether to display as row or column
|
97
83
|
*/
|
98
|
-
|
84
|
+
direction?: 'Row' | 'Col';
|
99
85
|
/**
|
100
|
-
*
|
86
|
+
* dividerClassName? : string
|
101
87
|
*
|
102
|
-
* Description : the className of the
|
88
|
+
* Description : the className of the divider
|
103
89
|
*/
|
104
|
-
|
90
|
+
dividerClassName?: string;
|
105
91
|
/**
|
106
|
-
*
|
92
|
+
* dividerInnerClassName? : string
|
107
93
|
*
|
108
|
-
* Description : the
|
94
|
+
* Description : the className of the divider inner
|
109
95
|
*/
|
110
|
-
|
96
|
+
dividerInnerClassName?: string;
|
111
97
|
/**
|
112
|
-
*
|
98
|
+
* deviderInnerStyle? : React.CSSProperties
|
113
99
|
*
|
114
|
-
* Description : the
|
100
|
+
* Description : the style of the divider inner
|
115
101
|
*/
|
116
|
-
|
102
|
+
dividerInnerStyle?: React.CSSProperties;
|
117
103
|
/**
|
118
104
|
* dividerPadding? : number
|
119
105
|
*
|
@@ -121,17 +107,23 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
121
107
|
*/
|
122
108
|
dividerPadding?: number;
|
123
109
|
/**
|
124
|
-
*
|
110
|
+
* dividerStyle? : React.CSSProperties
|
125
111
|
*
|
126
|
-
* Description : the style of the divider
|
112
|
+
* Description : the style of the divider
|
127
113
|
*/
|
128
|
-
|
114
|
+
dividerStyle?: React.CSSProperties;
|
129
115
|
/**
|
130
|
-
*
|
116
|
+
* lefts : number[]
|
131
117
|
*
|
132
|
-
* Description : the
|
118
|
+
* Description : the lefts of the child dividers. it will work as tops when direction is 'Col'.
|
133
119
|
*/
|
134
|
-
|
120
|
+
lefts: number[];
|
121
|
+
/**
|
122
|
+
* minLength? : number = 40
|
123
|
+
*
|
124
|
+
* Description : decides the minimum length of each child frame. The length is the width when direction is 'Row' and the height when direction is 'Col'.
|
125
|
+
*/
|
126
|
+
minLength?: number | number[];
|
135
127
|
/**
|
136
128
|
* noDividerDraggable? : boolean
|
137
129
|
*
|
@@ -139,11 +131,19 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
139
131
|
*/
|
140
132
|
noDividerDraggable?: boolean;
|
141
133
|
/**
|
142
|
-
*
|
134
|
+
* pk? : string | number
|
143
135
|
*
|
144
|
-
* Description :
|
136
|
+
* Description : the primary key of the frame. lengths will be saved localy with the pk
|
137
|
+
* frames can be confused if you use same pks in different frames.
|
138
|
+
* if you don't use pk, the lengths willd not be saved.
|
145
139
|
*/
|
146
|
-
|
140
|
+
pk?: string | number;
|
141
|
+
/**
|
142
|
+
* remoteButtonClassName? : string
|
143
|
+
*
|
144
|
+
* Description : the className of the remote button
|
145
|
+
*/
|
146
|
+
remoteButtonClassName?: string;
|
147
147
|
/**
|
148
148
|
* resources: typeof Resources.ADivideFrame;
|
149
149
|
*
|
@@ -151,11 +151,11 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
151
151
|
*/
|
152
152
|
resources?: Partial<typeof Resources.ADivideFrame>;
|
153
153
|
/**
|
154
|
-
*
|
154
|
+
* showRemote? : boolean
|
155
155
|
*
|
156
|
-
* Description :
|
156
|
+
* Description : decides whether to show remote button for expanding/collapsing divider functionality
|
157
157
|
*/
|
158
|
-
|
158
|
+
showRemote?: boolean;
|
159
159
|
}
|
160
160
|
export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
|
161
161
|
export {};
|
@@ -1,8 +1,8 @@
|
|
1
1
|
export interface IASVGProps extends React.SVGProps<SVGSVGElement> {
|
2
|
-
svgRef?: React.Ref<SVGSVGElement>;
|
3
2
|
primaryColor?: string;
|
4
3
|
secondaryColor?: string;
|
5
4
|
size?: TIconSize;
|
5
|
+
svgRef?: React.Ref<SVGSVGElement>;
|
6
6
|
}
|
7
7
|
declare const iconSizes: {
|
8
8
|
readonly '2xs': 12;
|
@@ -6,95 +6,95 @@ export declare const AInputTypes: readonly ["Primary", "Secondary", "ReadOnly",
|
|
6
6
|
export type TAInputTypes = 'Primary' | 'Secondary' | 'ReadOnly' | 'Error';
|
7
7
|
export interface IAInputProps extends IABaseProps, IAWrapProps {
|
8
8
|
/**
|
9
|
-
*
|
9
|
+
* LeftAddon? : React.ReactNode
|
10
10
|
*
|
11
|
-
* Description :
|
11
|
+
* Description : LeftAddon of AInput
|
12
12
|
*/
|
13
|
-
|
13
|
+
LeftAddon?: React.ReactNode;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* RightAddon? : React.ReactNode
|
16
16
|
*
|
17
|
-
* Description :
|
17
|
+
* Description : RightAddon of AInput
|
18
18
|
*/
|
19
|
-
|
19
|
+
RightAddon?: React.ReactNode;
|
20
20
|
/**
|
21
|
-
*
|
21
|
+
* autoComplete? : string = 'off'
|
22
22
|
*
|
23
|
-
* Description :
|
23
|
+
* Description : autoComplete of AInput
|
24
24
|
*/
|
25
|
-
|
25
|
+
autoComplete?: string;
|
26
26
|
/**
|
27
|
-
*
|
27
|
+
* autoFocus? : boolean
|
28
28
|
*
|
29
|
-
* Description :
|
29
|
+
* Description : decides whether the input is focused or not
|
30
30
|
*/
|
31
|
-
|
31
|
+
autoFocus?: boolean;
|
32
32
|
/**
|
33
|
-
*
|
33
|
+
* inputProps? : React.InputHTMLAttributes<HTMLInputElement>
|
34
34
|
*
|
35
|
-
* Description :
|
35
|
+
* Description : inputProps of AInput
|
36
36
|
*/
|
37
|
-
|
37
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
38
38
|
/**
|
39
|
-
*
|
39
|
+
* inputRef? : React.RefObject<HTMLInputElement>
|
40
40
|
*
|
41
|
-
* Description :
|
41
|
+
* Description : inputRef of AInput
|
42
42
|
*/
|
43
|
-
|
43
|
+
inputRef?: React.RefObject<HTMLInputElement>;
|
44
44
|
/**
|
45
|
-
*
|
45
|
+
* isPassword? : boolean
|
46
46
|
*
|
47
|
-
* Description :
|
47
|
+
* Description : decides whether the input is password or not. if true, values will be masked.
|
48
48
|
*/
|
49
|
-
|
49
|
+
isPassword?: boolean;
|
50
50
|
/**
|
51
|
-
*
|
51
|
+
* isReadonly? : boolean
|
52
52
|
*
|
53
|
-
* Description :
|
53
|
+
* Description : decides whether the input is readonly or not
|
54
54
|
*/
|
55
|
-
|
55
|
+
isReadonly?: boolean;
|
56
56
|
/**
|
57
|
-
*
|
57
|
+
* maxLength? : number
|
58
58
|
*
|
59
|
-
* Description :
|
59
|
+
* Description : maxLength of AInput
|
60
60
|
*/
|
61
|
-
|
61
|
+
maxLength?: number;
|
62
62
|
/**
|
63
|
-
*
|
63
|
+
* minLength? : number
|
64
64
|
*
|
65
|
-
* Description :
|
65
|
+
* Description : minLength of AInput
|
66
66
|
*/
|
67
|
-
|
67
|
+
minLength?: number;
|
68
68
|
/**
|
69
|
-
*
|
69
|
+
* onEnterPress? : (value: string) => void
|
70
70
|
*
|
71
|
-
* Description :
|
71
|
+
* Description : onEnterPress of AInput
|
72
72
|
*/
|
73
|
-
|
73
|
+
onEnterPress?: (value: string) => void;
|
74
74
|
/**
|
75
|
-
*
|
75
|
+
* placeholder? : string
|
76
76
|
*
|
77
|
-
* Description :
|
77
|
+
* Description : placeholder of AInput
|
78
78
|
*/
|
79
|
-
|
79
|
+
placeholder?: string;
|
80
80
|
/**
|
81
|
-
*
|
81
|
+
* tabIndex? : number
|
82
82
|
*
|
83
|
-
* Description :
|
83
|
+
* Description : tabIndex of AInput
|
84
84
|
*/
|
85
|
-
|
85
|
+
tabIndex?: number;
|
86
86
|
/**
|
87
|
-
*
|
87
|
+
* type? : TInputType = 'Primary'
|
88
88
|
*
|
89
|
-
* Description :
|
89
|
+
* Description : type of AInput
|
90
90
|
*/
|
91
|
-
|
91
|
+
type?: TAInputTypes;
|
92
92
|
/**
|
93
|
-
*
|
93
|
+
* useValue? : TUseValues<string | number | readonly string[], string>
|
94
94
|
*
|
95
|
-
* Description :
|
95
|
+
* Description : useValue of AInput
|
96
96
|
*/
|
97
|
-
|
97
|
+
useValue?: TUseValues<string | number | readonly string[], string>;
|
98
98
|
}
|
99
99
|
/**
|
100
100
|
* AComponent : AInput
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { IAInputProps } from './AInput';
|
2
2
|
interface IANumInputNumberProps extends IAInputProps {
|
3
|
-
unit?: string;
|
4
|
-
min?: number;
|
5
|
-
max?: number;
|
6
3
|
canAsterisk?: boolean;
|
4
|
+
max?: number;
|
5
|
+
min?: number;
|
6
|
+
unit?: string;
|
7
7
|
}
|
8
8
|
export type IANumInputProps = IANumInputNumberProps;
|
9
9
|
/**
|
@@ -4,6 +4,12 @@ import { IObject } from '../../AUtils/objF';
|
|
4
4
|
import { IABaseProps } from '../ABase/ABase';
|
5
5
|
import { TIdx } from '../ATypes/ATypes';
|
6
6
|
export interface IAListViewLabelProps<T extends IObject> {
|
7
|
+
/**
|
8
|
+
* def : IAListViewDef<T>
|
9
|
+
*
|
10
|
+
* Description : def of AListView
|
11
|
+
*/
|
12
|
+
def: IAListViewDef<T>;
|
7
13
|
/**
|
8
14
|
* defKey : TIdx
|
9
15
|
*
|
@@ -16,14 +22,14 @@ export interface IAListViewLabelProps<T extends IObject> {
|
|
16
22
|
* Description : item of AListView
|
17
23
|
*/
|
18
24
|
item?: T;
|
25
|
+
}
|
26
|
+
export interface IAListViewContentProps<T extends IObject> {
|
19
27
|
/**
|
20
28
|
* def : IAListViewDef<T>
|
21
29
|
*
|
22
30
|
* Description : def of AListView
|
23
31
|
*/
|
24
32
|
def: IAListViewDef<T>;
|
25
|
-
}
|
26
|
-
export interface IAListViewContentProps<T extends IObject> {
|
27
33
|
/**
|
28
34
|
* defKey : TIdx
|
29
35
|
*
|
@@ -36,20 +42,14 @@ export interface IAListViewContentProps<T extends IObject> {
|
|
36
42
|
* Description : item of AListView
|
37
43
|
*/
|
38
44
|
item: T;
|
39
|
-
/**
|
40
|
-
* def : IAListViewDef<T>
|
41
|
-
*
|
42
|
-
* Description : def of AListView
|
43
|
-
*/
|
44
|
-
def: IAListViewDef<T>;
|
45
45
|
}
|
46
46
|
export interface IAListViewDef<T extends IObject> {
|
47
47
|
/**
|
48
|
-
*
|
48
|
+
* bold? : 'label' | 'content' | 'both'
|
49
49
|
*
|
50
|
-
* Description :
|
50
|
+
* Description : bold of AListView, Default is label
|
51
51
|
*/
|
52
|
-
|
52
|
+
bold?: 'label' | 'content' | 'both';
|
53
53
|
/**
|
54
54
|
* content? : TCanCallback<IAListViewContentProps<T>, React.ReactNode>
|
55
55
|
*
|
@@ -57,11 +57,11 @@ export interface IAListViewDef<T extends IObject> {
|
|
57
57
|
*/
|
58
58
|
content?: TCanCallback<IAListViewContentProps<T>, React.ReactNode>;
|
59
59
|
/**
|
60
|
-
*
|
60
|
+
* label? : TCanCallback<IAListViewLabelProps<T>, React.ReactNode>
|
61
61
|
*
|
62
|
-
* Description :
|
62
|
+
* Description : label of AListView
|
63
63
|
*/
|
64
|
-
|
64
|
+
label?: TCanCallback<IAListViewLabelProps<T>, React.ReactNode>;
|
65
65
|
}
|
66
66
|
export type TAListViewDefs<T extends IObject> = {
|
67
67
|
[key in Exclude<keyof T, symbol>]?: IAListViewDef<T>;
|
@@ -69,12 +69,6 @@ export type TAListViewDefs<T extends IObject> = {
|
|
69
69
|
[key in TIdx]?: IAListViewDef<T>;
|
70
70
|
};
|
71
71
|
export interface IAListViewProps<T extends IObject> extends IABaseProps {
|
72
|
-
/**
|
73
|
-
* defs : TAListViewDefs<T>
|
74
|
-
*
|
75
|
-
* Description : defs of AListView
|
76
|
-
*/
|
77
|
-
defs: TAListViewDefs<T>;
|
78
72
|
/**
|
79
73
|
* defaultDef? : IAListViewDef<T>
|
80
74
|
*
|
@@ -82,17 +76,17 @@ export interface IAListViewProps<T extends IObject> extends IABaseProps {
|
|
82
76
|
*/
|
83
77
|
defaultDef?: IAListViewDef<T>;
|
84
78
|
/**
|
85
|
-
*
|
79
|
+
* defs : TAListViewDefs<T>
|
86
80
|
*
|
87
|
-
* Description :
|
81
|
+
* Description : defs of AListView
|
88
82
|
*/
|
89
|
-
|
83
|
+
defs: TAListViewDefs<T>;
|
90
84
|
/**
|
91
|
-
*
|
85
|
+
* item : T
|
92
86
|
*
|
93
|
-
* Description :
|
87
|
+
* Description : item of AListView
|
94
88
|
*/
|
95
|
-
|
89
|
+
item?: T;
|
96
90
|
/**
|
97
91
|
* labelWidth? : number | string
|
98
92
|
*
|
@@ -105,6 +99,12 @@ export interface IAListViewProps<T extends IObject> extends IABaseProps {
|
|
105
99
|
* Description : noBorder of AListView
|
106
100
|
*/
|
107
101
|
noBorder?: boolean;
|
102
|
+
/**
|
103
|
+
* rowHeight? : number | string
|
104
|
+
*
|
105
|
+
* Description : rowHeight of AListView
|
106
|
+
*/
|
107
|
+
rowHeight?: number | string;
|
108
108
|
}
|
109
109
|
/**
|
110
110
|
* AComponent : AListView
|
@@ -1,30 +1,12 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
2
|
import { Resources } from '../AResource/AResource';
|
3
3
|
export interface IAProgressBarProps {
|
4
|
-
/**
|
5
|
-
* progress : number
|
6
|
-
*
|
7
|
-
* Description : 진행도 값 (0-100)
|
8
|
-
*/
|
9
|
-
progress: number;
|
10
4
|
/**
|
11
5
|
* backgroundColor? : string
|
12
6
|
*
|
13
7
|
* Description : 프로그레스 바 배경 색상
|
14
8
|
*/
|
15
9
|
backgroundColor?: string;
|
16
|
-
/**
|
17
|
-
* color? : string
|
18
|
-
*
|
19
|
-
* Description : 프로그레스 바 색상
|
20
|
-
*/
|
21
|
-
color?: string;
|
22
|
-
/**
|
23
|
-
* height? : number
|
24
|
-
*
|
25
|
-
* Description : 프로그레스 바 높이 (픽셀)
|
26
|
-
*/
|
27
|
-
height?: number;
|
28
10
|
/**
|
29
11
|
* borderRadius? : number
|
30
12
|
*
|
@@ -32,35 +14,53 @@ export interface IAProgressBarProps {
|
|
32
14
|
*/
|
33
15
|
borderRadius?: number;
|
34
16
|
/**
|
35
|
-
*
|
17
|
+
* className? : string
|
36
18
|
*
|
37
|
-
* Description :
|
19
|
+
* Description : 사용자 정의 클래스
|
38
20
|
*/
|
39
|
-
|
21
|
+
className?: string;
|
40
22
|
/**
|
41
|
-
*
|
23
|
+
* color? : string
|
42
24
|
*
|
43
|
-
* Description :
|
25
|
+
* Description : 프로그레스 바 색상
|
44
26
|
*/
|
45
|
-
|
27
|
+
color?: string;
|
46
28
|
/**
|
47
|
-
*
|
29
|
+
* height? : number
|
48
30
|
*
|
49
|
-
* Description :
|
31
|
+
* Description : 프로그레스 바 높이 (픽셀)
|
50
32
|
*/
|
51
|
-
|
33
|
+
height?: number;
|
52
34
|
/**
|
53
35
|
* label? : string
|
54
36
|
*
|
55
37
|
* Description : 진행 상황 레이블
|
56
38
|
*/
|
57
39
|
label?: string;
|
40
|
+
/**
|
41
|
+
* progress : number
|
42
|
+
*
|
43
|
+
* Description : 진행도 값 (0-100)
|
44
|
+
*/
|
45
|
+
progress: number;
|
58
46
|
/**
|
59
47
|
* resources? : Partial<typeof Resources.AProgressBar>
|
60
48
|
*
|
61
49
|
* Description : 진행 상황 레이블 리소스
|
62
50
|
*/
|
63
51
|
resources?: Partial<typeof Resources.AProgressBar>;
|
52
|
+
/**
|
53
|
+
* showPercentage? : boolean = true
|
54
|
+
*
|
55
|
+
* Description : 진행률 퍼센트(%) 표시 여부
|
56
|
+
*/
|
57
|
+
showPercentage?: boolean;
|
58
|
+
/**
|
59
|
+
* style? : React.CSSProperties
|
60
|
+
*
|
61
|
+
* Description : 사용자 정의 스타일
|
62
|
+
*/
|
63
|
+
style?: React.CSSProperties;
|
64
64
|
}
|
65
65
|
/**
|
66
66
|
* AComponent : AProgressBar
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { TUseValues } from '../../AHooks/useValues';
|
2
2
|
export interface IRadioSelectProps<T> {
|
3
|
-
options: T[] | readonly T[];
|
4
|
-
useSelect?: TUseValues<T>;
|
5
|
-
selectDisabled?: (value: T) => boolean | string | undefined;
|
6
|
-
radius?: number;
|
7
|
-
innerRadius?: number;
|
8
3
|
OptionRenderer?: (props: {
|
9
4
|
option: T;
|
10
5
|
}) => React.ReactNode;
|
6
|
+
innerRadius?: number;
|
7
|
+
options: T[] | readonly T[];
|
8
|
+
radius?: number;
|
9
|
+
selectDisabled?: (value: T) => boolean | string | undefined;
|
10
|
+
useSelect?: TUseValues<T>;
|
11
11
|
}
|
12
12
|
export declare const ARadioSelect: <T>(props: IRadioSelectProps<T>) => import("react/jsx-runtime").JSX.Element;
|
13
13
|
interface IRadioSelectOptionRendererProps<T> {
|