@@ -6,7 +6,15 @@ import { ButtonDirective } from './button.directive';
6
6
selector : '[cButtonClose]' ,
7
7
standalone : true ,
8
8
hostDirectives : [ { directive : ThemeDirective , inputs : [ 'dark' ] } ] ,
9
- host : { class : 'btn btn-close' , '[class]' : 'hostClasses()' , '[attr.type]' : 'type()' }
9
+ host : {
10
+ class : 'btn btn-close' ,
11
+ '[class]' : 'hostClasses()' ,
12
+ '[attr.aria-disabled]' : 'ariaDisabled()' ,
13
+ '[attr.aria-pressed]' : 'isActive()' ,
14
+ '[attr.disabled]' : 'attrDisabled()' ,
15
+ '[attr.tabindex]' : 'tabIndex()' ,
16
+ '[attr.type]' : 'type()'
17
+ }
10
18
} )
11
19
export class ButtonCloseDirective extends ButtonDirective {
12
20
/**
@@ -22,8 +30,8 @@ export class ButtonCloseDirective extends ButtonDirective {
22
30
'btn-close' : true ,
23
31
'btn-close-white' : this . white ( ) ,
24
32
[ `btn-${ this . size ( ) } ` ] : ! ! this . size ( ) ,
25
- disabled : this . disabled ( ) ,
26
- active : this . active ( )
33
+ active : this . active ( ) ,
34
+ disabled : this . _disabled ( )
27
35
} as Record < string , boolean > ;
28
36
} ) ;
29
37
}
0 commit comments