File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
packages/pf4-component-mapper/src/files Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ export interface DualListSelectOption extends AnyObject {
7
7
label : ReactNode ;
8
8
}
9
9
10
+ export interface RenderStatusInput {
11
+ selected : number ;
12
+ options : number ;
13
+ }
14
+
15
+ export interface RenderStatusFunction {
16
+ ( input : RenderStatusInput ) : ReactNode ;
17
+ }
18
+
10
19
interface InternalDualListSelectProps {
11
20
leftTitle ?: ReactNode ;
12
21
rightTitle ?: ReactNode ;
@@ -24,6 +33,7 @@ interface InternalDualListSelectProps {
24
33
filterOptionsText ?: ReactNode ;
25
34
leftValues : DualListSelectOption [ ] ;
26
35
rightValues : DualListSelectOption [ ] ;
36
+ renderStatus ?: RenderStatusFunction ;
27
37
}
28
38
29
39
export type DualListSelectProps = InternalDualListSelectProps & FormGroupProps & UseFieldApiComponentConfig ;
You can’t perform that action at this time.
0 commit comments