File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/components/src/components/hds/form/super-select Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ export interface HdsFormSuperSelectMultipleBaseSignature {
27
27
Args : Omit < PowerSelectSignature [ 'Args' ] , 'resultCountMessage' > & {
28
28
showAfterOptions ?: boolean ;
29
29
afterOptionsContent ?: string ;
30
- resultCountMessage ?: string | ( ( resultCount : number ) => string ) ;
30
+ resultCountMessage ?:
31
+ | string
32
+ | PowerSelectSignature [ 'Args' ] [ 'resultCountMessage' ] ;
31
33
dropdownMaxWidth ?: string ;
32
34
matchTriggerWidth ?: boolean ;
33
35
isInvalid ?: boolean ;
Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ export interface HdsFormSuperSelectSingleBaseSignature {
27
27
Args : Omit < PowerSelectSignature [ 'Args' ] , 'resultCountMessage' > & {
28
28
showAfterOptions ?: boolean ;
29
29
afterOptionsContent ?: string ;
30
- resultCountMessage ?: string | ( ( resultCount : number ) => string ) ;
30
+ resultCountMessage ?:
31
+ | string
32
+ | PowerSelectSignature [ 'Args' ] [ 'resultCountMessage' ] ;
31
33
dropdownMaxWidth ?: string ;
32
34
matchTriggerWidth ?: boolean ;
33
35
isInvalid ?: boolean ;
You can’t perform that action at this time.
0 commit comments