src/lib/full-width.directive.ts
| Selector | [rxapFullWidth] |
| Standalone | true |
Properties |
|
HostBindings |
| style.width |
Type : string
|
Default value : '100%'
|
|
Defined in src/lib/full-width.directive.ts:13
|
| Public width |
Type : string
|
Default value : '100%'
|
Decorators :
@HostBinding('style.width')
|
|
Defined in src/lib/full-width.directive.ts:13
|
import {
Directive,
HostBinding,
} from '@angular/core';
@Directive({
selector: '[rxapFullWidth]',
standalone: true,
})
export class FullWidthDirective {
@HostBinding('style.width')
public width = '100%';
}